ich würde gerne die Fenster-Teiler verbreitern
Teste bitte das ↓ in der userChrome.css, mit dem Werten, width und background-color musst Du wohl noch ein wenig spielen.
CSS
hr#folderPaneSplitter {
&[resize-direction="horizontal"] {
&:not(.splitter-before) {
width: 5px !important;
border: 0 !important;
background-color: #79797B;
margin: 0 !important;
}
&:hover {
border: 0 !important;
background-color: #800;
}
}
}
hr#messagePaneSplitter {
&:not([resize-direction="horizontal"]) {
&.splitter-before {
height: 5px !important;
background-color: #79797B;
border: 0 !important;
margin: 0 !important;
}
&:hover {
border: 0 !important;
background-color: #800;
}
}
}
Alles anzeigen