Browse Source

adguard tooltip fix. closes #96

pull/101/head
Marius 4 years ago
parent
commit
ad17cb7aae
  1. 23
      CSS/themes/adguard/adguard-base.css
  2. 3
      CSS/themes/adguard/aquamarine.css
  3. 3
      CSS/themes/adguard/dark.css
  4. 3
      CSS/themes/adguard/hotline.css
  5. 3
      CSS/themes/adguard/organizr-dark.css
  6. 3
      CSS/themes/adguard/plex.css
  7. 3
      CSS/themes/adguard/space-gray.css

23
CSS/themes/adguard/adguard-base.css

@ -95,11 +95,12 @@ a:-webkit-any-link:focus {
filter: invert(1); filter: invert(1);
} }
.header .btn-outline-secondary { .header .btn-outline-secondary {
color: var(--button-color); color: var(--text);
background: var(--button-color);
border-color: var(--button-color); border-color: var(--button-color);
} }
.header .btn-outline-secondary:hover { .header .btn-outline-secondary:hover {
color: var(--text); color: var(--text-hover);
background-color: var(--button-color-hover); background-color: var(--button-color-hover);
} }
.nav-tabs .nav-link.active { .nav-tabs .nav-link.active {
@ -150,18 +151,18 @@ a:-webkit-any-link:focus {
} }
/* BUTTONS */ /* BUTTONS */
.container .btn-outline-primary { .container .btn-outline-primary {
color: var(--button-color); color: var(--text);
background-color: transparent; background-color: var(--button-color);
background-image: none; background-image: none;
border-color: var(--button-color); border-color: var(--button-color);
} }
.container .btn-outline-primary:hover { .container .btn-outline-primary:hover {
color: var(--text); color: var(--text-hover);
background-color: var(--button-color-hover); background-color: var(--button-color-hover);
border-color: var(--button-color-hover); border-color: var(--button-color-hover);
} }
.tooltip-container { .tooltip-container {
background: var(--modal-bg-color); background: var(--tooltip-bg);
} }
/* CARDS*/ /* CARDS*/
.card { .card {
@ -169,6 +170,12 @@ a:-webkit-any-link:focus {
border: 1px solid rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.1);
color: var(--text); color: var(--text);
} }
.tooltip-custom__container {
background: var(--tooltip-bg);
}
.tooltip-custom__content-link {
color: var(--tooltip-link-color);
}
.card-wrap, .card-title-stats { .card-wrap, .card-title-stats {
color: inherit; color: inherit;
} }
@ -237,6 +244,9 @@ a:-webkit-any-link:focus {
.rt-tr-group.red { .rt-tr-group.red {
background-color: rgb(244 67 54 / 30%); background-color: rgb(244 67 54 / 30%);
} }
.rt-tr-group.blue {
background-color: rgb(54 146 244 / 30%);
}
.ReactTable .rt-noData { .ReactTable .rt-noData {
background: transparent; background: transparent;
} }
@ -261,6 +271,7 @@ a:-webkit-any-link:focus {
border-color: transparent; border-color: transparent;
-webkit-box-shadow: none; -webkit-box-shadow: none;
box-shadow: none; box-shadow: none;
background: #ffffff !important;
} }
.icon--selected { .icon--selected {
background-color: rgb(255 255 255 / 15%); background-color: rgb(255 255 255 / 15%);

3
CSS/themes/adguard/aquamarine.css

@ -21,7 +21,8 @@
--button-color-hover: #12afa0; --button-color-hover: #12afa0;
--accent-color: #009688; --accent-color: #009688;
--accent-color-hover: #12afa0; --accent-color-hover: #12afa0;
--tooltip-bg: #009688;
--tooltip-link-color: #f1c40f;
--text: #eee; --text: #eee;
--text-hover: #fff; --text-hover: #fff;
} }

3
CSS/themes/adguard/dark.css

@ -21,7 +21,8 @@
--button-color-hover: hsla(0,0%,100%,.30); --button-color-hover: hsla(0,0%,100%,.30);
--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);
--tooltip-bg: #1f1f1f;
--tooltip-link-color: #f1c40f;
--text: #eee; --text: #eee;
--text-hover: #fff; --text-hover: #fff;
} }

3
CSS/themes/adguard/hotline.css

@ -21,7 +21,8 @@
--button-color-hover: hsla(0,0%,100%,.30); --button-color-hover: hsla(0,0%,100%,.30);
--accent-color: #F44336; --accent-color: #F44336;
--accent-color-hover: #0b3161; --accent-color-hover: #0b3161;
--tooltip-bg: #F44336;
--tooltip-link-color: #0b3161;
--text: #eee; --text: #eee;
--text-hover: #fff; --text-hover: #fff;
} }

3
CSS/themes/adguard/organizr-dark.css

@ -21,7 +21,8 @@
--button-color-hover: rgb(44 171 227 / .8); --button-color-hover: rgb(44 171 227 / .8);
--accent-color: #2cabe3; --accent-color: #2cabe3;
--accent-color-hover: white; --accent-color-hover: white;
--tooltip-bg: #1b1b1b;
--tooltip-link-color: #2cabe3;
--text: #eee; --text: #eee;
--text-hover: #fff; --text-hover: #fff;
} }

3
CSS/themes/adguard/plex.css

@ -21,7 +21,8 @@
--button-color-hover: #e59029; --button-color-hover: #e59029;
--accent-color: #e5a00d; --accent-color: #e5a00d;
--accent-color-hover: #ffc107; --accent-color-hover: #ffc107;
--tooltip-bg: #1f1f1f;
--tooltip-link-color: #e5a00d;
--text: #eee; --text: #eee;
--text-hover: #fff; --text-hover: #fff;
} }

3
CSS/themes/adguard/space-gray.css

@ -21,7 +21,8 @@
--button-color-hover: #81a6b7; --button-color-hover: #81a6b7;
--accent-color: #607D8B; --accent-color: #607D8B;
--accent-color-hover: #81a6b7; --accent-color-hover: #81a6b7;
--tooltip-bg: #607D8B;
--tooltip-link-color: #f1c40f;
--text: #eee; --text: #eee;
--text-hover: #fff; --text-hover: #fff;
} }
Loading…
Cancel
Save