Hallo zusammen,
leider geht nach dem heutigen Update auf FF 69 nicht mehr das automatische Aus- / Einblenden der Sidebar. Könnte mir mal bitte jemand einen Tip geben, was ich im Code der userChrome.css zu ändern habe?
Besten Dank!
CSS
tab[selected="true"] {
background-color: rgb(205,69,50) !important;
color: black !important;
}
tab {
-moz-appearance: none !important;
}
/* Sidebar per Maushover einblenden */
@-moz-document url("chrome://browser/content/bookmarks/bookmarksPanel.xul"),
url("chrome://browser/content/browser.xul"),
url("chrome://browser/content/history/history-panel.xul") {
#menu_bookmarksSidebar {
display:-moz-box !important;
}
#sidebar-box {
display:-moz-box !important;
position:fixed!important;
top:125px; /* Abstand nach oben bis zur untersten Leiste vom Browser */
bottom:0px; /* Abstand nach unten bis zur Taskleiste */
width: 0px !important;
overflow-x: hidden !important;
-moz-appearance: none !important;
border: 1px solid transparent !important;
border-left: 0 !important;
opacity: 0 !important;
-moz-transition: width .2s ease-out .2s, opacity .2s ease-out .2s !important;
}
#sidebar-box:hover {
width: 300px !important; /* Breite der Sidebar */
opacity: 1 !important;
-moz-transition: width .2s ease-out .2s, opacity .2s ease-out .2s !important;
}
#sidebar-header {
width:100%;
border: 0 !important;
}
#sidebar {
display:-moz-box !important;
width:100%!important;
height:92%!important; /* Höhe der Sidebar */
}
}
Alles anzeigen