Increase toolbars height+Roomy Bookmarks Toolbar Topic is solved

Add-ons for Pale Moon and other applications
General discussion, compatibility, contributed extensions, themes, plugins, and more.

Moderators: FranklinDM, Lootyhoof

User avatar
back2themoon
Moon Magic practitioner
Moon Magic practitioner
Posts: 2406
Joined: 2012-08-19, 20:32

Increase toolbars height+Roomy Bookmarks Toolbar

Unread post by back2themoon » 2019-01-15, 01:05

Hello everyone, I'm trying to increase a bit the height of the Tabs Toolbar and the Bookmarks Toolbar, with partial success:

1. Tabs Toolbar: about:config / browser.tabs.tabMinHeight works perfectly

2. Bookmarks Toolbar: found this for userChrome.css

Code: Select all

/* Change height of Bookmarks Toolbar */ #PlacesToolbarItems .bookmark-item { padding-top: 2px !important; padding-bottom: 2px !important; }
...seems to work, but with two annoying side-effects:

a) it also increases the spacing between entries in the expanded Bookmarks Toolbar folders
b) it clashes with Roomy Bookmarks Toolbar's (v.1.4.4.1) Multirow option

Any suggestions welcome. :)

coffeebreak
Moon Magic practitioner
Moon Magic practitioner
Posts: 2986
Joined: 2015-09-26, 04:51
Location: U.S.

Re: Increase toolbars height+Roomy Bookmarks Toolbar

Unread post by coffeebreak » 2019-01-15, 06:01

Maybe this will help.

Code: Select all

#PlacesToolbar {
  min-height: {number}px !important;
  max-height: {number}px !important;
}

(For number of pixels: 17px-18px per row of bookmarks seemed to work, plus optionally adding an extra pixel or two;
min/max heights = same value.)

So if three rows of bookmarks, min/max heights of 51px to 56px, eg:

Code: Select all

#PlacesToolbar {
  min-height: 55px !important;
  max-height: 55px !important;
}

User avatar
badnick
Astronaut
Astronaut
Posts: 670
Joined: 2017-03-23, 19:56

Re: Increase toolbars height+Roomy Bookmarks Toolbar

Unread post by badnick » 2019-01-15, 09:23

back2themoon wrote:Hello everyone, I'm trying to increase a bit the height of the Tabs Toolbar and the Bookmarks Toolbar, with partial success:
You can do that also with " Theme Font & Size Changer" addon.
Windows 10 pro /64 (version 1809)
PM last/64

User avatar
back2themoon
Moon Magic practitioner
Moon Magic practitioner
Posts: 2406
Joined: 2012-08-19, 20:32

Re: Increase toolbars height+Roomy Bookmarks Toolbar

Unread post by back2themoon » 2019-01-15, 10:21

Thanks both. Theme Font & Size Changer is a bit overkill since it changes everything.

Coffeebreak, is that code meant to change the height or move the toolbar? In any case, it doesn't seem to have any effect here, with or without Roomy.

User avatar
badnick
Astronaut
Astronaut
Posts: 670
Joined: 2017-03-23, 19:56

Re: Increase toolbars height+Roomy Bookmarks Toolbar

Unread post by badnick » 2019-01-15, 10:42

back2themoon wrote:Thanks both. Theme Font & Size Changer is a bit overkill since it changes everything.
Yeah , you can change the UI zoom or the UI font size or both. If you increase only the font automatically increase the height of the Tabs toolbar and Bookmarks toolbar.
Windows 10 pro /64 (version 1809)
PM last/64

coffeebreak
Moon Magic practitioner
Moon Magic practitioner
Posts: 2986
Joined: 2015-09-26, 04:51
Location: U.S.

Re: Increase toolbars height+Roomy Bookmarks Toolbar

Unread post by coffeebreak » 2019-01-15, 13:05

back2themoon wrote:Coffeebreak, is that code meant to change the height or move the toolbar? In any case, it doesn't seem to have any effect here, with or without Roomy.

It's meant to change the height (not to move anything), and it does work on my Windows 7 machine, in userChrome.css.
(Though it all takes a few seconds to load after restart.)

Set to 4 rows (PM28.2.2, new profile, W7 x86):

Code: Select all

#PlacesToolbar {
  min-height: 76px !important;
  max-height: 76px !important;
}
bookmarksbar-4rows.png

Same code, Roomy Bookmarks Toolbar disabled:
bookmarksbar-noRBT.png
Maybe there's a different selector with Windows 10?
Dom Inspector would enable you to check that.

User avatar
back2themoon
Moon Magic practitioner
Moon Magic practitioner
Posts: 2406
Joined: 2012-08-19, 20:32

Re: Increase toolbars height+Roomy Bookmarks Toolbar

Unread post by back2themoon » 2019-01-15, 14:06

Thanks, I got it to work (had to use higher values). Only problem is that when enabled, it triggers (sometimes...) an older issue I had:

No borders around the Tabs Toolbar (when using a Persona - borders are there with the default theme).

Locked