Bei mir sieht es mit diesem Code
CSS
#statuspanel {
bottom: -20px !important;
margin-left: 0px !important;
border: none !important;
margin-top: -3px !important;
}
#statuspanel-label {
margin-left: 16px !important;
border: none !important;
background: transparent !important;
color: #000080 !important;
font-size: 11px !important;
}
Alles anzeigen
so aus:
Das Schwarze ist die Taskleiste von Windows.
Ausser dem CSS-Code nutze ich dieses Script von aborix:
Code
/* AAAStatusleiste für Firefox */
// https://www.camp-firefox.de/forum/viewtopic.php?p=1052187&sid=d4e33b574226439c26dfb45629b71369#p1052187
// entwickelt von aborix
(function() {
if (location != AppConstants.BROWSER_CHROME_URL)
return;
var tb = document.createXULElement('toolbar');
tb.id = 'new-toolbar';
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 = '#ffffff';
vbox.appendChild(tb);
CustomizableUI.registerArea('new-toolbar', {legacy: true});
CustomizableUI.registerToolbarNode(tb);
})();
Alles anzeigen