Page zoom and the scroll bars

Talk about code development, features, specific bugs, enhancements, patches, and similar things.
Forum rules
Please keep everything here strictly on-topic.
This board is meant for Pale Moon source code development related subjects only like code snippets, patches, specific bugs, git, the repositories, etc.

This is not for tech support! Please do not post tech support questions in the "Development" board!
Please make sure not to use this board for support questions. Please post issues with specific websites, extensions, etc. in the relevant boards for those topics.

Please keep things on-topic as this forum will be used for reference for Pale Moon development. Expect topics that aren't relevant as such to be moved or deleted.
[2054]

Page zoom and the scroll bars

Unread post by [2054] » 2014-07-31, 08:06

I'm not sure if it's sensible for the scroll bars to change size with page zoom levels. Why should this browser element not have a constant size?

User avatar
Moonchild
Pale Moon guru
Pale Moon guru
Posts: 35602
Joined: 2011-08-28, 17:27
Location: Motala, SE
Contact:

Re: Page zoom and the scroll bars

Unread post by Moonchild » 2014-07-31, 08:08

Scroll bars don't change size when you change the zoom level of pages (content). If they do, then it may be the result of an add-on you are using?
"Sometimes, the best way to get what you want is to be a good person." -- Louis Rossmann
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite

User avatar
Night Wing
Knows the dark side
Knows the dark side
Posts: 5172
Joined: 2011-10-03, 10:19
Location: Piney Woods of Southeast Texas, USA

Re: Page zoom and the scroll bars

Unread post by Night Wing » 2014-07-31, 10:38

The only add-on I use to change page zoom levels is NoSquint. My scroll bars do not change size whether I'm using NoSquint or not. This applies to Pale Moon in both Windows 7 and linux Mint 17.
Linux Mint 21.3 (Virginia) Xfce w/ Linux Pale Moon, Linux Waterfox, Linux SeaLion, Linux Firefox
MX Linux 23.2 (Libretto) Xfce w/ Linux Pale Moon, Linux Waterfox, Linux SeaLion, Linux Firefox
Linux Debian 12.5 (Bookworm) Xfce w/ Linux Pale Moon, Linux Waterfox, Linux SeaLion, Linux Firefox

Evil Moo

Re: Page zoom and the scroll bars

Unread post by Evil Moo » 2014-07-31, 18:56

I am getting scroll bars increasing/decreasing in size with the zoom level, but only with my usual FT DeepDark theme enabled. Using the default theme keeps the scroll bars constant. Could this be a bug with the way the browser handles themes of this sort? Or is the bug on the theme's side entirely?

User avatar
Moonchild
Pale Moon guru
Pale Moon guru
Posts: 35602
Joined: 2011-08-28, 17:27
Location: Motala, SE
Contact:

Re: Page zoom and the scroll bars

Unread post by Moonchild » 2014-07-31, 20:29

I tried a few full themes, and they don't scale the scroll bars, so I think it's likely something in the specific theme you use.
Can anyone else verify this?
"Sometimes, the best way to get what you want is to be a good person." -- Louis Rossmann
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite

Evil Moo

Re: Page zoom and the scroll bars

Unread post by Evil Moo » 2014-07-31, 21:44

I just tried out a selection of complete themes from here: https://addons.mozilla.org/en-US/firefo ... ete-themes

All of the ones I tried scaled the scroll bars.

User avatar
Moonchild
Pale Moon guru
Pale Moon guru
Posts: 35602
Joined: 2011-08-28, 17:27
Location: Motala, SE
Contact:

Re: Page zoom and the scroll bars

Unread post by Moonchild » 2014-07-31, 21:49

Any specific extensions your are running then, that might influence this? Any zooming add-ons, UI changers, etc.?
"Sometimes, the best way to get what you want is to be a good person." -- Louis Rossmann
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite

Evil Moo

Re: Page zoom and the scroll bars

Unread post by Evil Moo » 2014-07-31, 22:18

My only active extensions are Stylish, NoScript, AdBlock Plus and the British English Dictionary.

Additionally, I just tried disabling them all, with no effect on the scroll bar zooming.

Also, in the outside chance that it makes a difference, my userContent.css and userChrome.css:

userContent:

Code: Select all

:focus {outline:none;}
::-moz-focus-inner {border:0;}

@-moz-document url("about:blank") {html{background-color: black;}}
userChrome:

Code: Select all

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

.tabbrowser-tab[selected="true"] .tab-text
{
	color: #d0d0d0 !important;
	-moz-opacity: 1 !important;
	margin-top : 1px !important;
}

.tabbrowser-tab[selected="true"]:hover .tab-text
{
	-moz-opacity: 0.85 !important;
}

#appmenu-button
{
	background: -moz-linear-gradient(top, rgba(96,83,147,1), rgba(48,45,66,1), rgba(134,135,187,1)) !important;
}

#appmenu-button:hover
{
	background: -moz-linear-gradient(top, rgba(126,113,177,1), rgba(78,75,116,1), rgba(134,135,187,1)) !important;
}

#appmenu-button:-moz-window-inactive
{
	background: -moz-linear-gradient(top, rgba(96,83,147,0.4), rgba(48,45,66,0.3), rgba(134,135,187,0.4)) !important;
}

browser
{
	background-color: #000 !important;
}
Though I haven't consciously done anything to affect the scroll bars in these.

mikeysc

Re: Page zoom and the scroll bars

Unread post by mikeysc » 2014-07-31, 22:22

What about this?
dom.disable_window_open_feature.scrollbars;false

Evil Moo

Re: Page zoom and the scroll bars

Unread post by Evil Moo » 2014-07-31, 22:41

That preference is false for me. Setting it to true makes no difference.

Locked