adsii1970 Posted October 27, 2020 Share Posted October 27, 2020 14 hours ago, AlamoVampire said: Im seeing them too. The one with a shield i think indicates moderator (at least i think so, i see that on like vanamonde for example) and the stop hand i think indicates a member who is new (i think) and requires moderator approval. This is my theory. 184310262020 Oh, wow, I have a shield, too! That's really cool. But everyone knows where there is a shield, there's always some sort of primary weapon. Things that make you go hmmmm... Quote Link to comment Share on other sites More sharing options...
RealKerbal3x Posted October 27, 2020 Share Posted October 27, 2020 1 hour ago, adsii1970 said: Oh, wow, I have a shield, too! That's really cool. But everyone knows where there is a shield, there's always some sort of primary weapon. Things that make you go hmmmm... The banhammer? Quote Link to comment Share on other sites More sharing options...
swjr-swis Posted October 27, 2020 Share Posted October 27, 2020 2 hours ago, adsii1970 said: But everyone knows where there is a shield, there's always some sort of primary weapon. Hmm... that's no moon... Quote Link to comment Share on other sites More sharing options...
Bej Kerman Posted October 28, 2020 Share Posted October 28, 2020 On 10/27/2020 at 12:01 AM, Vanamonde said: @Bej Kerman, this is part of on-going work to get the latest version of the forum software running smoothly. Your question has been merged into the master thread. And, you're not able to work on a backup, are you? Working on the live thing sounds like a recipe for disaster. On 10/26/2020 at 11:57 PM, Superfluous J said: On 10/26/2020 at 8:21 PM, Bej Kerman said: Not sure where to post this (wouldn't be able to find the suitable topic anyway), but the forum is completely and totally broken. Is it so on your end? It's like there's no style, just text, massive bullet point lists and the default Chrome font. Screencap https://imgur.com/k4MOffr Obligatory "that looks better than correct" post. (I don't actually think it looks better, but it does not look all that worse) Honestly I agree Quote Link to comment Share on other sites More sharing options...
Vanamonde Posted October 28, 2020 Share Posted October 28, 2020 Don't know from backups. I'm not a techie. I just pass along what we're told. Quote Link to comment Share on other sites More sharing options...
Vanamonde Posted October 29, 2020 Share Posted October 29, 2020 Apparently there are technical reasons why the Gameplay sub cannot be set to default to chronological order. Our IT is still looking into alternatives but it's not looking promising. Quote Link to comment Share on other sites More sharing options...
DAFATRONALDO2007 IN SPACE Posted October 29, 2020 Share Posted October 29, 2020 Actually i've seen the forums UI Change quite a lot @Vanamonde and the day when the Forum was getting one of those U.I updates, the forum crashed on me and i couldn't get in but im fine now... Nice work! must be tough to be a moderator... Quote Link to comment Share on other sites More sharing options...
Vanamonde Posted October 29, 2020 Share Posted October 29, 2020 2 hours ago, DAFATRONALDO2007 IN SPACE said: ... must be tough to be a moderator... Naw. Quote Link to comment Share on other sites More sharing options...
DAFATRONALDO2007 IN SPACE Posted October 29, 2020 Share Posted October 29, 2020 really. you probably get blasted with nothing but notifications and you gotta be everywhere at once. anyways, you do a pretty good job @Vanamonde Quote Link to comment Share on other sites More sharing options...
HebaruSan Posted November 2, 2020 Share Posted November 2, 2020 On 10/20/2020 at 3:53 PM, Clamp-o-Tron said: EDIT: To those who haven't seen, @HebaruSan has an excellent Stylish configuration for a forums "Dark Mode". Check it out, it's great! Minor announcement, since this thread has effectively become the home page for this dark theme: Working on this theme served as my personal introduction to CSS variables. I hadn't seen them in action before, but as I inspected the stock stylesheet in dev tools, it was plain that there was a powerful new syntax for styling, because IPS4's default theme is built entirely around CSS variables (to its great benefit). But I didn't yet know how they worked, and rather than risk making mistakes or delay to re-learn CSS, I went about overriding the styles with familiar, simple color literals instead, and made a note to come back and learn variables at some point. Today I finally went back and rewrote the whole thing to use IPS4's theme variables. The new code is much cleaner and shorter (just 100 lines), as well as more robust and consistent, because it now relies far more on the default theme to do the heavy lifting in places where I previously re-invented the wheel (such as the speech-bubble-tail shapes for popups). Pretty much the only downside is that I can't use hsla() in most places anymore because the stock theme uses rgb(var()) for most colors; hsla() is great for when you want to make a color brighter/darker or more/less saturated without changing the hue, or for mass-adjusting the hues of lots of related colors all at once (e.g., make a blue theme green). The update is on the userstyles site, available via the "Check for update" button in the Stylish settings. It should look pretty much identical, with a subtle difference here or there, plus styled scrollbars. Quote Link to comment Share on other sites More sharing options...
Stone Blue Posted November 2, 2020 Share Posted November 2, 2020 @HebaruSan So, to change colors at least, and maybe hide & resize elements, is it possible to just go in and substitute values? If so, would you mind if I poked it to see if I could manage a slightly different scheme with it? Might be easier to modify yours, than try to fix stuff broen in mine & nbz's... ~1200 lines of code And if so, would it be ok if I made it publicly available, with due credit and same license? Quote Link to comment Share on other sites More sharing options...
HebaruSan Posted November 2, 2020 Share Posted November 2, 2020 9 minutes ago, Stone Blue said: @HebaruSan So, to change colors at least, and maybe hide & resize elements, is it possible to just go in and substitute values? Yup, CSS variables make this pretty easy. These lines at the top set the variables, which are used and re-used across the default stylesheet to create consistent appearances for similar elements: --theme-page_background: 23, 23, 28; --theme-text_light: 148, 148, 184; To see which variable affects a particular element, press F12 (or Ctrl+Shift+I) to bring up the dev tools, then Ctrl+Shift+C and click the element, and the style info for it will appear in the Styles tab of the dev tools; look for lines containing rgb(var(--some-name)), and the "--some-name" part is the variable: Sometimes you may need to navigate up or down in the DOM tree in the Elements tab to find the spot where a color is being set. 9 minutes ago, Stone Blue said: If so, would you mind if I poked it to see if I could manage a slightly different scheme with it? Might be easier to modify yours, than try to fix stuff broen in mine & nbz's... ~1200 lines of code Feel free! 9 minutes ago, Stone Blue said: And if so, would it be ok if I made it publicly available, with due credit and same license? The license is CC0, which as I understand it is public domain; go for it. Quote Link to comment Share on other sites More sharing options...
Stone Blue Posted November 3, 2020 Share Posted November 3, 2020 Thanx @HebaruSan Ok...kewl... using the Inspector & Style Editor in FF, is basically how I hacked up nbz's theme, in the first place Quote Link to comment Share on other sites More sharing options...
Tux1 Posted November 15, 2020 Share Posted November 15, 2020 (edited) I haven't been on here in a few months, and when I get back, it looks completely different. In fact, it almost looks like :vomit: flat design. In unrelated news, I just got into orbit in an SSTO by myself. Edit: Wait no, I actually haven't been here in over a year. Time really flies by! Edited November 15, 2020 by Tux1 oops Quote Link to comment Share on other sites More sharing options...
RealKerbal3x Posted November 15, 2020 Share Posted November 15, 2020 16 minutes ago, Tux1 said: I haven't been on here in a few months, and when I get back, it looks completely different. In fact, it almost looks like :vomit: flat design. The software that the forum runs on had a UI update a while back. The general response was negative: Quote Link to comment Share on other sites More sharing options...
linuxgurugamer Posted November 15, 2020 Share Posted November 15, 2020 1 hour ago, RealKerbal3x said: The software that the forum runs on had a UI update a while back. The general response was negative: The response is ALWAYS negative, for every update Quote Link to comment Share on other sites More sharing options...
Vanamonde Posted November 15, 2020 Share Posted November 15, 2020 Overlapping threads have been merged. Quote Link to comment Share on other sites More sharing options...
DeadJohn Posted November 15, 2020 Share Posted November 15, 2020 19 minutes ago, linuxgurugamer said: The response is ALWAYS negative, for every update Maybe you should adopt the forums Quote Link to comment Share on other sites More sharing options...
Souptime Posted November 16, 2020 Share Posted November 16, 2020 I like the new UI tbh Quote Link to comment Share on other sites More sharing options...
Gargamel Posted November 18, 2020 Share Posted November 18, 2020 On 11/15/2020 at 4:45 PM, linuxgurugamer said: The response is ALWAYS negative, for every update You can please some of the people some of the time... and all of the people some of the time... but when the rooster crows in the morning... no wait..... something like that. Doesn't matter what happens, somebody is always upset about something. Quote Link to comment Share on other sites More sharing options...
Geonovast Posted November 18, 2020 Share Posted November 18, 2020 I'm officially used to it. The only thing that still bothers me is the change with how quotes are now put into pseudo-spoilers. All the other issues I've had with the change have been fixed, like those horrendous, trendy round avatar images. If you asked me to point out what's different now, I probably couldn't. Quote Link to comment Share on other sites More sharing options...
RealKerbal3x Posted November 18, 2020 Share Posted November 18, 2020 10 minutes ago, Geonovast said: I'm officially used to it. The only thing that still bothers me is the change with how quotes are now put into pseudo-spoilers. All the other issues I've had with the change have been fixed, like those horrendous, trendy round avatar images. If you asked me to point out what's different now, I probably couldn't. I'm still irritated by the movement of the edit button to a dropdown menu for no reason. But other than that, yeah, most of the problems I had when the update happened have been fixed now. Quote Link to comment Share on other sites More sharing options...
Dman979 Posted November 18, 2020 Share Posted November 18, 2020 There's some behind-the-scenes stuff that I'd still like to see adjusted to their former values, but I think IT has been very helpful and responsive to member feedback through this process. Quote Link to comment Share on other sites More sharing options...
flart Posted September 20, 2021 Share Posted September 20, 2021 (edited) Stumbled upon https://forums.getpaint.net/, the dark theme is soo nice! Edited September 20, 2021 by flart Quote Link to comment Share on other sites More sharing options...
AtomicTech Posted September 20, 2021 Share Posted September 20, 2021 Oh, cool! It looks just like our forum! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.