fx115: Fix tabbox tab color on MacOS
This commit is contained in:
parent
c6e5850e1c
commit
df014bfb0b
3 changed files with 5 additions and 9 deletions
|
@ -41,10 +41,6 @@
|
|||
}
|
||||
}
|
||||
|
||||
tab[visuallyselected="true"]:not(:-moz-window-inactive) {
|
||||
color: unset;
|
||||
}
|
||||
|
||||
#intro {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
|
|
|
@ -46,6 +46,11 @@ tabbox {
|
|||
}
|
||||
|
||||
&[visuallyselected=true] {
|
||||
/* fx115: toolkit/themes/osx/global/tabbox.css sets selected tabs' text color to #FFF, which is incorrect */
|
||||
&:not(:-moz-window-inactive) {
|
||||
color: unset;
|
||||
}
|
||||
|
||||
& + tab {
|
||||
&::before {
|
||||
display: none;
|
||||
|
|
|
@ -65,11 +65,6 @@ $scaffold-toolbarbutton-icons: (
|
|||
}
|
||||
}
|
||||
|
||||
tab {
|
||||
/* toolkit/themes/osx/global/tabbox.css sets selected tabs' text color to #FFF, which is incorrect */
|
||||
color: initial !important;
|
||||
}
|
||||
|
||||
#metadata-grid {
|
||||
flex: 1;
|
||||
display: grid;
|
||||
|
|
Loading…
Reference in a new issue