Den Wunsch hatte auch auch schon seit längerem.
2002Andreas: Dein neues CSS lädt die Sidebar links. Es fehlt bei mir die Überschrift und das Suchfeld. Ich verwende folgendes CSS (wahrscheinlich auch von dir):
CSS
/* Sidebar rechte Seite, und nur bei hover sichtbar*/
@-moz-document url("chrome://browser/content/places/bookmarksSidebar.xhtml"),
url("chrome://browser/content/browser.xhtml") {
#sidebar-box {
-moz-appearance: none !important;
display: block !important;
position: fixed !important;
top: 125px;
right: 0;
bottom: 0px;
width: 0px !important;
overflow-x: hidden !important;
border: 1px solid transparent !important;
border-left: 0 !important;
opacity: 0 !important;
transition: width .2s ease-out 3.2s, opacity .2s ease-out 3.2s !important;
z-index: 2 !important;
}
#sidebar-box:hover {
width: 350px !important;
opacity: 1 !important;
transition: width .2s ease-out .2s, opacity .2s ease-out .2s !important;
}
#sidebar {
display: block !important;
width: 100% !important;
height: 100%;
}
}
In Zeile 18 habe ich zweimal ease-out von .2s auf 3.2s geändert und es funktioniert wie gewünscht.
Spricht etwas grundsätzliches dagegen diesen Code weiter zu verwenden?
Alles anzeigen