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

Commit

Permalink
Fix tab label text appearing on pinned tab. (#93)
Browse files Browse the repository at this point in the history
Only happens for compact density, which I don't regularly
test against.
  • Loading branch information
wilfredwee authored Mar 28, 2020
1 parent b55cd7a commit d43ef0d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions userChrome-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@
margin-top: 2px !important;
}

/* To prevent tab label appearing on pinned tab in compact mode. */
.tab-content {
padding: 0 12px !important;
}

/* When the window is maximized, the first pinned tab is properly displayed. */
#TabsToolbar {
padding-inline-start: 15px !important;
Expand Down
5 changes: 5 additions & 0 deletions userChrome-default.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@
margin-top: 2px !important;
}

/* To prevent tab label appearing on pinned tab in compact mode. */
.tab-content {
padding: 0 12px !important;
}

/* When the window is maximized, the first pinned tab is properly displayed. */
#TabsToolbar {
padding-inline-start: 15px !important;
Expand Down
5 changes: 5 additions & 0 deletions userChrome-light.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@
margin-top: 2px !important;
}

/* To prevent tab label appearing on pinned tab in compact mode. */
.tab-content {
padding: 0 12px !important;
}

/* When the window is maximized, the first pinned tab is properly displayed. */
#TabsToolbar {
padding-inline-start: 15px !important;
Expand Down

0 comments on commit d43ef0d

Please sign in to comment.