• 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): 1 2 Next »

     
    • 1 Vote(s) - 5 Average

    Scyfin CSS Theme (10.9.x Support)

    Loof27
    Offline

    Junior Member

    Posts: 3
    Threads: 2
    Joined: 2023 Aug
    Reputation: 0
    Country:United States
    #1
    2024-06-10, 04:25 AM
    Repository: https://github.com/loof2736/scyfin

    [Image: Fmvm6at.png]



    Custom CSS theme for Jellyfin with support for backdrops



    Scyfin Base Theme

    [Image: homepage.png?raw=true]
    [Image: details.png?raw=true]
    [Image: details-backdrops.png?raw=true]
    [Image: movies.png?raw=true]
    [Image: dashboard.png?raw=true]
    [Image: login.png?raw=true]

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

    Options (Add these below the base theme)


    Disable static left drawer 
    • Code:
      @import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/disable-static-drawer.css');
       

    OLED
    • Code:
      @import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/theme-oled.css');

    Seafoam
    • Code:
      @import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/theme-seafoam.css');
    • [Image: seafoam.png?raw=true]

    Coral
    • Code:
      @import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/theme-coral.css');
    • [Image: coral.png?raw=true]

    Snow
    • Code:
      @import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/theme-snow.css');
    • [Image: snow.png?raw=true]
    2
    1
    1
    Hooleyhill
    Offline

    Junior Member

    Posts: 5
    Threads: 0
    Joined: 2023 Jul
    Reputation: 0
    Country:United Kingdom
    #2
    2024-06-10, 06:51 AM
    Nice update.
    xiNe
    Offline

    Junior Member

    Posts: 16
    Threads: 2
    Joined: 2023 Jun
    Reputation: 0
    Country:Canada
    #3
    2024-08-18, 12:35 PM
    is it possible to enable the backdrop ONLY in the movie detail page?
    backdrop everywhere is kinda annoying...but i counldn't figure out a way to achieve it Confused-face
    Ted Hinklater
    Offline

    Member

    Posts: 188
    Threads: 8
    Joined: 2023 Nov
    Reputation: 25
    Country:United Kingdom
    #4
    2024-08-18, 12:52 PM (This post was last modified: 2024-08-18, 12:52 PM by Ted Hinklater.)
    (2024-08-18, 12:35 PM)xiNe Wrote: is it possible to enable the backdrop ONLY in the movie detail page?
    backdrop everywhere is kinda annoying...but i counldn't figure out a way to achieve it Confused-face

    You can add this to your CSS box after your @import line(s)

    Code:
    .itemsContainer.padded-left::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-size: cover;
        background-color: #626262 !important;
        opacity: 1;
        z-index: -1;
        background-attachment: fixed;
    }
    1
    1
    xiNe
    Offline

    Junior Member

    Posts: 16
    Threads: 2
    Joined: 2023 Jun
    Reputation: 0
    Country:Canada
    #5
    2024-08-19, 03:45 AM
    (2024-08-18, 12:52 PM)Ted Hinklater Wrote:
    (2024-08-18, 12:35 PM)xiNe Wrote: is it possible to enable the backdrop ONLY in the movie detail page?
    backdrop everywhere is kinda annoying...but i counldn't figure out a way to achieve it Confused-face

    You can add this to your CSS box after your @import line(s)

    Code:
    .itemsContainer.padded-left::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-size: cover;
        background-color: #626262 !important;
        opacity: 1;
        z-index: -1;
        background-attachment: fixed;
    }

    thanks. finally I found below way to hide it;

    .detailPageSecondaryContainer {
      background-clip: text
    }
    1
    luckey
    Offline

    Junior Member

    Posts: 6
    Threads: 1
    Joined: 2023 Sep
    Reputation: 0
    Country:Portugal
    #6
    2025-02-06, 01:21 AM
    Hello! Thank you so much for your theme! I've been using it for a long time, with some modifications I made. But after recent updates, it's showing me a "dark box" on the left side.

       

    This only happens in the Jellyfin Media Player... It looks normal on the web.

    Also, can you help me show images in the Details Page background instead of my custom background image?

    It should look like this:

       
    Kiekan
    Offline

    Junior Member

    Posts: 20
    Threads: 5
    Joined: 2024 Mar
    Reputation: 0
    Country:United States
    #7
    Yesterday, 05:13 PM (This post was last modified: Yesterday, 05:15 PM by Kiekan. Edited 1 time in total.)
    (2024-08-19, 03:45 AM)xiNe Wrote:
    (2024-08-18, 12:52 PM)Ted Hinklater Wrote:
    (2024-08-18, 12:35 PM)xiNe Wrote: is it possible to enable the backdrop ONLY in the movie detail page?
    backdrop everywhere is kinda annoying...but i counldn't figure out a way to achieve it Confused-face

    You can add this to your CSS box after your @import line(s)

    Code:
    .itemsContainer.padded-left::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-size: cover;
        background-color: #626262 !important;
        opacity: 1;
        z-index: -1;
        background-attachment: fixed;
    }

    thanks. finally I found below way to hide it;

    .detailPageSecondaryContainer {
      background-clip: text
    }

    It looks like this is no longer working on Jellyfin 10.11.X.

    For reference, I have the import CSS formatted as such:

    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
    }

    Is there any other way to only show the backdrops on the movie/show detail pages?
    Ted Hinklater
    Offline

    Member

    Posts: 188
    Threads: 8
    Joined: 2023 Nov
    Reputation: 25
    Country:United Kingdom
    #8
    Yesterday, 05:55 PM (This post was last modified: Yesterday, 05:57 PM by Ted Hinklater. Edited 1 time in total.)
    Wait I just realised, if you click your profile icon, go to Settings > Display, and disable Backdrops, it'll only show backdrops on the item detail page
    Ted Hinklater
    Offline

    Member

    Posts: 188
    Threads: 8
    Joined: 2023 Nov
    Reputation: 25
    Country:United Kingdom
    #9
    Yesterday, 06:00 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;
    }


    Wait I just realised, if you click your profile icon, go to Settings > Display, and disable Backdrops, it'll only show backdrops on the item detail page
    Kiekan
    Offline

    Junior Member

    Posts: 20
    Threads: 5
    Joined: 2024 Mar
    Reputation: 0
    Country:United States
    #10
    Yesterday, 08:28 PM (This post was last modified: Yesterday, 08:30 PM by Kiekan. Edited 2 times in total.)
    (Yesterday, 05:55 PM)Ted Hinklater Wrote: Wait I just realised, if you click your profile icon, go to Settings > Display, and disable Backdrops, it'll only show backdrops on the item detail page

    True. But you lose the transparency element that show the backdrop completely when you disable this function in the user settings.

    With backdrops disabled in the user settings:
    [Image: Screenshot-2025-11-08-142428.png]

    With backdrops enabled in user settings:
    [Image: Screenshot-2025-11-08-142516.png]

    I guess ultimately, I'm just looking for a way to remove that grey box that covers up the backdrop in the show/movie details page.
    Pages (2): 1 2 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