Browse Source

Fix Sonarr episode cut-off unmet color

pull/193/head
shadow58624 4 years ago
parent
commit
b551e9742e
  1. 2
      CSS/themes/sonarr/aquamarine.css
  2. 2
      CSS/themes/sonarr/dark.css
  3. 2
      CSS/themes/sonarr/hotline.css
  4. 2
      CSS/themes/sonarr/organizr-dark.css
  5. 2
      CSS/themes/sonarr/plex.css
  6. 11
      CSS/themes/sonarr/sonarr-base.css
  7. 2
      CSS/themes/sonarr/space-gray.css

2
CSS/themes/sonarr/aquamarine.css

@ -31,6 +31,7 @@
--accent-color: #009688; --accent-color: #009688;
--accent-color-hover: #12afa0; --accent-color-hover: #12afa0;
--accent-color-inverse: rgba(255, 255, 255, 0.85);
--queue-color: #009688; --queue-color: #009688;
--link-color: #0ed2bf; --link-color: #0ed2bf;
--link-color-hover: #fff; --link-color-hover: #fff;
@ -38,4 +39,5 @@
--text:#eee; --text:#eee;
--text-hover: #fff; --text-hover: #fff;
--text-muted: #999; --text-muted: #999;
--text-inverse:#009688;
} }

2
CSS/themes/sonarr/dark.css

@ -32,6 +32,7 @@
--accent-color: rgba(255, 255, 255, 0.25); --accent-color: rgba(255, 255, 255, 0.25);
--accent-color-hover: rgba(255, 255, 255, 0.45); --accent-color-hover: rgba(255, 255, 255, 0.45);
--accent-color-inverse: rgba(255, 255, 255, 0.85);
--queue-color: #6b5; --queue-color: #6b5;
--link-color: #ddd; --link-color: #ddd;
--link-color-hover: #fff; --link-color-hover: #fff;
@ -39,4 +40,5 @@
--text:#eee; --text:#eee;
--text-hover: #fff; --text-hover: #fff;
--text-muted: #999; --text-muted: #999;
--text-inverse:#595959;
} }

2
CSS/themes/sonarr/hotline.css

@ -31,6 +31,7 @@
--accent-color: #F44336; --accent-color: #F44336;
--accent-color-hover: #0b3161; --accent-color-hover: #0b3161;
--accent-color-inverse: rgba(255, 255, 255, 0.85);
--queue-color: #6b5; --queue-color: #6b5;
--link-color: #ddd; --link-color: #ddd;
--link-color-hover: #fff; --link-color-hover: #fff;
@ -38,4 +39,5 @@
--text:#eee; --text:#eee;
--text-hover: #fff; --text-hover: #fff;
--text-muted: #999; --text-muted: #999;
--text-inverse:#F44336;
} }

2
CSS/themes/sonarr/organizr-dark.css

@ -31,6 +31,7 @@
--accent-color: #2cabe3; --accent-color: #2cabe3;
--accent-color-hover: white; --accent-color-hover: white;
--accent-color-inverse: rgba(255, 255, 255, 0.85);
--queue-color: #2cabe3; --queue-color: #2cabe3;
--link-color: #2cabe3; --link-color: #2cabe3;
--link-color-hover: #fff; --link-color-hover: #fff;
@ -38,4 +39,5 @@
--text:#96a2b4; --text:#96a2b4;
--text-hover: #fff; --text-hover: #fff;
--text-muted: #999; --text-muted: #999;
--text-inverse:#2cabe3;
} }

2
CSS/themes/sonarr/plex.css

@ -31,6 +31,7 @@
--accent-color: #e5a00d; --accent-color: #e5a00d;
--accent-color-hover: #ffc107; --accent-color-hover: #ffc107;
--accent-color-inverse: rgba(255, 255, 255, 0.85);
--queue-color: #27c24c; --queue-color: #27c24c;
--link-color: #e5a00d; --link-color: #e5a00d;
--link-color-hover: #fff; --link-color-hover: #fff;
@ -38,4 +39,5 @@
--text:#eee; --text:#eee;
--text-hover: #fff; --text-hover: #fff;
--text-muted: #999; --text-muted: #999;
--text-inverse:#e5a00d;
} }

11
CSS/themes/sonarr/sonarr-base.css

@ -367,11 +367,16 @@ a:hover {
color: var(--text-hover) !important; color: var(--text-hover) !important;
} }
[class*="Label\/default\/"], [class*="Label\/default\/"] {
[class*="Label\/inverse\/"] {
border-color: var(--accent-color); border-color: var(--accent-color);
background-color: var(--accent-color); background-color: var(--accent-color);
color: #fff; color: var(--text);
}
[class*="Label\/inverse\/"] {
border-color: var(--accent-color-inverse);
background-color: var(--accent-color-inverse);
color: var(--text-inverse);
} }
[class*="Label\/info\/"] { [class*="Label\/info\/"] {

2
CSS/themes/sonarr/space-gray.css

@ -31,6 +31,7 @@
--accent-color: #607D8B; --accent-color: #607D8B;
--accent-color-hover: #81a6b7; --accent-color-hover: #81a6b7;
--accent-color-inverse: rgba(255, 255, 255, 0.85);
--queue-color: #81a6b7; --queue-color: #81a6b7;
--link-color: #81a6b7; --link-color: #81a6b7;
--link-color-hover: #fff; --link-color-hover: #fff;
@ -38,4 +39,5 @@
--text:#eee; --text:#eee;
--text-hover: #fff; --text-hover: #fff;
--text-muted: #999; --text-muted: #999;
--text-inverse:#607D8B;
} }

Loading…
Cancel
Save