@spiderrobotpig how do you get the columns to do that
@spiderrobotpig @ashkitten ok if it's git what do i have to pull/merge to get that
just please give me instructions, there are NONE ANYWHERE
If this doesn't work we can do more diffing, but we're pretty sure that code is the thing
@spiderrobotpig i found it out, you don't set the width, you just add flex-grow: 1;
that way it properly fills the screen without any hackish proportion math
@spiderrobotpig @ashkitten that doesn't look like what you're using but i guess it helps already, i just need to tweak the values
thanks
@squirrelbutt @ashkitten No problem. Actually going through and comparing the changes in the github now
@squirrelbutt @ashkitten https://github.com/Witches-Academy/mastodon/blob/fa9b192e43f067259dfd4054775e2f0742d51c52/app/assets/stylesheets/components.scss
That's ours.
It doesn't do the color changes, but it should be everything else
@squirrelbutt @ashkitten
Incorporating the variable-width column userstyle:
Add the following lines to app/assets/stylesheets/components.scss (around line 747 would be good for clarity):
@media (min-width: 1600px) {
.column {
width: 25%;
}
.drawer {
width: 23%;
}
}
???