mirror of
https://github.com/lscambo13/ElegantFin.git
synced 2025-12-28 14:57:46 +00:00
Compare commits
5 Commits
beaf6415d0
...
9a60e664e5
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9a60e664e5 | ||
|
|
ab8627eb66 | ||
|
|
c7abd97dfb | ||
|
|
23542f197e | ||
|
|
5641b4c7d6 |
@@ -209,7 +209,8 @@ html {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.material-icons.info_outline:before {
|
.material-icons.info_outline:before {
|
||||||
font-family: Material Icons;
|
content: "\e88e";
|
||||||
|
font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dashboardFooter {
|
.dashboardFooter {
|
||||||
@@ -505,11 +506,82 @@ html {
|
|||||||
font-size: x-small;
|
font-size: x-small;
|
||||||
}
|
}
|
||||||
|
|
||||||
.listItem-largeImage[data-type="Episode"] .listViewUserDataButtons {
|
/* episode grid start */
|
||||||
|
|
||||||
|
.layout-desktop .detailSection > #listChildrenCollapsible .vertical-list,
|
||||||
|
.layout-desktop .detailPageContent > #childrenCollapsible .vertical-list {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(4, 1fr);
|
||||||
|
gap: var(--itemColumnGap);
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 100em) {
|
||||||
|
.layout-desktop .detailSection > #listChildrenCollapsible .vertical-list,
|
||||||
|
.layout-desktop .detailPageContent > #childrenCollapsible .vertical-list {
|
||||||
|
grid-template-columns: repeat(3, 1fr);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 64em) {
|
||||||
|
.layout-desktop .listItemImage-large {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.layout-desktop .detailSection > #listChildrenCollapsible .vertical-list,
|
||||||
|
.layout-desktop .detailPageContent > #childrenCollapsible .vertical-list {
|
||||||
|
grid-template-columns: repeat(2, 1fr);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 40em) {
|
||||||
|
.layout-desktop .detailSection > #listChildrenCollapsible .vertical-list,
|
||||||
|
.layout-desktop .detailPageContent > #childrenCollapsible .vertical-list {
|
||||||
|
grid-template-columns: repeat(1, 1fr);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout-desktop .listItem-largeImage {
|
||||||
|
display: grid;
|
||||||
|
margin-bottom: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout-desktop .listItem-largeImage > .listItem-content {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr 1fr 2em;
|
||||||
|
order: 1;
|
||||||
|
height: 100%;
|
||||||
|
align-items: start;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout-desktop .listItem-largeImage > .listItem-bottomoverview {
|
||||||
|
order: 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout-desktop .listItem-largeImage .listItemImage-large {
|
||||||
|
order: 1;
|
||||||
|
grid-column: 1 / -1;
|
||||||
|
height: max-content;
|
||||||
|
width: 100%;
|
||||||
|
aspect-ratio: 16 / 9;
|
||||||
|
/* margin: 0 !important; */
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout-desktop .listItem-largeImage .listItemBody {
|
||||||
|
order: 2;
|
||||||
|
grid-column: 1 / 3;
|
||||||
|
padding: 1em 0.125em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.layout-desktop .listItem-largeImage .listViewUserDataButtons {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
font-size: small;
|
font-size: small;
|
||||||
|
order: 2;
|
||||||
|
grid-column: 3;
|
||||||
|
align-self: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* episode grid end */
|
||||||
|
|
||||||
.portraitCard {
|
.portraitCard {
|
||||||
min-width: 5em;
|
min-width: 5em;
|
||||||
}
|
}
|
||||||
@@ -1909,17 +1981,20 @@ progress + span {
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.innerCardFooter,
|
||||||
|
.chapterCardImageContainer {
|
||||||
|
width: 100%;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
.innerCardFooter,
|
.innerCardFooter,
|
||||||
.chapterThumbTextContainer {
|
.chapterThumbTextContainer {
|
||||||
background: var(--cardFooterGradient);
|
background: var(--cardFooterGradient);
|
||||||
text-shadow: 0.1em 0.1em 0px black;
|
text-shadow: 0.1em 0.1em 0px black;
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
width: -webkit-fill-available;
|
|
||||||
height: -webkit-fill-available;
|
|
||||||
padding: 0em 2em 2em 2em;
|
padding: 0em 2em 2em 2em;
|
||||||
align-content: end;
|
align-content: end;
|
||||||
display: grid;
|
display: grid;
|
||||||
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chapterCardImageContainer {
|
.chapterCardImageContainer {
|
||||||
@@ -2459,9 +2534,19 @@ div[data-role="controlgroup"] a.ui-btn-active {
|
|||||||
background-color: rgba(255, 255, 255, 0.07);
|
background-color: rgba(255, 255, 255, 0.07);
|
||||||
}
|
}
|
||||||
|
|
||||||
[dir="ltr"] .listItem:not(.actionSheetMenuItem)[data-type="Episode"] .listItemBodyText:not(.secondary) {
|
/* [dir="ltr"] .listItem:not(.actionSheetMenuItem)[data-type="Episode"] .listItemBodyText:not(.secondary) {
|
||||||
font-size: 1.17em;
|
font-size: 1.17em;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
|
} */
|
||||||
|
|
||||||
|
.listItem-largeImage .listItemBodyText:not(.secondary) {
|
||||||
|
font-size: 1.17em;
|
||||||
|
font-weight: 600;
|
||||||
|
color: var(--textColor);
|
||||||
|
}
|
||||||
|
|
||||||
|
.listItemBodyText.secondary {
|
||||||
|
color: var(--dimTextColor);
|
||||||
}
|
}
|
||||||
|
|
||||||
.listItemBody > .listItemBodyText:not(.secondary) {
|
.listItemBody > .listItemBodyText:not(.secondary) {
|
||||||
@@ -3462,13 +3547,23 @@ ul.MuiList-root.MuiMenu-list.MuiList-dense > div:first-child {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* this :not() is needed to prevent affecting the mixed media libraries on the home page */
|
/* this :not() is needed to prevent affecting the mixed media libraries on the home page */
|
||||||
#homeTab .overflowBackdropCard[data-isfolder="true"]:not(.groupedCard) .cardPadder-overflowBackdrop {
|
/* #homeTab .overflowBackdropCard[data-isfolder="true"]:not(.groupedCard) .cardPadder-overflowBackdrop {
|
||||||
padding-bottom: 50%;
|
padding-bottom: 50%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#homeTab .overflowBackdropCard[data-isfolder="true"]:not(.groupedCard) .cardText-first,
|
#homeTab .overflowBackdropCard[data-isfolder="true"]:not(.groupedCard) .cardText-first,
|
||||||
#homeTab .overflowBackdropCard[data-isfolder="true"]:not(.groupedCard) .cardText.cardTextCentered {
|
#homeTab .overflowBackdropCard[data-isfolder="true"]:not(.groupedCard) .cardText.cardTextCentered {
|
||||||
display: var(--libraryLabelVisibility);
|
display: var(--libraryLabelVisibility);
|
||||||
|
} */
|
||||||
|
|
||||||
|
.overflowBackdropCard[data-type="CollectionFolder"] .cardPadder-overflowBackdrop,
|
||||||
|
.overflowBackdropCard[data-type="UserView"] .cardPadder-overflowBackdrop {
|
||||||
|
padding-bottom: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.overflowBackdropCard[data-type="CollectionFolder"] .cardText-first,
|
||||||
|
.overflowBackdropCard[data-type="UserView"] .cardText-first {
|
||||||
|
display: var(--libraryLabelVisibility);
|
||||||
}
|
}
|
||||||
|
|
||||||
.nowPlayingButtonsContainer {
|
.nowPlayingButtonsContainer {
|
||||||
|
|||||||
Reference in New Issue
Block a user