mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2025-12-15 07:10:24 -08:00
Created Compatibility Issues Solution (markdown)
parent
8568b3e94d
commit
e9de2d59dc
1 changed files with 29 additions and 0 deletions
29
Compatibility-Issues-Solution.md
Normal file
29
Compatibility-Issues-Solution.md
Normal file
|
|
@ -0,0 +1,29 @@
|
||||||
|
## Tabs and toolbars to have different colors theme
|
||||||
|
|
||||||
|
Remove follow lines:
|
||||||
|
|
||||||
|
https://github.com/black7375/Firefox-UI-Fix/blob/4948226abe1c93e716e6b690e6098eda1223c706/userChrome.css#L101-L105
|
||||||
|
|
||||||
|
```css
|
||||||
|
/** Selected Tab - Color like toolbar ***************************************/
|
||||||
|
#tabbrowser-tabs:not([movingtab]) > #tabbrowser-arrowscrollbox > .tabbrowser-tab > .tab-stack > .tab-background[multiselected="true"]:-moz-lwtheme, #tabbrowser-tabs:not([movingtab]) > #tabbrowser-arrowscrollbox > .tabbrowser-tab > .tab-stack > .tab-background[selected="true"]:-moz-lwtheme {
|
||||||
|
background-image: linear-gradient(var(--toolbar-bgcolor, transparent), var(--toolbar-bgcolor, transparent)), linear-gradient(var(--toolbar-bgcolor), var(--toolbar-bgcolor)), var(--lwt-header-image, none) !important;
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## Unselected Tab Separators
|
||||||
|
|
||||||
|
Try to change `background-color` [#4](https://github.com/black7375/Firefox-UI-Fix/issues/4)
|
||||||
|
|
||||||
|
- `--tabs-border-color`
|
||||||
|
- `--lwt-selected-tab-background-color`
|
||||||
|
|
||||||
|
```css
|
||||||
|
/** Unselected Tab - Divide line ********************************************/
|
||||||
|
.tab-content::before,
|
||||||
|
.tab-content::after {
|
||||||
|
/*codes*/
|
||||||
|
background-color: var(--toolbarseparator-color) !important;
|
||||||
|
/*codes*/
|
||||||
|
}
|
||||||
|
```
|
||||||
Loading…
Add table
Add a link
Reference in a new issue