Skip to content

Commit

Permalink
toolbar: add padding to first toolbar button
Browse files Browse the repository at this point in the history
The original padding for tab icons added to the
left side of the toolbar is a bit cramped. This
commit adds some extra space so the layout looks more
natural.
  • Loading branch information
BGMP committed Mar 24, 2023
1 parent 7361fac commit 00aeaa3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions compact/userChrome.css
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,12 @@
outline-offset: 0 !important;
}

#TabsToolbar .toolbarbutton-1 {
margin: 0 0 var(--tabs-navbar-shadow-size);
padding-right: 5px !important;
padding-left: 5px !important;
}

/** Tab icons **/
.tab-icon-overlay[soundplaying]:not([crashed]), .tab-icon-overlay[muted]:not([crashed]), .tab-icon-overlay[activemedia-blocked]:not([crashed]) {
margin-left: 19px !important;
Expand Down
6 changes: 6 additions & 0 deletions normal/userChrome.css
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,12 @@
outline-offset: 0 !important;
}

#TabsToolbar .toolbarbutton-1 {
margin: 0 0 var(--tabs-navbar-shadow-size);
padding-right: 5px !important;
padding-left: 5px !important;
}

/** Tab icons **/
.tab-icon-overlay[soundplaying]:not([crashed]), .tab-icon-overlay[muted]:not([crashed]), .tab-icon-overlay[activemedia-blocked]:not([crashed]) {
margin-left: 19px !important;
Expand Down

0 comments on commit 00aeaa3

Please sign in to comment.