Habe folgendes Problem wie auf den Screenshoot zu sehen sind weitere Lesezeichen 2x oder gar 3x da wenn ich es lösche ist es danach wieder da.
All-in-One Sidebar Ersatz
-
Steffen69 -
28. September 2017 um 18:47 -
Erledigt
-
-
Habe folgendes Problem wie auf den Screenshoot zu sehen sind weitere Lesezeichen 2x oder gar 3x da wenn ich es lösche ist es danach wieder da.
Was ist ES? Was hast du gelöscht? Einen CSS-Code? Ich hoffe, nicht für immer. Stelle den mal ein. Verwende dazu das Symbol </>, klicke dann auf das Wort Quellcode. Darauf öffnet sich das Fenster Code bearbeiten. Wähle dort unter Syntax-Hervorhebung CSS aus und klicke auf Speichern. Füge jetzt den CSS-Code in das Code-Fenster ein.
-
den ordner weiter Lesezeichen wenn man auf den Screenshoot schaut ist dieser Ordner 2x mal da.
CSS
Alles anzeigen@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */ @-moz-document url("chrome://browser/content/places/bookmarksSidebar.xul"), url("chrome://browser/content/browser.xhtml") { #menu_bookmarksSidebar { display: -moz-box !important; } #bookmarks-view-children { margin-top: -120px !important; margin-left: -15px !important; } sidebarheader { display: none !important; } #sidebar-search-container { 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: 84px; bottom: -35px; width: 0px !important; overflow-x: hidden !important; -moz-appearance: none !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; z-index: 2 !important; } #sidebar-box:hover { width: 235px !important; opacity: 1 !important; transition: width .2s ease-out .2s, opacity .2s ease-out .2s !important; } #sidebar-splitter { display: none !important; } /* #sidebar-header { */ /* width:100%; */ /* border: 0 !important; */ /* } */ #sidebar { display: block !important; width: 100% !important; height: 95%; } }
-
-
Nach neuinstallation von windows funktioniert mein code nicht mehr habe ordner chrome erstellt darin die userChrome.css eingefügt passiert aber leider gar nichts
-
Dieser Schalter in about:config:
toolkit.legacyUserProfileCustomizations.stylesheets
steht bei dir auf true?
Wenn nicht, dann bitte umstellen. -
Vielen Dank das war es funktioniert nun wieder !
-
Danke für die Rückmeldung. ?
Schön dass du dein Problem lösen konntest. -
Dieser Schalter in about:config:
toolkit.legacyUserProfileCustomizations.stylesheets
steht bei dir auf true?
Wenn nicht, dann bitte umstellen.Hatte das gleiche Problem, hiermit wurde mir auch sehr weitergeholfen, danke dafür!
-
Hallo, kann man etwas tun das jede Folder sich automatisch schließt wenn einen andere geöffnet wird, ähnlich wie beim Bookmark Sidebar von Chrome?
-
Ich mal wieder vorher mußte ich links bis zum Rand mit dem Mauszeiger nun ist es so das die Sidebar schon 10 cm vor dem Rand öffnet und an manche sachen dadurch nicht mehr hin kommt weil die Sidebar zu früh öffnet.
Wäre dankbar für Hilfe !
Gruß
-
- Hilfreichste Antwort
Wäre dankbar für Hilfe !
Teste bitte mal:
CSS
Alles anzeigen@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */ @-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: -120px !important; margin-left: -15px !important; } sidebarheader { display: none !important; } #sidebar-search-container { 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: 84px; bottom: -35px; width: 0px !important; overflow-x: hidden !important; -moz-appearance: none !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 { z-index: 3 !important; width: 235px !important; opacity: 1 !important; transition: width .2s ease-out .2s, opacity .2s ease-out .2s !important; } #appcontent { margin-left: 1px !important; } #sidebar-splitter { display: none !important; } /* #sidebar-header { */ /* width:100%; */ /* border: 0 !important; */ /* } */ #sidebar { display: block !important; width: 100% !important; height: 95%; } }
-
-
Vielen Dank für deine Hilfe funktioniert wieder !
Freut mich wenn ich dir damit helfen konnte, war gern geschehen
-
-