mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2026-01-09 10:42:13 -08:00
Fix: Selected Tab - Linux light system default theme's border #259
This commit is contained in:
parent
72e38f02a2
commit
3bf3ea7cbd
1 changed files with 19 additions and 1 deletions
|
|
@ -186,7 +186,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
/*= Linux- Global Menubar Active Color =====================================*/
|
||||
/*= Linux - Global Menubar Active Color ====================================*/
|
||||
@media (-moz-gtk-csd-available) {
|
||||
#main-menubar > menu[open="true"],
|
||||
#main-menubar > menu[_moz-menuactive="true"] {
|
||||
|
|
@ -195,6 +195,24 @@
|
|||
}
|
||||
}
|
||||
|
||||
/*= Linux - Light System Default Theme's Selected Tab ======================*/
|
||||
@media (-moz-gtk-csd-available) and (-moz-toolbar-prefers-color-scheme: light),
|
||||
(-moz-gtk-csd-available) and (prefers-color-scheme: light) {
|
||||
/* Because of
|
||||
#TabsToolbar:not([brighttext]) #tabbrowser-tabs:not([noshadowfortests]) .tabbrowser-tab:is([visuallyselected=true], [multiselected]) > .tab-stack > .tab-background {
|
||||
border: 1px solid var(--tab-line-color, rgba(128,128,142,0.9));
|
||||
box-shadow: 0 0 4px rgba(128,128,142,0.5);
|
||||
}
|
||||
*/
|
||||
#tabbrowser-tabs:not([noshadowfortests]) .tabbrowser-tab:is([visuallyselected=true], [multiselected]) > .tab-stack > .tab-background:not(:-moz-lwtheme) {
|
||||
box-shadow: 0 0 4px rgba(128,128,142,0.5) !important;
|
||||
}
|
||||
#TabsToolbar:not([brighttext]) #tabbrowser-tabs:not([noshadowfortests]) .tabbrowser-tab:is([visuallyselected=true], [multiselected]) > .tab-stack > .tab-background:not(:-moz-lwtheme) {
|
||||
box-shadow: 0 0 1px var(--tab-line-color, rgba(128,128,142,0.9)),
|
||||
0 0 4px rgba(128,128,142,0.5) !important;
|
||||
}
|
||||
}
|
||||
|
||||
/** System Default Theme ****************************************************/
|
||||
/*= Common - URL Bar focus color ===========================================*/
|
||||
@media (-moz-windows-accent-color-in-titlebar), (-moz-gtk-csd-available) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue