- Firefox-Version
- 99
- Betriebssystem
- Windows Server 2008 R2
Ich glaube zwar nicht, dass das in sinnvoller Weise umsetzbar ist aber ich frage einfach mal:
Manche kennen sicher noch die Fortschrittsanzeige die es mal in der Statusleiste gab (ja, die Statusleiste gibt es in dem Sinne auch nicht mehr, dazu später mehr).
Dazu meine Frage: Ist es möglich so etwas wieder zu basteln?
Es gibt ein Addon, welches etwas ähnliches macht (nur halt nicht in der Statusleiste):
https://addons.mozilla.org/de/firefox/add…d-progress-bar/
Allerdings ist das nicht sehr zufriedenstellend, da die Leiste erst angezeigt wird, wenn die Seite schon fast geladen ist, die gesamte Ladezeit über ist diese Leiste also gar nicht zu sehen (es müsste also ein anderer Code sein).
Da es ja die Statusleiste auch nicht mehr gibt, habe ich dazu ein css Script gefunden, da sollte diese Fortschrittsanzeige also dann angezeigt werden:
/* Firefox Quantum userChrome.css tweaks ************************************************/
/* Github: https://github.com/aris-t2/customcssforfx ************************************/
/****************************************************************************************/
:root {
--statusbar_background_color: grey;
--statusbar_font_color: black;
}
:-moz-any(statuspanel,#statuspanel) {
-moz-appearance: none !important;
background-color: unset !important;
width: unset !important
border: 0 !important;
}
#browser-bottombox {
height: 22px;
border: 0px solid transparent !important;
border-right: 1px solid transparent !important;
box-shadow: 0 2px #c0c0c0 inset, 1px 3px #505050 inset, -1px -1px #fff inset !important;
padding-top: 1px !important;
}
#statuspanel {
height: 18px !important;
left: 0px !important;
width: 100% !important;
bottom: 1px !important;
padding-left: 3px !important;
padding-top: 1px !important;
padding-bottom: 2px !important;
transition-duration: 0s !important;
transition-delay: 0s !important;
transition-property: none !important;
/*box-shadow: 1px 1px #505050 inset, -1px -1px #fff inset !important;*/
}
#statuspanel-inner {
font-size: 12pt !important;
height: 14px !important;
}
#statuspanel-label {
border: none !important;
padding: 0px !important;
background: transparent !important;
}
html[inFullscreen="true"] #browser-bottombox {
display:none !important;
}
html[inFullscreen="true"] #statuspanel {}
#status-bar {
background: transparent !important;
height: 22px;
margin-top: -3px;
}
Alles anzeigen
Wie gesagt, ich glaube eigentlich nicht, dass das gehen wird aber fragen kostet ja nichts (und natürlich könnte ich wirklich sehr gut verstehen wenn sich niemand die Mühe machen will, so etwas nachzubasteln).