cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Double spaced bookmark padding fix coming?

envee
Making moves

Please say this is being looked at? Please.

This double spacing is really annoying and actually hinders rather than helps the user. We have to scroll more now than before.

40 REPLIES 40

hardstylens
Making moves

Bookmarks Toolbar drop-down menu
As close as possible to the Firefox 91 style
Creators - sandro79 and kokoss

userChrome.css

1

toolbarbutton menupopup[placespopup] {
  --panel-background: #f0f0f0 !important;
  --panel-border-color: #979797 !important;
  --panel-separator-color: #d7d7d7 !important;
  --panel-border-radius: 0px !important;
}
toolbarbutton menupopup[placespopup] > :is(menu, menuitem) {
  padding-block: 3px !important;
  min-height: unset !important;
}
toolbarbutton menupopup[placespopup] menuseparator {
  padding-block: 2px 3px !important;
}
toolbarbutton menupopup[placespopup] > :is(menu, menuitem):not([disabled])[_moz-menuactive] {
  background-color: #d1e2f2 !important;
  border-radius: 0px !important;
  outline: 1px solid #78aee5;
  outline-offset: -1px;
}
#PersonalToolbar {
  background-color: #f9f9fb !important;
  --toolbarseparator-color: #000000 !important;
  --toolbarbutton-hover-background: #dddde4 !important;
  --toolbarbutton-active-background: #cfcfd8 !important;
}
.menupopup-arrowscrollbox, .bookmark-item[container] {
  fill: #000000 !important;
  color: #000000 !important;
}
#PlacesChevron {
  fill: #000000 !important;
  color: #000000 !important;
}
toolbarbutton menupopup[placespopup] > menu.bookmark-item, menuitem.bookmark-item {
  max-width: 200em !important;
}

2

toolbarbutton menupopup[placespopup] {
  --panel-border-radius: 0px !important;
}
toolbarbutton menupopup[placespopup] > :is(menu, menuitem) {
  padding-block: 3px !important;
  min-height: unset !important;
}
toolbarbutton menupopup[placespopup] menuseparator {
  padding-block: 2px 3px !important;
}

3

toolbarbutton menupopup[placespopup] > :is(menu, menuitem) {
  padding-block: 3px !important;
  min-height: unset !important;
}
toolbarbutton menupopup[placespopup] menuseparator {
  padding-block: 2px 3px !important;
}