- Firefox-Version
- 72.0.2
- Betriebssystem
- Win 10
Hi Leute....
Es gibt ja beim Anpassen leider nur noch den flexiblen Leerraum. Ich würde gerne ein paar senkrechte Trennlinien in die mit Pfeilen markierten Leisten einfügen. Leider bin ich wie immer völlig ahnungslos. Hätte jemand ne Idee bzw. könnte mir dabei helfen?
Wäre absolut cool!!! Danke schon mal im Voraus!
PS: Für die Statusbar hab ich folgende Codes:
Statusleiste.uc.js
Code
/* ------------ */
/* Statusleiste */
/* ------------ */
(function() {
if (location != 'chrome://browser/content/browser.xhtml')
return;
var tb = document.createXULElement('toolbar');
tb.id = 'statusleiste';
tb.setAttribute('customizable', true);
tb.setAttribute('mode', 'icons');
var vbox = document.createXULElement('vbox');
document.getElementById('navigator-toolbox').parentNode.parentNode.insertBefore(
vbox, document.getElementById('browser-bottombox'));
vbox.style.backgroundColor = 'lightgrey';
vbox.appendChild(tb);
CustomizableUI.registerArea('statusleiste', {legacy: true});
CustomizableUI.registerToolbarNode(tb);
})();
Alles anzeigen
Statusbar.css
CSS
/* ------------------------------------ */
/* Statusleiste / Helles Standard-Theme */
/* ------------------------------------ */
#statusleiste {
height: 30px !important;
direction: rtl !important;
background: -moz-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%, rgba(211,211,211,1) 100%) !important;
border-top: 1px solid #CCCCCC !important;
}
#statuspanel {
background-color: transparent !important;
border: none !important;
bottom: 16px !important;
height: 24px !important;
max-width: 100% !important;
transition: none !important;
}
#statuspanel-label {
border:none !important;
background:transparent !important;
padding-top: 3px !important;
padding-left: 6px !important;
color: #000000 !important;
}
Alles anzeigen