Skip to content

Commit 884498c

Browse files
authored
Firefox - theme Cool Breeze (fix bg-color in urlbar) (#35)
Fix hover and active background color of some boxes in url bar
1 parent b7c76f8 commit 884498c

File tree

1 file changed

+21
-5
lines changed

1 file changed

+21
-5
lines changed

FireFox/theme/system_default_theme/cool_breeze.css

+21-5
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@
4343
}
4444
/* Boxes in url-bar */
4545
:root:not(:-moz-lwtheme, [privatebrowsingmode=temporary])
46-
#identity-box[pageproxystate="valid"].notSecureText > .identity-box-button,
46+
#identity-box[pageproxystate="valid"].notSecureText > .identity-box-button:not([open="true"]),
4747
:root:not(:-moz-lwtheme, [privatebrowsingmode=temporary])
48-
#identity-box[pageproxystate="valid"].chromeUI > .identity-box-button,
48+
#identity-box[pageproxystate="valid"].chromeUI > .identity-box-button:not([open="true"]),
4949
:root:not(:-moz-lwtheme, [privatebrowsingmode=temporary])
50-
#identity-box[pageproxystate="valid"].extensionPage > .identity-box-button,
50+
#identity-box[pageproxystate="valid"].extensionPage > .identity-box-button:not([open="true"]),
5151
:root:not(:-moz-lwtheme, [privatebrowsingmode=temporary])
52-
#urlbar-label-box,
52+
#urlbar-label-box:not([open="true"]),
5353
:root:not(:-moz-lwtheme, [privatebrowsingmode=temporary])
5454
#urlbar-zoom-button {
5555
background-color: transparent !important;
@@ -63,9 +63,25 @@
6363
:root:not(:-moz-lwtheme, [privatebrowsingmode=temporary])
6464
#urlbar-label-box:hover,
6565
:root:not(:-moz-lwtheme, [privatebrowsingmode=temporary])
66-
#urlbar-zoom-button:hover {
66+
#urlbar-zoom-button:hover,
67+
:root:not(:-moz-lwtheme, [privatebrowsingmode=temporary])
68+
#identity-box[pageproxystate="valid"].verifiedDomain > #notification-popup-box:hover {
6769
background-color: var(--urlbar-box-hover-bgcolor) !important;
6870
}
71+
:root:not(:-moz-lwtheme, [privatebrowsingmode=temporary])
72+
#identity-box[pageproxystate="valid"].notSecureText > .identity-box-button[open="true"],
73+
:root:not(:-moz-lwtheme, [privatebrowsingmode=temporary])
74+
#identity-box[pageproxystate="valid"].chromeUI > .identity-box-button[open="true"],
75+
:root:not(:-moz-lwtheme, [privatebrowsingmode=temporary])
76+
#identity-box[pageproxystate="valid"].extensionPage > .identity-box-button[open="true"],
77+
:root:not(:-moz-lwtheme, [privatebrowsingmode=temporary])
78+
#urlbar-label-box:active,
79+
:root:not(:-moz-lwtheme, [privatebrowsingmode=temporary])
80+
#urlbar-zoom-button:active,
81+
:root:not(:-moz-lwtheme, [privatebrowsingmode=temporary])
82+
#identity-box[pageproxystate="valid"].verifiedDomain > #notification-popup-box[open="true"] {
83+
background-color: var(--urlbar-box-active-bgcolor) !important;
84+
}
6985
/* Tab Color when Multiselected */
7086
/*:root:not(:-moz-lwtheme, [privatebrowsingmode=temporary])
7187
.tab-background:is([multiselected="true"]) {

0 commit comments

Comments
 (0)