Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Make download progress take up unhovered height
Browse files Browse the repository at this point in the history
Fix #8179

Auditors: @diracdeltas
  • Loading branch information
bbondy committed Apr 11, 2017
1 parent 6f84ad0 commit 285ba5e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions less/downloadBar.less
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
--download-bar-buttons: 22px;
}

@downloadItemHeight: 46px;

.downloadsBar {
user-select: none;
box-sizing: border-box;
Expand All @@ -36,7 +38,7 @@
display: flex;
font-size: 11px;
flex-direction: column;
height: 46px;
height: @downloadItemHeight;
padding: 0 14px;
position: relative;
margin: auto var(--download-item-margin) auto 0;
Expand Down Expand Up @@ -90,7 +92,7 @@
left: 0;
opacity: 0.5;
position: absolute;
height: 35px;
height: @downloadItemHeight;
width: 100%;
}

Expand Down

1 comment on commit 285ba5e

@diracdeltas
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

Please sign in to comment.