Firefox 57: Wie mehrere Zeilen Lesezeichen untereinander

BrainBuggy schrieb:
Ich suche schon nach einer Lösung.
Teste bitte:

CSS:
@-moz-document url-prefix("chrome://browser/content/browser.xhtml") {

/*  Mehrzeilige Lesezeichen-Symbolleiste  */
#PersonalToolbar,
#PlacesToolbarItems {
   max-height: calc(20px * 9) !important;
   min-height: 20px !important;
}

#PlacesToolbar > hbox {
   display: block;
}

#PersonalToolbar toolbarbutton {
   max-height: 20px !important;
   min-height: 20px !important;
   margin: 0 1px !important;
}

#PlacesToolbarItems {
   display: flex;
   flex-wrap: wrap;
   overflow-x: visible;
   overflow-y: auto;
   contain: none !important;
}

#PlacesToolbarItems > scrollbar {
   -moz-window-dragging: no-drag;
}

#PlacesToolbar #PlacesChevron {
   display: none;
}
}
 
Hallo Andreas, ich sehe , Du warst auch schon fleissig ;)
Dein Script werde ich gleich mal testen.

Ich hatte mir selber diesen hier gebastelt:

CSS:
/*Mehrzeilige Lesezeichen-Symbolleiste*/

@-moz-document url-prefix("chrome://browser/content/browser.xhtml") {
    
     #PersonalToolbar {
        max-height: calc(24px * 3) !important;
    }
 
 #PlacesToolbar > hbox {
   display: block;
}

        
    #PersonalToolbar toolbarbutton {
        min-height: 20px !important;
        max-height: 20px !important;
    }
    
    #PlacesToolbarItems {
        max-height:80px!important;
        display: flex!important;
        flex-wrap: wrap!important;
        overflow-x: visible!important;
        overflow-y: auto!important;
        contain: none !important;
    }
    
    #PlacesToolbar,
    #PersonalToolbar > scrollbar {
        -moz-window-dragging: no-drag !important;
    }
    
    #PlacesToolbar #PlacesChevron {
        display: none !important;
    }
}
 
Zurück
Oben