Updated Compatibility Issues Solution (markdown)

MS_Y 2021-05-19 07:04:30 +00:00
parent 25df14e9f2
commit b397435b58

@ -20,8 +20,8 @@ Try to change `background-color` [#4](https://github.com/black7375/Firefox-UI-Fi
```css
/** Unselected Tab - Divide line ********************************************/
.tab-content::before,
.tab-content::after {
#tabbrowser-arrowscrollbox:not([overflowing]) tab.tabbrowser-tab[first-visible-unpinned-tab] .tab-background::before,
tab.tabbrowser-tab:not(:hover):not([visuallyselected]):not([multiselected]):not(:first-child) .tab-background::before {
/*codes*/
background-color: var(--toolbarseparator-color) !important;
/*codes*/
@ -34,8 +34,8 @@ Try to add `box-shadow`
```css
/** Unselected Tab - Divide line ********************************************/
.tab-content::before,
.tab-content::after {
#tabbrowser-arrowscrollbox:not([overflowing]) tab.tabbrowser-tab[first-visible-unpinned-tab] .tab-background::before,
tab.tabbrowser-tab:not(:hover):not([visuallyselected]):not([multiselected]):not(:first-child) .tab-background::before {
/*codes*/
box-shadow: 0 0 1px 0 color-mix(in srgb, currentColor 60%, transparent);
}