• 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 Scyfin CSS Theme (10.9.x Support)

    Pages (2): « Previous 1 2

     
    • 1 Vote(s) - 5 Average

    Scyfin CSS Theme (10.9.x Support)

    Ted Hinklater
    Offline

    Member

    Posts: 233
    Threads: 8
    Joined: 2023 Nov
    Reputation: 26
    Country:United Kingdom
    #11
    2025-11-08, 08:58 PM
    Code:
    @import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/scyfin-theme.css');
    @import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/disable-static-drawer.css');
    .detailPageSecondaryContainer {
      background-clip: text
    }

    .page.libraryPage.backdropPage::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: #000;
      background-size: cover;
      opacity: 1;
      z-index: -1;
      background-attachment: fixed;
      pointer-events: none;
    }

    .layout-desktop #itemDetailPage:not(.noBackdropTransparency) .detailsGroupItem, .layout-desktop #itemDetailPage:not(.noBackdropTransparency) .detailSectionContent, .layout-desktop #itemDetailPage:not(.noBackdropTransparency) .trackSelections {
      background: transparent !important;
      backdrop-filter: none !important;
    }

    [Image: buffy.png]
    Kiekan
    Offline

    Junior Member

    Posts: 22
    Threads: 6
    Joined: 2024 Mar
    Reputation: 0
    Country:United States
    #12
    2025-11-08, 09:07 PM (This post was last modified: 2025-11-08, 09:07 PM by Kiekan.)
    (2025-11-08, 08:58 PM)Ted Hinklater Wrote:
    Code:
    @import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/scyfin-theme.css');
    @import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/disable-static-drawer.css');
    .detailPageSecondaryContainer {
      background-clip: text
    }

    .page.libraryPage.backdropPage::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: #000;
      background-size: cover;
      opacity: 1;
      z-index: -1;
      background-attachment: fixed;
      pointer-events: none;
    }

    .layout-desktop #itemDetailPage:not(.noBackdropTransparency) .detailsGroupItem, .layout-desktop #itemDetailPage:not(.noBackdropTransparency) .detailSectionContent, .layout-desktop #itemDetailPage:not(.noBackdropTransparency) .trackSelections {
      background: transparent !important;
      backdrop-filter: none !important;
    }

    Thanks so much! This definitely does what I asked!

    A couple quick questions:
    1 - Is there a way to modify this so the background on the home page and navigating through libraries is not black? I believe the normal theme background is #101010.
    2 - Is there a way to accomplish this effect without enabling the backdrops feature in the user settings? This way, I can have all my users share the same theme without having to enable the backdrops function on a per user/per device setting and without having to modify config files. Not sure if this requires heavy modification of the theme itself.

    Sorry if this is a complicated request!
    Ted Hinklater
    Offline

    Member

    Posts: 233
    Threads: 8
    Joined: 2023 Nov
    Reputation: 26
    Country:United Kingdom
    #13
    2025-11-08, 09:33 PM
    (2025-11-08, 09:07 PM)Kiekan Wrote:
    (2025-11-08, 08:58 PM)Ted Hinklater Wrote:
    Code:
    @import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/scyfin-theme.css');
    @import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/disable-static-drawer.css');
    .detailPageSecondaryContainer {
      background-clip: text
    }

    .page.libraryPage.backdropPage::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: #000;
      background-size: cover;
      opacity: 1;
      z-index: -1;
      background-attachment: fixed;
      pointer-events: none;
    }

    .layout-desktop #itemDetailPage:not(.noBackdropTransparency) .detailsGroupItem, .layout-desktop #itemDetailPage:not(.noBackdropTransparency) .detailSectionContent, .layout-desktop #itemDetailPage:not(.noBackdropTransparency) .trackSelections {
      background: transparent !important;
      backdrop-filter: none !important;
    }

    Thanks so much! This definitely does what I asked!

    A couple quick questions:
    1 - Is there a way to modify this so the background on the home page and navigating through libraries is not black? I believe the normal theme background is #101010.
    2 - Is there a way to accomplish this effect without enabling the backdrops feature in the user settings? This way, I can have all my users share the same theme without having to enable the backdrops function on a per user/per device setting and without having to modify config files. Not sure if this requires heavy modification of the theme itself.

    Sorry if this is a complicated request!

    In the ::before element (we generated it to cover the backdrops)

    Where it says background: #000;

    Change that to #101010;

    For backdrops-by-default there is a guide, i believe you want this

    https://github.com/BobHasNoSoul/jellyfin...-all-users
    Kiekan
    Offline

    Junior Member

    Posts: 22
    Threads: 6
    Joined: 2024 Mar
    Reputation: 0
    Country:United States
    #14
    2025-11-08, 09:54 PM (This post was last modified: 2025-11-08, 10:02 PM by Kiekan. Edited 1 time in total.)
    (2025-11-08, 09:33 PM)Ted Hinklater Wrote: In the ::before element (we generated it to cover the backdrops)

    Where it says background: #000;

    Change that to #101010;

    For backdrops-by-default there is a guide, i believe you want this

    https://github.com/BobHasNoSoul/jellyfin...-all-users

    Appreciate you taking a look at this.

    I tried changing the color hex code like you suggest and it does not appear to work. I noticed some strange things happening, actually.

    For reference this is the code I am using. Just to verify that everything is correct:

    Code:
    @import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/scyfin-theme.css');
    @import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/disable-static-drawer.css');
    .detailPageSecondaryContainer {
      background-clip: text
    }
    .page.libraryPage.backdropPage::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: #101010;
      background-size: cover;
      opacity: 1;
      z-index: -1;
      background-attachment: fixed;
      pointer-events: none;
    }
    .layout-desktop #itemDetailPage:not(.noBackdropTransparency) .detailsGroupItem, .layout-desktop #itemDetailPage:not(.noBackdropTransparency) .detailSectionContent, .layout-desktop #itemDetailPage:not(.noBackdropTransparency) .trackSelections {
      background: transparent !important;
      backdrop-filter: none !important;
    }

    When using this code I see the following behavior:
    When backdrops are disabled:
       

    When backdrops are enabled:
       

    I noticed that this also removed the pane behind the the text for the show/movie details:
       

    Is this the intended function? Without this CSS code, this is how the show details look while backdrops are enabled:
       

    For movies, if backdrops are disabled, I am also seeing this partial #101010 background behind the text:
       

    I appreciate you pointing me toward the tutorial on how to enable backdrops for all users by default. But I was hoping to avoid having to modify config files, for fear of damaging something important and breaking my Jellyfin instance.

    I was wondering if the easiest way to accomplish this is just to remove the layer above the backdrop when backdrops are disabled (the default view) - not sure if that makes sense.
       
    Ted Hinklater
    Offline

    Member

    Posts: 233
    Threads: 8
    Joined: 2023 Nov
    Reputation: 26
    Country:United Kingdom
    #15
    2025-11-08, 10:33 PM (This post was last modified: 2025-11-08, 10:53 PM by Ted Hinklater. Edited 2 times in total.)
    If it's too dark try #7b7b7b instead of #101010

    I did remove the pane, with this part:
    Code:
    .layout-desktop #itemDetailPage:not(.noBackdropTransparency) .detailsGroupItem, .layout-desktop #itemDetailPage:not(.noBackdropTransparency) .detailSectionContent, .layout-desktop #itemDetailPage:not(.noBackdropTransparency) .trackSelections {
    [b]  background: transparent !important;[/b]  /* hides the background) */
      backdrop-filter: none !important;[b] /* removed the filter that blurred the background under it) */ [/b]
    }

    Ah yeah our changes didn't cover when backdrops aren't enabled, this is with all the changes:

    Code:
    @import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/scyfin-theme.css');
    @import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/disable-static-drawer.css');
    .detailPageSecondaryContainer {background-clip: text}
    /* cover backdrops except for item page */
    .page.libraryPage.backdropPage::before {content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: #7b7b7b; background-size: cover; opacity: 1; z-index: -1; background-attachment: fixed; pointer-events: none;}
    /* transparent pane for description section */
    .layout-desktop .detailSectionContent { background: transparent !important;}
    /* transparent pane for audio/video/subtitle selection section */
    .trackSelections { background: transparent !important;}
    /* transparent pane for writers/directors etc */
    .layout-desktop .detailsGroupItem { background: transparent !important;}
    /* with backdrops disabled, transparent pane for all sections */
    .noBackdropTransparency .detailPagePrimaryContainer, .noBackdropTransparency .detailPageSecondaryContainer {background-color: transparent !important;}

    [Image: Screenshot-from-2025-11-08-22-32-18.png]
    Kiekan
    Offline

    Junior Member

    Posts: 22
    Threads: 6
    Joined: 2024 Mar
    Reputation: 0
    Country:United States
    #16
    2025-11-08, 10:55 PM
    That did it! Thanks so much for your help in adjusting these settings!
    1
    Loof27
    Offline

    Junior Member

    Posts: 3
    Threads: 2
    Joined: 2023 Aug
    Reputation: 0
    Country:United States
    #17
    2025-11-09, 03:07 AM (This post was last modified: 2025-11-09, 03:08 AM by Loof27. Edited 1 time in total.)
    I just released an update that should fix some of the weird layout issues on 10.11.X, though it does also remove support for pre-10.11.X. For anybody still running 10.10.X, you should update your CSS and lock it to the previous release like this:

    Code:
    @import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@v1.4.17/CSS/scyfin-theme.css');


    Someone also opened an issue for the same thing you are looking for (Backdrops ONLY on the media detail page), and I made this before seeing the posts here. Make sure backdrops are turned ON in the settings:


    Code:
    /* Only show backdrops on details page */
    body.withSectionTabs .backgroundContainer.withBackdrop {
        background: var(--primary-background-color) !important;
    }
    body.withSectionTabs .backgroundContainer.withBackdrop + div .mainDrawer {
        background: var(--secondary-background-color) !important;
    }
    evomedia
    Offline

    Junior Member

    Posts: 4
    Threads: 0
    Joined: 2025 Dec
    Reputation: 0
    #18
    2025-12-03, 12:03 PM
    Would love some advice on this. Not sure why but with my current CSS theme code I am getting a "<body>" text on my Jellyfin MP app and the browser. Tried to inspect element it on my browser to find where it comes from but it isn't very possible.

    Here are some screenshots of the issue.

       
       
       
       

    This is my current CSS code.

    @import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/scyfin-theme.css');
    @import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/disable-static-drawer.css');
    @import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/theme-seafoam.css');
    .detailPageSecondaryContainer` {background-clip: text}

    /* cover backdrops except for item page */
    .page.libraryPage.backdropPage::before {content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: #7b7b7b; background-size: cover; opacity: 1; z-index: -1; background-attachment: fixed; pointer-events: none;}

    /* transparent pane for description section */
    .layout-desktop .detailSectionContent { background: var(--primary-background-transparent) !important;  backdrop-filter: blur(var(--blur)) !important; }

    /* transparent pane for audio/video/subtitle selection section */
    .trackSelections { background: var(--primary-background-transparent) !important;  backdrop-filter: blur(var(--blur)) !important; }

    /* transparent pane for writers/directors etc */
    .layout-desktop .detailsGroupItem { background: var(--primary-background-transparent) !important;  backdrop-filter: blur(var(--blur)) !important; }

    /* with backdrops disabled, transparent pane for all sections */
    .noBackdropTransparency .detailPagePrimaryContainer, .noBackdropTransparency .detailPageSecondaryContainer {background-color: transparent !important;}
    Pages (2): « Previous 1 2

    « 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