- Firefox-Version
- 72.0.2
- Betriebssystem
- Windows 10
Hallo!
Wie bekomme ich die blau Leiste am oberen Rand weg wenn der Tab grade ausgewählt ist?
hier meine CSS:
CSS
@-moz-document url(chrome://browser/content/browser.xhtml) {
#TabsToolbar {
position: absolute !important;
display:block !important;
bottom: -4px !important;
width: 100vw !important;
background: #F9F9FA !important;
}
#tabbrowser-tabs {
width: 100vw !important;
}
#main-window:not([chromehidden*="toolbar"]) #navigator-toolbox {
padding-bottom: var(--tab-min-height) !important;
}
:root {
--tab-min-height: 35px !important;
}
:root #tabbrowser-tabs {
--tab-min-height: 35px !important;
}
/*.tabbrowser-tab:not([selected="true"]){*/
.tabbrowser-tab:not([selected]) {
background: rgb(249,249,250) !important;
border: 1px solid black !important;
color: black !important;
border-radius: 8px !important;
}
.tab-background[selected] {
background: rgb(249,249,250) !important;
border: 1px solid black !important;
border-radius: 8px !important;
font-weight: bold !important;
}
#tabs-newtab-button {
margin-left: 5px !important;
padding: -10px !important;
fill: rgb(0,0,0) !important;
background-color: rgb(187,187,187) !important;
border-radius: 8px !important;
}
.tab-close-button {
display: none !important;
}
.tabbrowser-tab:hover .tab-close-button {
display: block !important;
}
}
Alles anzeigen