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

Commit

Permalink
Firefox 71 fix
Browse files Browse the repository at this point in the history
Ensure first tab is not cut off.
  • Loading branch information
wilfredwee committed Oct 17, 2019
1 parent 74a9bef commit 84dfe19
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
8 changes: 6 additions & 2 deletions userChrome-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,12 @@
padding-inline-start: 15px !important;
}

#tabbrowser-tabs{
margin-left:-15px;
.tabbrowser-tab[first-visible-tab="true"] {
padding-left: 12px !important;
}

#tabbrowser-tabs {
margin-left: -15px !important;
}

.titlebar-placeholder {
Expand Down
8 changes: 6 additions & 2 deletions userChrome-default.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,12 @@
padding-inline-start: 15px !important;
}

#tabbrowser-tabs{
margin-left:-15px;
.tabbrowser-tab[first-visible-tab="true"] {
padding-left: 12px !important;
}

#tabbrowser-tabs {
margin-left: -15px !important;
}

.titlebar-placeholder {
Expand Down
8 changes: 6 additions & 2 deletions userChrome-light.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,12 @@
padding-inline-start: 15px !important;
}

#tabbrowser-tabs{
margin-left:-15px;
.tabbrowser-tab[first-visible-tab="true"] {
padding-left: 12px !important;
}

#tabbrowser-tabs {
margin-left: -15px !important;
}

.titlebar-placeholder {
Expand Down

0 comments on commit 84dfe19

Please sign in to comment.