Fixup Theme CSS

This commit is contained in:
Zak Saunders 2022-12-05 07:58:24 +00:00 committed by Qstick
parent 73a3e3f4e3
commit 92d885dd78
10 changed files with 26 additions and 24 deletions

View File

@ -2,7 +2,7 @@
margin-bottom: 20px;
border: 1px solid var(--borderColor);
border-radius: 4px;
background-color: var(--white);
background-color: var(--modalBackgroundColor);
&:last-of-type {
margin-bottom: 0;
@ -81,7 +81,7 @@
border-top: 1px solid var(--borderColor);
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
background-color: #fafafa;
background-color: var(--cardBackgroundColor);
text-align: center;
}

View File

@ -5,7 +5,7 @@
margin: 2px 4px;
border: 1px solid var(--borderColor);
border-radius: 4px;
background-color: var(--seasonBackgroundColor);
background-color: var(--albumBackgroundColor);
cursor: default;
}
@ -24,7 +24,7 @@
.tracks {
padding: 0 4px;
background-color: var(--episodesBackgroundColor);
background-color: var(--trackBackgroundColor);
color: var(--defaultColor);
}

View File

@ -1,5 +1,5 @@
.info {
background-color: var(--seriesBackgroundColor);
background-color: var(--artistBackgroundColor);
text-align: center;
font-size: $smallFontSize;
}

View File

@ -44,7 +44,7 @@ $hoverScale: 1.05;
}
.nextAiring {
background-color: var(--seriesBackgroundColor);
background-color: var(--artistBackgroundColor);
text-align: center;
font-size: $smallFontSize;
}
@ -52,7 +52,7 @@ $hoverScale: 1.05;
.title {
@add-mixin truncate;
background-color: var(--seriesBackgroundColor);
background-color: var(--artistBackgroundColor);
text-align: center;
font-size: $smallFontSize;
}

View File

@ -1,5 +1,5 @@
.info {
background-color: #fafbfc;
background-color: var(--artistBackgroundColor);
text-align: center;
font-size: $smallFontSize;
}

View File

@ -9,7 +9,7 @@
.underlay {
@add-mixin cover;
background-color: var(--addSeriesBackgroundColor);
background-color: var(--addArtistBackgroundColor);
transition: background 500ms;
&:hover {

View File

@ -9,13 +9,15 @@
.underlay {
@add-mixin cover;
background-color: var(--white);
background-color: var(--addArtistBackgroundColor);
transition: background 500ms;
&:hover {
background-color: #eaf2ff;
background-color: var(--pageBackground);
box-shadow: 0 0 12px var(--black);
color: inherit;
text-decoration: none;
transition: all 200ms ease-in;
}
}

View File

@ -218,18 +218,18 @@ module.exports = {
tableRowHoverBackgroundColor: 'rgba(255, 255, 255, 0.08)',
//
// Series
// Srtist
addSeriesBackgroundColor: '#2a2a2a',
seriesBackgroundColor: '#2a2a2a',
addArtistBackgroundColor: '#2a2a2a',
artistBackgroundColor: '#2a2a2a',
searchIconContainerBackgroundColor: '#2b2b2b',
collapseButtonBackgroundColor: '#2a2a2a',
//
// Season
// Album
seasonBackgroundColor: '#424242',
episodesBackgroundColor: '#2a2a2a',
albumBackgroundColor: '#424242',
trackBackgroundColor: '#2a2a2a',
//
// misc

View File

@ -212,18 +212,18 @@ module.exports = {
tableRowHoverBackgroundColor: '#fafbfc',
//
// Series
// Atist
addSeriesBackgroundColor: '#ededed',
seriesBackgroundColor: '#ededed',
addArtistBackgroundColor: '#ededed',
artistBackgroundColor: '#ededed',
searchIconContainerBackgroundColor: offWhite,
collapseButtonBackgroundColor: offWhite,
//
// Season
// Album
seasonBackgroundColor: white,
episodesBackgroundColor: offWhite,
albumBackgroundColor: white,
trackBackgroundColor: offWhite,
//
// misc

View File

@ -2,7 +2,7 @@
margin-bottom: 20px;
border: 1px solid var(--borderColor);
border-radius: 4px;
background-color: var(--white);
background-color: var(--cardBackgroundColor);
&:last-of-type {
margin-bottom: 0;