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

Commit

Permalink
Proper fix for windows 7 on light theme
Browse files Browse the repository at this point in the history
  • Loading branch information
wilfredwee committed Mar 20, 2018
1 parent f215de3 commit 7bb8efc
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
8 changes: 5 additions & 3 deletions userChrome-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,19 @@

/* Windows 7 specific */
@media (-moz-os-version: windows-win7) {
.tabbrowser-tab {
background-color: transparent !important;
border: none !important;
}

@media (-moz-windows-default-theme) {
/* Show border on tabs with background colors and
* show the tabs toolbar background color inside tabs. */
.tabbrowser-tab:not(:-moz-lwtheme) {
background-color: transparent !important;
border: none !important;
}
}
}


.tabbrowser-tab > .tab-stack > .tab-background {
background-image: none !important;
-moz-box-orient: horizontal !important;
Expand Down
7 changes: 5 additions & 2 deletions userChrome-default.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,12 @@

/* Windows 7 specific */
@media (-moz-os-version: windows-win7) {
.tabbrowser-tab {
background-color: transparent !important;
border: none !important;
}

@media (-moz-windows-default-theme) {
/* Show border on tabs with background colors and
* show the tabs toolbar background color inside tabs. */
.tabbrowser-tab:not(:-moz-lwtheme) {
background-color: transparent !important;
border: none !important;
Expand Down
7 changes: 5 additions & 2 deletions userChrome-light.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,12 @@

/* Windows 7 specific */
@media (-moz-os-version: windows-win7) {
.tabbrowser-tab {
background-color: transparent !important;
border: none !important;
}

@media (-moz-windows-default-theme) {
/* Show border on tabs with background colors and
* show the tabs toolbar background color inside tabs. */
.tabbrowser-tab:not(:-moz-lwtheme) {
background-color: transparent !important;
border: none !important;
Expand Down

0 comments on commit 7bb8efc

Please sign in to comment.