Hier nochmal eine Nachfrage zur Ausblendung von Ordnern in der Lesezeichensidebar...
Mit diesem Code von 2002Andreas wird im Firefox 57.0rcbuild3 in der Sidebar leider NICHT der Ordner Mobile Lesezeichen ausgeblendet, ferner verbleiben bei den ausgeblendeten Ordnern Leerzeilen, was das Ganze etwas unschön erscheinen lässt.
CSS
/*Lesezeichen Sidebar Einträge entfernen */
/* AGENT_SHEET */
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
@-moz-document url("chrome://browser/content/bookmarks/bookmarksPanel.xul"),
url("chrome://browser/content/browser.xul"),
url("chrome://browser/content/history/history-panel.xul"){
#bookmarksPanel treechildren::-moz-tree-twisty(closed),
#bookmarksPanel treechildren::-moz-tree-twisty(open){
height:0px!important;
width:0px!important;}
#bookmarks-view-children.sidebar-placesTreechildren::-moz-tree-image(container, OrganizerQuery_BookmarksToolbar){
width:0px!important;
height:0px!important}
#bookmarks-view-children.sidebar-placesTreechildren::-moz-tree-cell-text(title,OrganizerQuery_BookmarksToolbar){
opacity: 0 !important;}
#bookmarks-view-children.sidebar-placesTreechildren::-moz-tree-cell-text(title,OrganizerQuery_UnfiledBookmarks){
opacity: 0 !important;}
#bookmarks-view-children.sidebar-placesTreechildren::-moz-tree-image(container, OrganizerQuery_UnfiledBookmarks){
width:0px!important;
height:0px!important}
#bookmarks-view-children.sidebar-placesTreechildren::-moz-tree-image(container, OrganizerQuery_MobileBookmarks){
width:0px!important;
height:0px!important}
#bookmarks-view-children.sidebar-placesTreechildren::-moz-tree-cell-text(title, OrganizerQuery_MobileBookmarks){
opacity: 0 !important;}
.sidebar-placesTreechildren::-moz-tree-separator{
border: 1px dotted transparent !important;}
}
Alles anzeigen
Hat jemand noch Verbesserungsvorschläge?