Closed EchedelleLR closed 2 years ago
After some tweaking, auto minmax(auto, 90ch) auto
could make the trick.
Would it be an option to add support for min()
to Pale Moon?
So that other websites work better too.
Not sure how ahead is in their queue for UXP, since Web Components is a task on it too and is a big thing but generally, yes, they should with time, sooner if it is part of a standard.
Anyways, the example I wrote fixes the issue for Pale Moon (and keep it working for other web browsers) using already supported features.
Edited: seems to be a W3C Working Draft as for today yet https://drafts.csswg.org/css-values-4/#funcdef-min.
Thanks for investigating this! Will try to get a fix in soon :)
Thanks to you for this incredible software. :3
Describe the bug with a clear and concise description of what the bug is.
The content size, specifically the width, of the front page as far as I could test, is covering the whole web browser window.
This happens just to UXP-based web browsers, and I think that is due to a bad setting in the
grid-template-columns
setting a value ofauto min(92%, 90ch) auto
, for whichmin
function is not available there.What's your GoToSocial Version?
0.4.0
GoToSocial Arch
x86_64 (amd64) Binary
What happened?
The content size, specifically the width, of the front page is covering the whole web browser window.
I attach a screenshot for it:
What you expected to happen?
Content size being seeing with a proportionate width according to the web browser window.
How to reproduce it?
Load any front page of any GoToSocial instance in version 0.4.0 with an UXP-based web browser.
Anything else we need to know?
As written before, the issue is the
min
function ingrid-temlate-columns
and more information of widely supported things are at MDN.