mirror of
https://github.com/loof2736/scyfin.git
synced 2025-11-03 07:58:52 +01:00
Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d69ca9a5c5 | ||
|
|
15baa1ba63 | ||
|
|
b5f2fee628 | ||
|
|
a6963bb1b5 | ||
|
|
caf1875ecb | ||
|
|
d43d697a15 | ||
|
|
d9b6ecc0a5 | ||
|
|
dcfea25d62 | ||
|
|
5fff995570 | ||
|
|
a587163d43 | ||
|
|
0d6f173b43 | ||
|
|
e49cb8308c | ||
|
|
24a5320302 |
@ -73,7 +73,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Re-enable home button */
|
/* Re-enable home button */
|
||||||
.layout-desktop body:not(.hideMainDrawer) .headerHomeButton {
|
.layout-desktop body:not(.hideMainDrawer) .skinHeader:not(.noHomeButtonHeader) .headerHomeButton {
|
||||||
display: block !important;
|
display: block !important;
|
||||||
}
|
}
|
||||||
.layout-desktop body:not(.hideMainDrawer) .dashboardDocument .headerHomeButton {
|
.layout-desktop body:not(.hideMainDrawer) .dashboardDocument .headerHomeButton {
|
||||||
|
|||||||
@ -135,10 +135,6 @@ progress::-webkit-progress-value {
|
|||||||
.layout-desktop .hideMainDrawer .mainDrawer {
|
.layout-desktop .hideMainDrawer .mainDrawer {
|
||||||
left: -320px !important;
|
left: -320px !important;
|
||||||
}
|
}
|
||||||
/* Fix for scroll menus on home page */
|
|
||||||
.emby-scroller {
|
|
||||||
margin-right: -2% !important;
|
|
||||||
}
|
|
||||||
/* Fix for collection items misalignment */
|
/* Fix for collection items misalignment */
|
||||||
.layout-desktop .collectionItems .collectionItemsContainer {
|
.layout-desktop .collectionItems .collectionItemsContainer {
|
||||||
padding-left: 0% !important;
|
padding-left: 0% !important;
|
||||||
@ -780,6 +776,33 @@ html,
|
|||||||
.defaultCardBackground5 {
|
.defaultCardBackground5 {
|
||||||
background-color: var(--primary-alt5) !important;
|
background-color: var(--primary-alt5) !important;
|
||||||
}
|
}
|
||||||
|
/* Modify padding for textarea items so the bottom isn't cut off */
|
||||||
|
textarea {
|
||||||
|
padding-bottom: 10px !important;
|
||||||
|
}
|
||||||
|
/* Background behind dashboard dropdown navigation buttons */
|
||||||
|
@supports selector(:has(*)) {
|
||||||
|
.MuiListItem-root:has(.MuiSvgIcon-root[data-testid^="Expand"])::before {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
background: #121212;
|
||||||
|
inset: 1px -5px 0px -5px;
|
||||||
|
border-radius: 25px;
|
||||||
|
opacity: 0;
|
||||||
|
transition: inset 0.25s ease-out, opacity 0.01s 0.25s;
|
||||||
|
}
|
||||||
|
.MuiListItem-root:has(.MuiSvgIcon-root[data-testid="ExpandLessIcon"])::before {
|
||||||
|
inset: 0px -5px -190px -5px;
|
||||||
|
opacity: 1;
|
||||||
|
transition: inset 0.25s ease-out, opacity 0.01s;
|
||||||
|
}
|
||||||
|
.MuiListItemButton-root:has(.MuiSvgIcon-root[data-testid="ExpandLessIcon"]) {
|
||||||
|
transform: scale(1.05) !important;
|
||||||
|
}
|
||||||
|
.MuiCollapse-root.MuiCollapse-vertical.MuiCollapse-entered {
|
||||||
|
padding-bottom: 5px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -813,8 +836,13 @@ html,
|
|||||||
|
|
||||||
/* Resize show/movie image on details page */
|
/* Resize show/movie image on details page */
|
||||||
.layout-desktop .detailImageContainer .card {
|
.layout-desktop .detailImageContainer .card {
|
||||||
top: 9em !important;
|
top: 1.8em !important;
|
||||||
width: 18.3vw !important;
|
width: 18.3vw !important;
|
||||||
|
position: absolute !important;
|
||||||
|
}
|
||||||
|
/* Legacy style to not break pre-10.11.X */
|
||||||
|
.layout-desktop .infoWrapper .detailImageContainer .card {
|
||||||
|
top: 9em !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Re-position content on details page */
|
/* Re-position content on details page */
|
||||||
@ -823,6 +851,7 @@ html,
|
|||||||
}
|
}
|
||||||
.layout-desktop .detailPageContent {
|
.layout-desktop .detailPageContent {
|
||||||
padding-left: 3.3% !important;
|
padding-left: 3.3% !important;
|
||||||
|
padding-right: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Re-position logo */
|
/* Re-position logo */
|
||||||
@ -880,6 +909,11 @@ html,
|
|||||||
padding: 40px 20px 10px 20px !important;
|
padding: 40px 20px 10px 20px !important;
|
||||||
margin-top: 50px !important;
|
margin-top: 50px !important;
|
||||||
}
|
}
|
||||||
|
@supports selector(:has(*)) {
|
||||||
|
.layout-desktop .detailPageWrapperContainer:not(:has(.itemMiscInfo-primary .mediaInfoItem)) .detailSectionContent {
|
||||||
|
padding: 0px 20px 10px 20px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
.layout-mobile .detailSectionContent {
|
.layout-mobile .detailSectionContent {
|
||||||
background: var(--secondary-background-color) !important;
|
background: var(--secondary-background-color) !important;
|
||||||
border-radius: var(--rounded-cards) !important;
|
border-radius: var(--rounded-cards) !important;
|
||||||
@ -908,6 +942,10 @@ html,
|
|||||||
.layout-desktop .detailPagePrimaryContainer {
|
.layout-desktop .detailPagePrimaryContainer {
|
||||||
padding-left: 3.3% !important;
|
padding-left: 3.3% !important;
|
||||||
}
|
}
|
||||||
|
/* Fix for title position on 10.11.X */
|
||||||
|
.layout-desktop [dir="ltr"] .detailPagePrimaryContainer:not(.detailRibbon) .detailRibbon {
|
||||||
|
padding-left: unset !important;
|
||||||
|
}
|
||||||
.layout-desktop .nameContainer {
|
.layout-desktop .nameContainer {
|
||||||
position: absolute !important;
|
position: absolute !important;
|
||||||
margin-top: -48px !important;
|
margin-top: -48px !important;
|
||||||
@ -1022,7 +1060,7 @@ html,
|
|||||||
background-size: contain !important;
|
background-size: contain !important;
|
||||||
border-radius: var(--rounded-cards);
|
border-radius: var(--rounded-cards);
|
||||||
}
|
}
|
||||||
/* Move up content if no backdrop image is present
|
/* Move up content if no backdrop image is present - I might make this work at some point, right now it causes the page to jump around when it is loading
|
||||||
@supports selector(:has(*)) {
|
@supports selector(:has(*)) {
|
||||||
.layout-desktop:not(:has(.backdropContainer .backdropImage)) #itemBackdrop {
|
.layout-desktop:not(:has(.backdropContainer .backdropImage)) #itemBackdrop {
|
||||||
height: 20vh !important;
|
height: 20vh !important;
|
||||||
@ -1031,6 +1069,7 @@ html,
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* Live TV */
|
/* Live TV */
|
||||||
/* Modified background color of active guide cells */
|
/* Modified background color of active guide cells */
|
||||||
.programCell-active {
|
.programCell-active {
|
||||||
@ -1133,7 +1172,7 @@ html,
|
|||||||
.layout-desktop #loginPage .padded-left.padded-right.padded-bottom-page.margin-auto-y:not(:has(.loginDisclaimer p)) {
|
.layout-desktop #loginPage .padded-left.padded-right.padded-bottom-page.margin-auto-y:not(:has(.loginDisclaimer p)) {
|
||||||
padding-bottom: 100px !important;
|
padding-bottom: 100px !important;
|
||||||
}
|
}
|
||||||
|
/* Move cancel button */
|
||||||
.layout-desktop #loginPage .manualLoginForm .btnCancel {
|
.layout-desktop #loginPage .manualLoginForm .btnCancel {
|
||||||
position: absolute !important;
|
position: absolute !important;
|
||||||
background: none !important;
|
background: none !important;
|
||||||
@ -1142,6 +1181,12 @@ html,
|
|||||||
margin-top: 70px !important;
|
margin-top: 70px !important;
|
||||||
text-align: left !important;
|
text-align: left !important;
|
||||||
}
|
}
|
||||||
|
/* Shift cancel button on JMP */
|
||||||
|
@supports not selector(:has(*)) {
|
||||||
|
.layout-desktop #loginPage .manualLoginForm .btnCancel {
|
||||||
|
margin-top: 115px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
.layout-desktop #loginPage .visualLoginForm {
|
.layout-desktop #loginPage .visualLoginForm {
|
||||||
position: relative !important;
|
position: relative !important;
|
||||||
background: var(--secondary-background-color) !important;
|
background: var(--secondary-background-color) !important;
|
||||||
|
|||||||
59
README.md
59
README.md
@ -7,35 +7,52 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
### **Scyfin Base Theme**
|
### **Scyfin Base Theme**
|
||||||
|
```
|
||||||
|
@import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/scyfin-theme.css');
|
||||||
|
```
|
||||||
|
|
||||||
<img src="./images/homepage.png" alt="homepage" width="100%"/>
|
<img src="./images/homepage.png" alt="homepage" width="100%"/>
|
||||||
<img src="./images/homepage-backdrops.png" alt="homepage-backdrops" width="100%"/>
|
<img src="./images/homepage-backdrops.png" alt="homepage-backdrops" width="100%"/>
|
||||||
<img src="./images/details.png" alt="details" width="100%"/>
|
<img src="./images/details.png" alt="details" width="100%"/>
|
||||||
<img src="./images/details-backdrops.png" alt="details-backdrops" width="100%"/>
|
<img src="./images/details-backdrops.png" alt="details-backdrops" width="100%"/>
|
||||||
<img src="./images/movies.png" alt="movies" width="100%"/>
|
<img src="./images/movies.png" alt="movies" width="100%"/>
|
||||||
<img src="./images/dashboard.png" alt="dashboard" width="100%"/>
|
|
||||||
<img src="./images/login.png" alt="login" width="100%"/>
|
<img src="./images/login.png" alt="login" width="100%"/>
|
||||||
|
|
||||||
### Base Theme
|
---
|
||||||
`@import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/scyfin-theme.css');`
|
|
||||||
|
|
||||||
### Options (Add these below the base theme)
|
### **Options (Add these below the base theme)**
|
||||||
- Disable static left drawer
|
### Disable static left drawer
|
||||||
- `@import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/disable-static-drawer.css');`
|
```
|
||||||
- Themes:
|
@import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/disable-static-drawer.css');
|
||||||
- Seafoam
|
```
|
||||||
- `@import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/theme-seafoam.css');`
|
|
||||||
- <img src="./images/seafoam.png" alt="seafoam-theme" width="40%"/>
|
---
|
||||||
- Coral
|
|
||||||
- `@import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/theme-coral.css');`
|
### **Themes:**
|
||||||
- <img src="./images/coral.png" alt="coral-theme" width="40%"/>
|
### Seafoam
|
||||||
- Snow
|
```
|
||||||
- `@import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/theme-snow.css');`
|
@import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/theme-seafoam.css');
|
||||||
- <img src="./images/snow.png" alt="snow-theme" width="40%"/>
|
```
|
||||||
- OLED
|
<img src="./images/seafoam.png" alt="seafoam-theme" width="40%"/>
|
||||||
- `@import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/theme-oled.css');`
|
|
||||||
- <img src="./images/homepage-oled.png" alt="homepage-oled" width="100%"/>
|
### Coral
|
||||||
- <img src="./images/details-oled.png" alt="details-oled" width="100%"/>
|
```
|
||||||
|
@import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/theme-coral.css');
|
||||||
|
```
|
||||||
|
<img src="./images/coral.png" alt="coral-theme" width="40%"/>
|
||||||
|
|
||||||
|
### Snow
|
||||||
|
```
|
||||||
|
@import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/theme-snow.css');
|
||||||
|
```
|
||||||
|
<img src="./images/snow.png" alt="snow-theme" width="40%"/>
|
||||||
|
|
||||||
|
### OLED
|
||||||
|
```
|
||||||
|
@import url('https://cdn.jsdelivr.net/gh/loof2736/scyfin@latest/CSS/theme-oled.css');
|
||||||
|
```
|
||||||
|
<img src="./images/homepage-oled.png" alt="homepage-oled" width="90%"/>
|
||||||
|
<img src="./images/details-oled.png" alt="details-oled" width="90%"/>
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
@ -46,7 +63,7 @@
|
|||||||
**Server-wide install:**
|
**Server-wide install:**
|
||||||
* Click the hamburger icon (Top left)
|
* Click the hamburger icon (Top left)
|
||||||
* Navigate to "Dashboard" (If you don't see this, make sure you are signed in to your admin account)
|
* Navigate to "Dashboard" (If you don't see this, make sure you are signed in to your admin account)
|
||||||
* Navigate to "General"
|
* Navigate to "Branding"
|
||||||
* Near the bottom, under "Custom CSS code", paste the `@import url` for the base Scyfin theme
|
* Near the bottom, under "Custom CSS code", paste the `@import url` for the base Scyfin theme
|
||||||
* Example:
|
* Example:
|
||||||
* <img src="./images/install-server-base.png" alt="install-server-base" width="80%"/>
|
* <img src="./images/install-server-base.png" alt="install-server-base" width="80%"/>
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 23 KiB |
Loading…
Reference in New Issue
Block a user