From 7bb8efc2488ccdeef34d464219f4945cc4e7ed01 Mon Sep 17 00:00:00 2001 From: Wilfred Wee Date: Mon, 19 Mar 2018 21:04:35 -0700 Subject: [PATCH] Proper fix for windows 7 on light theme --- userChrome-dark.css | 8 +++++--- userChrome-default.css | 7 +++++-- userChrome-light.css | 7 +++++-- 3 files changed, 15 insertions(+), 7 deletions(-) diff --git a/userChrome-dark.css b/userChrome-dark.css index 526c8ec..031930d 100644 --- a/userChrome-dark.css +++ b/userChrome-dark.css @@ -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; @@ -39,7 +42,6 @@ } } - .tabbrowser-tab > .tab-stack > .tab-background { background-image: none !important; -moz-box-orient: horizontal !important; diff --git a/userChrome-default.css b/userChrome-default.css index a337aa1..960b27f 100644 --- a/userChrome-default.css +++ b/userChrome-default.css @@ -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; diff --git a/userChrome-light.css b/userChrome-light.css index 11f149d..3193771 100644 --- a/userChrome-light.css +++ b/userChrome-light.css @@ -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;