Jellyfin Forum
Revamped Darkflix v4 (2024) - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Support (https://forum.jellyfin.org/f-support)
+--- Forum: Themes & Styles (https://forum.jellyfin.org/f-themes-styles)
+--- Thread: Revamped Darkflix v4 (2024) (/t-revamped-darkflix-v4-2024)



Revamped Darkflix v4 (2024) - DemonWarrior - 2024-05-22

I revamped and fixed my Darkflix v4 if anyone wants to take a look or use
Admin UI
Admin Dashboard
[Image: DFKIX0M.png]
Homepage UI
Hover
[Image: b0zeM3d.png]
Zoom-In
[Image: l9JcSB8.png]
Hamburger Menu


[Image: EVaRPOC.png]
Media UI
Media Card
[Image: DMpafIw.png]
Actors Cards
[Image: HsJZNRe.png]
Media Card Button and Hover
[Image: CW1Buqo.png]
TV-Show Season View
[Image: aAlUJ35.png]
Media Player UI
Media Player UI
[Image: zXAYPOm.png]
Custom Subtitles Font
[Image: wHOuJpK.png]
Installation
1. Open admin dashboard --> General ---> CSS
2. Add
Code:
@import url("https://cdn.jsdelivr.net/gh/DevilsDesigns/Jellyfin-DarkFlix-Theme/v4/Jellyfin-Darkflix-v4.css");
3. Enjoy



RE: Revamped Darkflix v4 (2024) - JohnDorian - 2024-06-02

Everything works fine, except the search button. I'm not able to search anything with this theme...


RE: Revamped Darkflix v4 (2024) - Efficient_Good_5784 - 2024-06-03

Looking at the picture of the video status bar in the OSD, I see that you didn't change the color of the watched chapter markers from the default blue color.

If you want to make them red to match the rest of your theme, here's the CSS code to do just that:

Code:
.sliderMarker.watched { background-color: rgba(217,0,0,1); }


(2024-06-02, 06:51 PM)JohnDorian Wrote: Everything works fine, except the search button. I'm not able to search anything with this theme...
I can also confirm that this V4 release of your custom theme breaks the search functionality.


RE: Revamped Darkflix v4 (2024) - JohnDorian - 2024-06-08

Can you please fix the thing with the search function? I'd like to use this theme, but at the moment this is no option with this bug.


RE: Revamped Darkflix v4 (2024) - DemonWarrior - 2024-06-12

I couldn't figure out what broke between this version and my original v4 ill take an in depth look but anyones help would be greatly apprecaite to help me find this bug


RE: Revamped Darkflix v4 (2024) - Ted Hinklater - 2024-06-12

Search works perfectly for me on desktop & mobile (using v5.1)

edit: Oh my bad they're talking about v4 sorry Weary-face


RE: Revamped Darkflix v4 (2024) - Ted Hinklater - 2024-06-12

on line 717 change it from "static" to "absolute"

div[data-role=page] {
margin: 0 !important;
padding: 0 !important;
position: absolute;


RE: Revamped Darkflix v4 (2024) - bpawnz - 2024-06-25

Do you have a code snippet to change the login splash screen background.  the snippet i have used with other themes before doesn't work.  Thank you for your help and i like the theme alot!




RE: Revamped Darkflix v4 (2024) - Ted Hinklater - 2024-06-25

(Yesterday, 02:00 AM)bpawnz Wrote: Do you have a code snippet to change the login splash screen background.  the snippet i have used with other themes before doesn't work.  Thank you for your help and i like the theme alot!




Code:
@import url("https://cdn.jsdelivr.net/gh/DevilsDesigns/Jellyfin-DarkFlix-Theme/v4/Jellyfin-Darkflix-v4.css");
#loginPage {
  background: url('https://i.ytimg.com/vi/avCWDDox1nE/maxresdefault.jpg') !important;
  background-size: cover;
}