- Firefox-Version
- 94.0.1
- Betriebssystem
- Win10
(Wie) Kann ich in meinem "bookmark-kontext-reihenfolge.css" unterscheiden, ob das rechtsgeklickte Objekt ein Ordner oder ein Lesezeichen ist?
Ich habe das Kontext-Menu mit folgendem Code(auschnitt) aufgehübscht:
CSS
/* ordner-Arbeit hervorheben*/
#placesContext_new\:folder{
-moz-box-ordinal-group: 100 !important;
Background-color: lightgreen !important;
margin-top: 4px !important;
margin-left: 4px !important;
margin-right: 4px !important;
border: 2px solid black !important;
border-bottom: none !important;
border-radius: 4px !important;
font-weight: bold !important;
padding-left: 10px !important;
}
#placesContext_show_folder\:info{
-moz-box-ordinal-group: 101 !important;
margin-left: 4px !important;
margin-right: 4px !important;
border: 2px solid black !important;
border-bottom: none !important;
border-top: none !important;
border-radius: 4px !important;
font-weight: bold !important;
padding-left: 10px !important;
}
#placesContext_deleteFolder{
-moz-box-ordinal-group: 102 !important;
Background-color: coral !important;
margin-left: 4px !important;
margin-right: 4px !important;
border: 2px solid black !important;
border-top: none !important;
border-radius: 4px !important;
font-weight: bold !important;
padding-left: 10px !important;
}
Alles anzeigen
Dabei kommt diese beiden Varianten heraus:
Bisher habe ich keine Idee, wie ich Ordner und Lesezeichen im Code unterscheiden kann, um beim Lesezeichen auch border-bottom zuzulassen.
Any hints?