Everything posted by supptora
-
[Plugin] Simple Custom WebUI CSS Plugin for Unraid 7.2+
Awesome plugin! Thank you. I was already using custom CSS with the old theme engine plugin, so with a few tweaks to my code to tidy it up I'm back in action with a consistent color-way for the dashboard
-
[Plugin] Theme Engine - a webGui styler
Ah, I've just updated the plugin and removed that line of code from my CSS that I added before and the bar is gone without it. Thanks.
-
[Plugin] Theme Engine - a webGui styler
Nope, only normal UD and UD+ I assume something was changed and now my custom CSS is being applied to that panel as well. Edit: I've fixed it with some inspect page usage + gpt to help figure out what was conflicting. Seems to be that there was no fallback for the "bg-background" code that unraid now uses, so had to add a bit to my CSS to target those dialogue panes. (Most of my CSS is tweaked from that github theme posted on the other pages) "That bg-background utility is pulling from your CSS variables. In your theme file, you donโt actually define --background, so the browser probably resolves it to transparent (or your earlier * { background-color: rgba(0,0,0,0) } nukes it)." - gpt In-case anyone needs the code or inspiration for fixing theirs: :root { --background: 0 0% 10% !important; /* dark base for dialogs */ --foreground: 0 0% 98% !important; /* very light text for contrast */ } dialog, [role="dialog"], .swal-modal, #sb-wrapper { background-color: rgba(20, 20, 20, 0.65) !important; /* semi-dark tint */ backdrop-filter: blur(12px) saturate(140%) !important; -webkit-backdrop-filter: blur(12px) saturate(140%) !important; border: 1px solid rgba(255, 255, 255, 0.1); /* subtle glass edge */ color: var(--foreground) !important; }
-
[Plugin] Theme Engine - a webGui styler
7.1.4 Been on this ver for a bit and that bar only appeared after updating plugins, unless it was one of the new silent patches Unraid does? Just noticed my notifications pane has gone transparent background, not done any updates it's just suddenly started happening. That's fair RE plugin updates, hoping someone picks this up and/or makes a modern version from the ground up.
-
[Plugin] Theme Engine - a webGui styler
After a recent update to maybe the CA plugin(?) or something, I noticed a white bar along the bottom of my GUI, so added the following to my custom CSS to hide it as it doesn't seem important. #progressFrame { display: none; /* removes it completely from layout */ /* or: visibility: hidden; keeps its space but hides it */ }
-
[Plugin] Theme Engine - a webGui styler
Late replying to this but incase anyone else needs to -> I had old one installed and just went to it on the app store and clicked "reinstall" which upgraded it without changing my previous settings. I use the bottom section to point to a custom CSS file, so YMMV.
-
[Plugin] Theme Engine - a webGui styler
Potentially you could use something like TamperMonkey/ViolentMonkey to modify the CSS, not sure if it would need some tweaks to the code though. Github for the tweak is here if anyone needs it: https://github.com/Skitals/unraid-theme-engine You might be able to install it via, CA for the plugin does have this message which holds true to the previous post however nothing is in the appstore yet.
-
[Plugin] Theme Engine - a webGui styler
-
[Plugin] Theme Engine - a webGui styler
I can confirm that theme engine works with 7.1.0, at least by using the external CSS method I mentioned previously (I don't use the other options).
-
[Plugin] Theme Engine - a webGui styler
It would be great if theming could be incorporated into Unraid by default. Even just being able to set transparency levels and a background would go a long way until more complex customisation could be added ๐
-
[Plugin] Theme Engine - a webGui styler
It's the "dynamix unraid connect" plugin updates that break it and they've been releasing updates to that like there's no tomorrow, lol. So if you're more selective on when to update that it'll lessen the amount of times you need to use the work-around.
-
[Plugin] Theme Engine - a webGui styler
Your custom file needs to have full theming in it. I use the file from here with some modifications: https://github.com/XiaoNieGPT/unraid-theme (you can manually download instead of using the commands to clone the repo)
-
[Plugin] Theme Engine - a webGui styler
Just updated Unraid Connect and it broke Theme Engine again, simple fix is to uninstall TE after updating UC then install TE again. Be sure to backup any custom CSS you've put in or alternatively a piece of code to load an external CSS file such as: </style> <link type="text/css" rel="Stylesheet" href="/mnt/user/data/tools/unraidthemes/themeengine/mytheme/mytheme.css" />
-
[Support] Linuxserver.io - Plex Media Server
From a lot of research it seems to be a bug with Plex that's happened a few times over the years, but seems more apparent in the past few months. According to some posts, an update a couple of months ago was supposed to fix this, however there's a few posts since about it happening. I'm holding out for the next update to see if it fixes it, as people have had the issue with brand new installs on both Windows and Linux systems, normal exe and docker containers - plex, LS.io, binhex.
-
[Support] Linuxserver.io - Plex Media Server
I've been having the same error. Checked permissions, switched from Plex official to LS.io, checked DB for errors etc and done a clean, rebooted the server... nothing worked.