-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Bug: Show image is displayed incorrectly #72, Feature Request: sh…
…ow all library tiles on home screen #70, and more
- Loading branch information
Showing
4 changed files
with
53 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,3 +33,7 @@ | |
transparent | ||
); | ||
} | ||
|
||
::selection { | ||
background: ab.$jf-blue-light; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,38 @@ | ||
/** @format */ | ||
|
||
@use "../abstract/variables" as ab; | ||
#indexPage{ | ||
.sectionTitle { | ||
display: flex; | ||
flex-direction: row; | ||
flex-wrap: nowrap; | ||
gap: 0.5em; | ||
color: white; | ||
align-items: center; | ||
font-size: 1.6em; | ||
&::before{ | ||
content: ""; | ||
width: 1.3em; | ||
height: 2px; | ||
background: white; | ||
} | ||
} | ||
.emby-scroller{ | ||
.emby-button:not(.cardOverlayButton){ | ||
margin-right: 1.2em; | ||
border-radius: ab.$rounding-default; | ||
background: ab.$background-dark; | ||
box-shadow: 0 0 15px rgb(0 0 0 / 0.2); | ||
overflow: hidden; | ||
&::after{ | ||
content: ""; | ||
width: 100%; | ||
height: 100%; | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
background: ab.$gradient-default; | ||
opacity: 0; | ||
transition: opacity ab.$transition-time-fast-1; | ||
z-index: -1; | ||
} | ||
&:hover::after{ | ||
opacity: 1; | ||
} | ||
} | ||
} | ||
} | ||
#indexPage { | ||
.sectionTitle { | ||
display: flex; | ||
flex-direction: row; | ||
flex-wrap: nowrap; | ||
gap: 0.5em; | ||
color: white; | ||
align-items: center; | ||
font-size: 1.6em; | ||
&::before { | ||
content: ""; | ||
width: 1.3em; | ||
height: 2px; | ||
background: white; | ||
} | ||
} | ||
.emby-scroller { | ||
.emby-button:not(.cardOverlayButton) { | ||
margin-right: 1.2em; | ||
border-radius: ab.$rounding-default; | ||
background: rgb(0 0 0 / 0.2); | ||
box-shadow: 0 0 0.5em rgb(0 0 0 / 0.75); | ||
overflow: hidden; | ||
&::after { | ||
all: unset; | ||
} | ||
&:hover { | ||
background: rgb(0 0 0 / 0.5); | ||
} | ||
} | ||
} | ||
.section0 .itemsContainer { | ||
flex-wrap: wrap; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters