I've just pushed user settings.
Let me know here if there are any problems.
The actual page could use a white background - the text blends into the dark texture.
Aside from what is mentioned above, nothing negative to report! I don't really mind the absence of other Oldpunch functions, they aren't very useful imo.
I feel like that's a recurring theme
I don't think calling full width ugly is a nice thing to do, it's not my fault you used it on FP and I got used too it.
Could you make the grainy overlay toggleable?
sometimes the truth is not a nice thing, friend
I mentioned this on another post, but the design of this site isn't done yet. It's going to be fixed up once all the pages are done and we know what we need to design for.
You can take a look at the Rust forum to see what stuff should look like.
https://rust.facepunch.com/user/options/
Does the custom css essentially work like userscripts?
The middle option seems a little broken:
Commas in the custom css seem to break something, this doesn't work:
.navbar.navbar-loggedin, .navbar.navbar-under {
background-color: #FF0000;
}
Does the CSS generate properly? If you look at the page source, you should see a link to /styles/user - is that stylesheet correct?
Nope, looks like it doesn't generate at all when I use that css snippet.
I think the problem isn't a comma, it breaks when there's extra space at the end of the css:
It might just be a bad cache I guess
Here's snippets to test. The user style is missing completely from the source using the snippets that don't work. Tested on Firefox & Chrome
Works (2 empty lines at end)
.navbar.navbar-loggedin, .test {
background-color: #FF0000;
}
.navbar.is-primary .navbar-brand > a.navbar-item:hover {
background-color: #b50000;
}
.navbar.navbar-under {
background-color: #FF0000;
}
Doesn't work (1 empty line at end)
.navbar.navbar-loggedin, .test {
background-color: #FF0000;
}
.navbar.is-primary .navbar-brand > a.navbar-item:hover {
background-color: #b50000;
}
.navbar.navbar-under {
background-color: #FF0000;
}
Works (1 empty line at end, 1 extra space after .test)
.navbar.navbar-loggedin, .test {
background-color: #FF0000;
}
.navbar.is-primary .navbar-brand > a.navbar-item:hover {
background-color: #b50000;
}
.navbar.navbar-under {
background-color: #FF0000;
}
i'm not big into web design stuff, i am guessing custom CSS will allow people to share different layouts and shit without needing to install an extension, right?
Is it possible to have some screenshots of custom css stuff in action? I'm not too bright, so I'm having a hard time imagining just what you can change to enhance the user experience.
You can theoretically change anything you see; color, size, position.
You should be able to replace icons and things like that too
Noticed that the fullwidth now goes all the way to the edge. It'd be nicer if it still had a small bit of space on each side like current Facepunch does.
Other than that I'm liking it a lot better.
I am not sure if this will be added as we can now add custom CSS.
Try to add this to it, it will add 10 pixel padding left and right.
.force-wide-design .container {
width: calc(100% - 20px) !important;
}
Found the CSS problem, fix incoming
Should be fixed now, let me know.
The css snipet I wrote in works now.
The CSS input has a 500 character limit
you can use css imports
(if your thing is hosted on github you need to use rawgit or it won't work)
The css is stored on the server, it's applied on any device your logged into
Sorry, you need to Log In to post a reply to this thread.