1
0
mirror of https://github.com/gilbN/theme.park.git synced 2024-09-11 19:32:24 +02:00

arr EnhancedSelectInput fixes

This commit is contained in:
Marius 2021-04-20 21:59:25 +02:00
parent 1ffc11e0fa
commit e294fd3a82
6 changed files with 87 additions and 81 deletions

View File

@ -572,15 +572,15 @@ a:hover {
}
.custom-selector .selector__control {
background-color: #00000040;
border-color: rgba(0, 0, 0, 0);
background-color: rgba(0, 0, 0, 0.25);
border-color: rgba(0, 0, 0, 0) !important;
color: #fff;
}
[class$="-singleValue"],
[class$="-placeholder"],
[class$="-indicatorContainer"] {
color: var(--text);
color: var(--text) !important;
}
[class$="-indicatorContainer"]:hover {

View File

@ -210,20 +210,24 @@ a:hover {
}
/* ADD NEW */
div[class*='EnhancedSelectInputOption'] {
background-color: #1e1e1e;
color: #fff;
}
div[class*='EnhancedSelectInputOption']:hover {
background-color: rgba(255, 255, 255, 0.08);
color: #fff;
}
[class*="EnhancedSelectInput-options-"] {
border: 1px solid #1e1e1e;
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 4px;
background-color: #1e1e1e;
background: var(--modal-bg-color);
}
[class*="EnhancedSelectInputOption-isSelected-"],
[class*="EnhancedSelectInputOption-isSelected-"]:hover {
background-color: rgba(255, 255, 255, 0.20) !important;
}
[class*="EnhancedSelectInputOption-option-"]:hover {
background-color: rgba(255, 255, 255, 0.08);
}
[class*="HintedSelectInputOption-hintText-"],
[class*="RootFolderSelectInputOption-freeSpace-"] {
color: var(--text);
}
/* SIDE MENU */
@ -508,23 +512,6 @@ div[class*='EnhancedSelectInputOption']:hover {
color: #FFF;
}
/* ADD NEW */
div[class*='EnhancedSelectInputOption'] {
background-color: #1e1e1e;
color: #fff;
}
div[class*='EnhancedSelectInputOption']:hover {
background-color: rgba(255, 255, 255, 0.08);
color: #fff;
}
[class*="EnhancedSelectInput-options-"] {
border: 1px solid #1e1e1e;
border-radius: 4px;
background-color: #1e1e1e;
}
/* SEARCH BAR */
[class*="Input-input-"],
[class*="AddNewArtist-searchIconContainer-"],

View File

@ -165,6 +165,7 @@ a:hover {
[class*="PageHeader-header-"] {
background-color: rgba(0, 0, 0, .35);
box-shadow: none;
}
/* SEARCH DROPDOWN HEADER */
@ -486,20 +487,23 @@ a:hover {
}
/* ADD NEW */
div[class*='EnhancedSelectInputOption'] {
background-color: #1e1e1e;
color: #fff;
}
div[class*='EnhancedSelectInputOption']:hover {
background-color: rgba(255, 255, 255, 0.08);
color: #fff;
}
[class*="EnhancedSelectInput-options-"] {
border: 1px solid #1e1e1e;
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 4px;
background-color: #1e1e1e;
background: var(--modal-bg-color);
}
[class*="EnhancedSelectInputOption-isSelected-"],
[class*="EnhancedSelectInputOption-isSelected-"]:hover {
background-color: rgba(255, 255, 255, 0.20) !important;
}
[class*="EnhancedSelectInputOption-option-"]:hover {
background-color: rgba(255, 255, 255, 0.08);
}
[class*="HintedSelectInputOption-hintText-"] {
color: var(--text);
}
/* SEARCH BAR */
@ -933,6 +937,11 @@ div[class*='EnhancedSelectInputOption']:hover {
}
/* ChartJS */
canvas.chartjs-render-monitor {
background: rgb(255, 255, 255, 0.05);
}
[class*="Stats-fullWidthChart-"],
[class*="Stats-halfWidthChart-"]{
background: rgba(0, 0, 0, .25) !important;
}
canvas {
filter: invert(1)
}

View File

@ -486,20 +486,23 @@ a:hover {
}
/* ADD NEW */
div[class*='EnhancedSelectInputOption'] {
background-color: #1e1e1e;
color: #fff;
}
div[class*='EnhancedSelectInputOption']:hover {
background-color: rgba(255, 255, 255, 0.08);
color: #fff;
}
[class*="EnhancedSelectInput-options-"] {
border: 1px solid #1e1e1e;
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 4px;
background-color: #1e1e1e;
background: var(--modal-bg-color);
}
[class*="EnhancedSelectInputOption-isSelected-"],
[class*="EnhancedSelectInputOption-isSelected-"]:hover {
background-color: rgba(255, 255, 255, 0.20) !important;
}
[class*="EnhancedSelectInputOption-option-"]:hover {
background-color: rgba(255, 255, 255, 0.08);
}
[class*="HintedSelectInputOption-hintText-"] {
color: var(--text);
}
/* SEARCH BAR */

View File

@ -210,20 +210,24 @@ a:hover {
}
/* ADD NEW */
div[class*='EnhancedSelectInputOption'] {
background-color: #1e1e1e;
color: #fff;
}
div[class*='EnhancedSelectInputOption']:hover {
background-color: rgba(255, 255, 255, 0.08);
color: #fff;
}
[class*="EnhancedSelectInput-options-"] {
border: 1px solid transparent;
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 4px;
background-color: #1e1e1e;
background: var(--modal-bg-color);
}
[class*="EnhancedSelectInputOption-isSelected-"],
[class*="EnhancedSelectInputOption-isSelected-"]:hover {
background-color: rgba(255, 255, 255, 0.20) !important;
}
[class*="EnhancedSelectInputOption-option-"]:hover {
background-color: rgba(255, 255, 255, 0.08);
}
[class*="HintedSelectInputOption-hintText-"],
[class*="RootFolderSelectInputOption-freeSpace-"] {
color: var(--text);
}
/* SIDE MENU */

View File

@ -479,20 +479,23 @@ a:hover {
}
/* ADD NEW */
div[class*='EnhancedSelectInputOption'] {
background-color: #1e1e1e;
color: #fff;
}
div[class*='EnhancedSelectInputOption']:hover {
background-color: rgba(255, 255, 255, 0.08);
color: var(--text-hover);
}
[class*="EnhancedSelectInput\/options\/"] {
border: 1px solid #1e1e1e;
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 4px;
background-color: #1e1e1e;
background: var(--modal-bg-color);
}
[class*="EnhancedSelectInputOption\/isSelected\/"],
[class*="EnhancedSelectInputOption\/isSelected\/"]:hover {
background-color: rgba(255, 255, 255, 0.20) !important;
}
[class*="EnhancedSelectInputOption\/option\/"]:hover {
background-color: rgba(255, 255, 255, 0.08);
}
[class*="HintedSelectInputOption\/hintText\/"],
[class*="RootFolderSelectInputOption\/freeSpace\/"] {
color: var(--text);
}
/* SEARCH BAR */