• Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below
  • Forum
  • Website
  • GitHub
  • Status
  • Translation
  • Features
  • Team
  • Rules
  • Help
  • Feeds
User Links
  • Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below

    Useful Links Forum Website GitHub Status Translation Features Team Rules Help Feeds
    Jellyfin Forum Support Themes & Styles Zombie CSS - 10.9.x compatible

    Pages (6): « Previous 1 2 3 4 5 6 Next »

     
    • 5 Vote(s) - 3.4 Average

    Zombie CSS - 10.9.x compatible

    A bits and pieces theme cherry picked from multiple themes out there
    Valentin
    Offline

    Junior Member

    Posts: 7
    Threads: 1
    Joined: 2024 Apr
    Reputation: 0
    #41
    2024-07-18, 06:50 AM
    Hello again !
    I would like to know if there is a possibility to get the background color (with still the blurry effect backdrop) less greyish ?
    Dex Luther
    Offline

    Junior Member

    Posts: 31
    Threads: 3
    Joined: 2023 Sep
    Reputation: 1
    Country:Canada
    #42
    2024-08-31, 05:12 PM (This post was last modified: 2024-08-31, 05:13 PM by Dex Luther. Edited 1 time in total.)
    (2024-07-18, 06:50 AM)Valentin Wrote: Hello again !
    I would like to know if there is a possibility to get the background color (with still the blurry effect backdrop) less greyish ?

    That's because of one of this:
    Code:
    .backdropImage {
      filter: blur(5px) saturate(120%) contrast(120%) brightness(120%);
      mask-image: linear-gradient(to right, transparent, black),
        linear-gradient(to top, transparent, black);
      -webkit-mask-image: linear-gradient(to right, transparent, black),
        linear-gradient(to top, transparent, black);
      mask-composite: source-in;
      -webkit-mask-composite: source-in;
      mask-composite: intersect;
      animation: 0.5s ease-in-out both backdrop-fadein;
    }

    To change it, you'd have to add something like this under your imports:
    Code:
    .backdropImage {
      filter: blur(5px) saturate(120%) contrast(120%) brightness(120%);
      mask-image: None;
      -webkit-mask-image: None;
      -webkit-mask-composite: None;
      animation: 0.5s ease-in-out both backdrop-fadein;
    }

    I'm not a CSS expert though.

    You can also go to a random Jellyfin page with a backdrop in your browser, and press f12 (Or right click on the backdrop > Inspect) and poke around in the CSS on the right. There's check boxes you can disable and enable to see what changes to learn what things do and mess around with values.

    Once you get something you like, copy the thing at the top of the box (If you're messing with the backdrop it should be
    Code:
    .backdropImage
    Put a { and then copy the things you changed (make sure you add the ; at the end of each line and finish with a } at the end (like the example above). You can also use Notepad++ or an online CSS helper to help you format the code and then just copy it over into Jellyfin's Custom CSS thing.
    1
    xvasilikix
    Offline

    Junior Member

    Posts: 1
    Threads: 0
    Joined: 2024 Sep
    Reputation: 0
    #43
    2024-09-14, 09:54 PM
    Hello, I use your theme for Jellyfin. I think it's very good. Can you tell me how I can change the emblem? My Jellyfin runs on a NAS server in a container and not on the PC
    Valentin
    Offline

    Junior Member

    Posts: 7
    Threads: 1
    Joined: 2024 Apr
    Reputation: 0
    #44
    2024-09-15, 11:14 AM
    Thank you so much !
    It works, sorry for the late answer ;-)

    (2024-08-31, 05:12 PM)Dex Luther Wrote:
    (2024-07-18, 06:50 AM)Valentin Wrote: Hello again !
    I would like to know if there is a possibility to get the background color (with still the blurry effect backdrop) less greyish ?

    That's because of one of this:
    Code:
    .backdropImage {
      filter: blur(5px) saturate(120%) contrast(120%) brightness(120%);
      mask-image: linear-gradient(to right, transparent, black),
        linear-gradient(to top, transparent, black);
      -webkit-mask-image: linear-gradient(to right, transparent, black),
        linear-gradient(to top, transparent, black);
      mask-composite: source-in;
      -webkit-mask-composite: source-in;
      mask-composite: intersect;
      animation: 0.5s ease-in-out both backdrop-fadein;
    }

    To change it, you'd have to add something like this under your imports:
    Code:
    .backdropImage {
      filter: blur(5px) saturate(120%) contrast(120%) brightness(120%);
      mask-image: None;
      -webkit-mask-image: None;
      -webkit-mask-composite: None;
      animation: 0.5s ease-in-out both backdrop-fadein;
    }

    I'm not a CSS expert though.

    You can also go to a random Jellyfin page with a backdrop in your browser, and press f12 (Or right click on the backdrop > Inspect) and poke around in the CSS on the right. There's check boxes you can disable and enable to see what changes to learn what things do and mess around with values.

    Once you get something you like, copy the thing at the top of the box (If you're messing with the backdrop it should be
    Code:
    .backdropImage
    Put a { and then copy the things you changed (make sure you add the ; at the end of each line and finish with a } at the end (like the example above). You can also use Notepad++ or an online CSS helper to help you format the code and then just copy it over into Jellyfin's Custom CSS thing.
    ADUSLG
    Offline

    Junior Member

    Posts: 5
    Threads: 2
    Joined: 2024 Oct
    Reputation: 0
    #45
    2024-10-06, 10:24 PM
    beautiful, but not good for music as you have to scroll way down to see the albums.
    foux
    Offline

    Junior Member

    Posts: 23
    Threads: 3
    Joined: 2024 Oct
    Reputation: 0
    #46
    2024-10-08, 02:35 PM (This post was last modified: 2024-10-08, 02:37 PM by foux. Edited 1 time in total.)
    Hi there!
    The CSS is gorgeous, but there is an issue with TV episode with a large description :    
    The text will overflow at the top and bottom, and we can't see all informations.

    Thanks!

    [ediit] : Sorry, already reported, missed it
    M0RPH3US
    Offline

    Member

    Posts: 89
    Threads: 5
    Joined: 2023 Jun
    Reputation: 6
    #47
    2024-10-09, 09:18 AM
    (2024-10-08, 02:35 PM)foux Wrote: Hi there!
    The CSS is gorgeous, but there is an issue with TV episode with a large description :
    The text will overflow at the top and bottom, and we can't see all informations.

    Thanks!

    [ediit] : Sorry, already reported, missed it

    Can you test 
    Code:
    @import url(https://cdn.jsdelivr.net/gh/MakD/zombie-release@main/pre-release/wip.css);
    foux
    Offline

    Junior Member

    Posts: 23
    Threads: 3
    Joined: 2024 Oct
    Reputation: 0
    #48
    2024-10-09, 03:48 PM
    (2024-10-09, 09:18 AM)M0RPH3US Wrote: Can you test 
    Code:
    @import url(https://cdn.jsdelivr.net/gh/MakD/zombie-release@main/pre-release/wip.css);

    Sorry, didn't see your post! Definitely better as there is no more overflow :    
    It would be great to have an option to see the whole text, but as it is, it is already miles ahead of the current version, thanks a lot!
    qy9756
    Offline

    Junior Member

    Posts: 4
    Threads: 0
    Joined: 2024 Oct
    Reputation: 0
    #49
    2024-10-13, 02:57 PM (This post was last modified: 2024-10-13, 03:05 PM by qy9756. Edited 3 times in total.)
    Hello, these two positions are misplaced, please help fix them. Thank you
               
    foux
    Offline

    Junior Member

    Posts: 23
    Threads: 3
    Joined: 2024 Oct
    Reputation: 0
    #50
    2024-10-14, 11:32 AM (This post was last modified: 2024-10-14, 12:12 PM by foux. Edited 3 times in total.)
    I find most page really beautifull, but I'm severely missing something on the movie page : the fact that the poster is nowhere to be found is quite annoying.
    Perhaps it should be put here :      . Or better yet on the left, like most themes and apps.
    The same can be said in the season view of a show, the episode view, ..... really any view that has a poster
    Thanks
    Pages (6): « Previous 1 2 3 4 5 6 Next »

    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    • View a Printable Version
    • Subscribe to this thread
    Forum Jump:

    Home · Team · Help · Contact
    © Designed by D&D - Powered by MyBB
    L


    Jellyfin

    The Free Software Media System

    Linear Mode
    Threaded Mode