Dieser Code arbeitet im Nightly 61 nicht mehr:
CSS
/*Link in Statusleiste anzeigen*/
statuspanel {
border:none!important;
margin-top:-20px!important;
font-weight: bold !important; font-size: 15px !important;
}
.statuspanel-label{
border:none!important;
background:transparent!important;
color: black !important;
}
Alles anzeigen
Ich lasse mir eine Statusleiste in meinen Füchsen mit dem nachstehenden Script anzeigen.
Code
/* Statusleiste für Firefox 57.0 + x */
(function() {
if (location != 'chrome://browser/content/browser.xul')
return;
let toolbar = document.createElement('toolbar');
toolbar.id = 'bottom-toolbar';
toolbar.setAttribute('customizable', 'true');
toolbar.setAttribute('mode', 'icons');
toolbar.setAttribute('context', 'toolbar-context-menu');
let vbox = document.createElement('vbox');
vbox.id = 'bottom-toolbar-vbox';
let browserBottombox = document.getElementById('browser-bottombox');
browserBottombox.parentNode.insertBefore(vbox, browserBottombox);
vbox.appendChild(toolbar);
vbox.style.backgroundColor = '#F6F6F6';
//Hier kann die Hintergrundfarbe angepasst werden. Als Wert kann zbs. red, green,
//yellow oder orange usw, aber auch zbs. #f7f7f7 usw.verwendet werden.
CustomizableUI.registerArea('bottom-toolbar', {legacy: true});
})();
Alles anzeigen
In dieser sollte mit dem obigen Code der Link angezeigt werden. Hat jemand eine Idee?
Oder habe nur ich das Problem?
[attachment=1]Adresse in Statusbar.PNG[/attachment]
So soll es sein...
[attachment=0]So soll es sein.PNG[/attachment]