Firefox - Add Colored tabs
I had Firefox version 81 and after installing version 82 in a new install on a new hard drive, I cannot change the color of my tabs anymore. I … (читати далі)
Firefox - Add Colored tabs
I had Firefox version 81 and after installing version 82 in a new install on a new hard drive, I cannot change the color of my tabs anymore. I should see white tabs for the current tab but no longer when I added my userChrome.css file. I see instead a thin blue color strip along the top of the tab and the rest is grey. This shows up without any userChrome.css file.
In Firefox address field type: about:support
It shows my Profile. vwy0y5ix.default-release
I also have under the Profile folder this: jcueuz5y.default
I put the userChrome.css file here in my Chrome folder: C:\Users\David\AppData\Roaming\Mozilla\Firefox\Profiles\vwy0y5ix.default-release
What it contains:
/* USE THIS ONE. It works in version 65
https://github.com/Aris-t2/CustomCSSforFx/releases/tag/2.3.4
@import "./css/tabs/tabs_below_navigation_toolbar_fx65.css"; /**/ /* <-- tabs not on top - Fx65+ - Windows/Linux */
/* Colored tab */
.tab-background:not([selected]) {
background-color: #E3E0DB !important;
}
.tab-background[selected="true"] {
background-color: white!important;
}
/*** Sidebar Color / Font Size Formatting ***/
/* 14px black text */
.sidebar-placesTree treechildren::-moz-tree-cell-text {
font-size: 14px !important;
color: #000 !important;
}
/* Pale blue background on hover or selected */
.sidebar-placesTree treechildren::-moz-tree-row(hover),
.sidebar-placesTree treechildren::-moz-tree-row(selected) {
background-color: #bdf !important;
}
/* Main Toolbar */
- nav-bar {
font-size: 14px !important;