-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add window height as an option under Settings #785
Comments
This is unrealistic to expect that all domains should be visible -- the list could very well extend offscreen, something uBO wouldn't know about and which would cripple uBO usage. Declined. |
Sure, but what about adding window height as an option under Settings? Would that be complicated? |
I vaguely remember somebody asking for an advanced setting for this -- is there an open issue about this? If not I will reopen this one. |
Thanks. I mentioned it in #770 (comment), perhaps that's where? |
@gitressa check development build: This is fixed:
|
@gorhill this clipping of the overview panel is a problem after all https://www.reddit.com/r/uBlockOrigin/comments/gk56f9/ublock_origin_1270_with_interface_redesign_is_out/fqswhq2/ |
I am going to experiment to see if I can detect and adjust programmatically, maybe something like what is already being done to detect restricted width. |
The only solution I see now is to provide a new advanced setting to limit the height of the firewall pane to that of the basic pane. Currently as of 1.27.4, the firewall is unconstrained, i.e. it will expand beyond the height the the basic pane when there are lots of rows. So while testing the new advanced setting I can't go through all the feedback regarding the changes in 1.27.0 -- has there been specific feedback regarding the unconstrained height of the firewall pane and if so how is the general reception? Do people in general prefer the constrained height? |
I would prefer the option of maximizing the pane to the max, utilizing as much as possible of the browser window. See for example NBC, where the complete list spans three scrolls: |
New advanced setting: `popupPanelHeightMode`. Default value: 0 Set to 1 to force the height of the firewall pane to be no more than the height of the basic pane. Related feedback: - uBlockOrigin/uBlock-issues#785 (comment)
I'm an HTML-Developer. With websites you can use CSS: .popup {
height: 100vh; /* Viewport Height */
} or: .popup {
height: calc(100vh - 50px); /* calculated height */
} You also can try to stretch the .popup {
height: 100%;
max-height: calc(100vh - 50px); /* restricted to full height minus some pixels */
} Don't know if this also workes with the browser engine. I also would like to have the popup all the way to the bottom of the window. |
Fixed? Thank you. |
Prerequisites
Description
Sometimes there are quite a few third-party scripts from many domains on a web site. After clicking the uBlock Origin icon It would be great to be able to see the entire list of domains, without having to scroll.
Possible solutions
A specific URL where the issue occurs
https://www.nbc.com/
Steps to Reproduce
Expected behavior:
All domains should be visible.
Actual behavior:
Only the first ten domains are visible.
Your environment
The text was updated successfully, but these errors were encountered: