Vielen Dank für die schnelle Hilfe! Leider hat es Nichts gebracht.
Zur Info: Ich habe eine weitere Anpassung aktiv, die gut funktioniert (Verlegungung des Hamburger-Menus von rechts nach links). Auch unter Ansicht/Sidebar ist Lesezeichen aktiv. Keine Ahnung ob es Auswirkungen hat, ich nutze Linux Mint, FF 74. Mein aktueller userChrome.css Code (der zweite Code klappt):
CSS
/* Hover-Sidebar seit Firefox 72 verschwunden */
/* https://www.camp-firefox.de/forum/thema/129794-hover-sidebar-seit-firefox-72-verschwunden/?postID=1135368#post1135368 */
/* NEU Beitrag: Teste bitte mal diesen Code für Firefox 74: */
@-moz-document url("chrome://browser/content/places/bookmarksSidebar.xhtml"),
url("chrome://browser/content/browser.xhtml") {
#menu_bookmarksSidebar {
display: -moz-box !important;
}
#bookmarks-view-children {
margin-top: -100px !important;
margin-left: -15px !important;
}
#sidebar-header {
display: none !important;
}
.sidebar-placesTreechildren::-moz-tree-separator {
margin: 0px 500px !important;
}
label[persist="value"][flex="1"][crop="end"][control="sidebar"][value="Lesezeichen"] {
display: none !important;
}
#sidebar-box {
display: block !important;
position: fixed !important;
top: 112px;
bottom: 27px !important;
width: 0px !important;
overflow-x: hidden !important;
-moz-appearance: none !important;
z-index: 2 !important;
border: 1px solid transparent !important;
border-left: 0 !important;
opacity: 0 !important;
transition: width .2s ease-out .2s, opacity .2s ease-out .2s !important;
}
#sidebar-box:hover {
width: 255px !important;
opacity: 1 !important;
transition: width .2s ease-out .2s, opacity .2s ease-out .2s !important;
}
#sidebar-splitter {
display: none !important;
}
#sidebar {
display: block !important;
width: 100% !important;
height: 100% !important;
}
/* Australis Menu Button on the Left */
/* https://userstyles.org/styles/94907/australis-menu-button-on-the-left */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
@-moz-document url("chrome://browser/content/browser.xhtml")
{
#PanelUI-button, #customization-panel-container,
#customization-panelWrapper .panel-arrow,
#ctr_panelui-button,
#wrapper-ctr_panelui-button
{
-moz-box-ordinal-group: 0;
}
#PanelUI-button
{
background-position: 100% 0, calc(100% - 1px) 0, calc(100% - 2px) 0;
}
}
Alles anzeigen