• 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 🍋️ ZestyTheme

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

     
    • 4 Vote(s) - 5 Average

    🍋️ ZestyTheme

    A minimal and elegant theme for Jellyfin
    M0RPH3US
    Offline

    Member

    Posts: 89
    Threads: 5
    Joined: 2023 Jun
    Reputation: 7
    #21
    2024-05-20, 07:31 PM
    (2024-05-18, 01:01 AM)ZestyJelly Wrote:
    (2024-05-17, 07:56 PM)M0RPH3US Wrote: I managed to tweak and make it work with the latest update 10.9.1

    I appreciate your hardwork on this theme.

    Awesome! Did you fork it on github or just made modifications to the code on your computer? I saw you also made personal modifications to it.
    I just updated to 10.9.1 and it borked my server, so I am trying to fix that rn. But I should get to tweaking the theme this weekend.

    Yes your are correct it is on my local cause I made some changes to the underlying code
    ndom91
    Offline

    Junior Member

    Posts: 3
    Threads: 1
    Joined: 2024 Mar
    Reputation: 0
    Country:Germany
    #22
    2024-05-21, 03:58 PM
    (2024-05-20, 07:31 PM)M0RPH3US Wrote:
    (2024-05-18, 01:01 AM)ZestyJelly Wrote:
    (2024-05-17, 07:56 PM)M0RPH3US Wrote: I managed to tweak and make it work with the latest update 10.9.1

    I appreciate your hardwork on this theme.

    Awesome! Did you fork it on github or just made modifications to the code on your computer? I saw you also made personal modifications to it.
    I just updated to 10.9.1 and it borked my server, so I am trying to fix that rn. But I should get to tweaking the theme this weekend.

    Yes your are correct it is on my local cause I made some changes to the underlying code

    This is still the repository, right? (https://github.com/stpnwf/ZestyTheme)

    Mind opening a PR with your changes 😊
    Web Dev
    ZestyJelly
    Offline

    Junior Member

    Posts: 22
    Threads: 1
    Joined: 2024 Mar
    Reputation: 3
    Country:Brazil
    #23
    2024-05-21, 04:18 PM
    (2024-05-21, 03:58 PM)ndom91 Wrote: This is still the repository, right? (https://github.com/stpnwf/ZestyTheme)

    Mind opening a PR with your changes 😊

    Yes, it is the right repo.

    No need for the PR, I am mostly done with the tweaks and will push it later today.
    ZestyJelly
    Offline

    Junior Member

    Posts: 22
    Threads: 1
    Joined: 2024 Mar
    Reputation: 3
    Country:Brazil
    #24
    2024-05-22, 04:29 AM
    Pushed it. It should be working on 10.9.x now!
    1
    SmileRapVEVO
    Offline

    Junior Member

    Posts: 2
    Threads: 1
    Joined: 2023 Sep
    Reputation: 0
    #25
    2024-05-27, 03:29 AM
    I have seen that when you put it in TV mode it does not work and it does not come out with the expected design.
    ZestyJelly
    Offline

    Junior Member

    Posts: 22
    Threads: 1
    Joined: 2024 Mar
    Reputation: 3
    Country:Brazil
    #26
    2024-05-27, 02:05 PM
    (2024-05-27, 03:29 AM)SmileRapVEVO Wrote: I have seen that when you put it in TV mode it does not work and it does not come out with the expected design.

    Yeah, I will get to tweaking it soon. But I don't have a 4K screen to test it on. So unsure how it will end up looking tbh.
    M0RPH3US
    Offline

    Member

    Posts: 89
    Threads: 5
    Joined: 2023 Jun
    Reputation: 7
    #27
    2024-05-28, 07:30 AM
    (2024-05-27, 02:05 PM)ZestyJelly Wrote:
    (2024-05-27, 03:29 AM)SmileRapVEVO Wrote: I have seen that when you put it in TV mode it does not work and it does not come out with the expected design.

    Yeah, I will get to tweaking it soon. But I don't have a 4K screen to test it on. So unsure how it will end up looking tbh.

    I found a bug. When you are using the web player in a mobile device, in landscape orientation the mainDrawer seems to peek out as shown in the attached picture. Managed to solve it using below snippet. I don't know if there is a cleaner way of doing this, but this solves it. 

    Code:
    /* Portrait orientation */
    @media only screen and (orientation: portrait) {
      .layout-mobile .mainDrawer {
        width: 65% !important;
      }
    }

    /* Landscape orientation */
    @media only screen and (orientation: landscape) {
      .layout-mobile .mainDrawer {
        width: 30% !important;
      }
    }


    Attached Files Thumbnail(s)
       
    ZestyJelly
    Offline

    Junior Member

    Posts: 22
    Threads: 1
    Joined: 2024 Mar
    Reputation: 3
    Country:Brazil
    #28
    2024-05-28, 01:42 PM
    (2024-05-28, 07:30 AM)M0RPH3US Wrote:
    (2024-05-27, 02:05 PM)ZestyJelly Wrote:
    (2024-05-27, 03:29 AM)SmileRapVEVO Wrote: I have seen that when you put it in TV mode it does not work and it does not come out with the expected design.

    Yeah, I will get to tweaking it soon. But I don't have a 4K screen to test it on. So unsure how it will end up looking tbh.

    I found a bug. When you are using the web player in a mobile device, in landscape orientation the mainDrawer seems to peek out as shown in the attached picture. Managed to solve it using below snippet. I don't know if there is a cleaner way of doing this, but this solves it. 

    Code:
    /* Portrait orientation */
    @media only screen and (orientation: portrait) {
      .layout-mobile .mainDrawer {
        width: 65% !important;
      }
    }

    /* Landscape orientation */
    @media only screen and (orientation: landscape) {
      .layout-mobile .mainDrawer {
        width: 30% !important;
      }
    }

    I just literally merged a PR fixing this. The fix was just using a 315px instead of 65%. Unsure if your fix is better than the one I just merged, but let me know if it doesn't fix it for you.
    I never use the JF mobile client in landscape mode, so I never saw this. I noticed other things break like the image at the top becomes very small. Your proposed fix gave me an idea of how to try to fix it. I will look into it when I have some time. Thanks.
    1
    M0RPH3US
    Offline

    Member

    Posts: 89
    Threads: 5
    Joined: 2023 Jun
    Reputation: 7
    #29
    2024-05-28, 06:09 PM
    (2024-05-28, 01:42 PM)ZestyJelly Wrote:
    (2024-05-28, 07:30 AM)M0RPH3US Wrote:
    (2024-05-27, 02:05 PM)ZestyJelly Wrote:
    (2024-05-27, 03:29 AM)SmileRapVEVO Wrote: I have seen that when you put it in TV mode it does not work and it does not come out with the expected design.

    Yeah, I will get to tweaking it soon. But I don't have a 4K screen to test it on. So unsure how it will end up looking tbh.

    I found a bug. When you are using the web player in a mobile device, in landscape orientation the mainDrawer seems to peek out as shown in the attached picture. Managed to solve it using below snippet. I don't know if there is a cleaner way of doing this, but this solves it. 

    Code:
    /* Portrait orientation */
    @media only screen and (orientation: portrait) {
      .layout-mobile .mainDrawer {
        width: 65% !important;
      }
    }

    /* Landscape orientation */
    @media only screen and (orientation: landscape) {
      .layout-mobile .mainDrawer {
        width: 30% !important;
      }
    }

    I just literally merged a PR fixing this. The fix was just using a 315px instead of 65%. Unsure if your fix is better than the one I just merged, but let me know if it doesn't fix it for you.
    I never use the JF mobile client in landscape mode, so I never saw this. I noticed other things break like the image at the top becomes very small. Your proposed fix gave me an idea of how to try to fix it. I will look into it when I have some time. Thanks.

    Ooh I will try that and will let you know. I thought reducing it will solve😅😅😅. My laptop is doing a chkdsk now, so I guess will be able to update u on this tomorrow. But dude it's an awesome theme. A real piece of beauty. I am just trying to make the episode list make a bit bigger, as in the thumbnails. I had it working earlier. Just not able to find the piece of code for it.


    Attached Files Thumbnail(s)
       
    1
    ZestyJelly
    Offline

    Junior Member

    Posts: 22
    Threads: 1
    Joined: 2024 Mar
    Reputation: 3
    Country:Brazil
    #30
    2024-05-28, 06:34 PM
    (2024-05-28, 06:09 PM)M0RPH3US Wrote:
    (2024-05-28, 01:42 PM)ZestyJelly Wrote:
    (2024-05-28, 07:30 AM)M0RPH3US Wrote:
    (2024-05-27, 02:05 PM)ZestyJelly Wrote:
    (2024-05-27, 03:29 AM)SmileRapVEVO Wrote: I have seen that when you put it in TV mode it does not work and it does not come out with the expected design.

    Yeah, I will get to tweaking it soon. But I don't have a 4K screen to test it on. So unsure how it will end up looking tbh.

    I found a bug. When you are using the web player in a mobile device, in landscape orientation the mainDrawer seems to peek out as shown in the attached picture. Managed to solve it using below snippet. I don't know if there is a cleaner way of doing this, but this solves it. 

    Code:
    /* Portrait orientation */
    @media only screen and (orientation: portrait) {
      .layout-mobile .mainDrawer {
        width: 65% !important;
      }
    }

    /* Landscape orientation */
    @media only screen and (orientation: landscape) {
      .layout-mobile .mainDrawer {
        width: 30% !important;
      }
    }

    I just literally merged a PR fixing this. The fix was just using a 315px instead of 65%. Unsure if your fix is better than the one I just merged, but let me know if it doesn't fix it for you.
    I never use the JF mobile client in landscape mode, so I never saw this. I noticed other things break like the image at the top becomes very small. Your proposed fix gave me an idea of how to try to fix it. I will look into it when I have some time. Thanks.

    Ooh I will try that and will let you know. I thought reducing it will solve😅😅😅. My laptop is doing a chkdsk now, so I guess will be able to update u on this tomorrow. But dude it's an awesome theme. A real piece of beauty. I am just trying to make the episode list make a bit bigger, as in the thumbnails. I had it working earlier. Just not able to find the piece of code for it.


    I am not sure what you mean by make the episode list bigger (inside Seasons?). Or do you mean make the thumbs in your screenshot wider like the Spotlight thing at the top?
    What is the Spotlight thing at the top BTW? is it an extension? Looks cool.
    Pages (5): « Previous 1 2 3 4 5 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