Update colours (search results & select boxes) to match theme (#1482)
* update colors to match theme * fixed issues with light theme * readded line that was accidentally deleted * update colour to match search bar * update profile selector & dropdown * increase blur on ft-profile-selector box shadow * don't change search suggestion background color to primary color Co-authored-by: Preston <freetubeapp@protonmail.com>
This commit is contained in:
parent
56b562966f
commit
b1a310ef09
|
@ -146,9 +146,8 @@
|
||||||
padding: 5px 0;
|
padding: 5px 0;
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
border-radius: 0 0 5px 5px;
|
border-radius: 0 0 5px 5px;
|
||||||
border: 1px #ccc solid;
|
box-shadow: 0 0 10px var(--scrollbar-color-hover);
|
||||||
background-color: white;
|
background-color: var(--search-bar-color);
|
||||||
color: black;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.list li {
|
.list li {
|
||||||
|
@ -158,7 +157,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.hover {
|
.hover {
|
||||||
background-color: #ccc;
|
background-color: var(--scrollbar-color-hover);
|
||||||
/* color: white; */
|
/* color: white; */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -61,7 +61,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.buttonOption:hover {
|
.buttonOption:hover {
|
||||||
background-color: var(--card-bg-color);
|
background-color: var(--search-bar-color);
|
||||||
-moz-transition: background 0.2s ease-in;
|
-moz-transition: background 0.2s ease-in;
|
||||||
-o-transition: background 0.2s ease-in;
|
-o-transition: background 0.2s ease-in;
|
||||||
transition: background 0.2s ease-in;
|
transition: background 0.2s ease-in;
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
height: 400px;
|
height: 400px;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
background-color: var(--card-bg-color);
|
background-color: var(--card-bg-color);
|
||||||
box-shadow: 0 1px 2px rgba(0,0,0,.1);
|
box-shadow: 0 0 4px var(--scrollbar-color-hover);
|
||||||
}
|
}
|
||||||
|
|
||||||
#profileList:focus {
|
#profileList:focus {
|
||||||
|
|
|
@ -41,7 +41,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.select option {
|
.select option {
|
||||||
color: #000000;
|
color: var(--secondary-text-color);
|
||||||
|
background-color: var(--card-bg-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Remove focus */
|
/* Remove focus */
|
||||||
|
|
|
@ -634,7 +634,7 @@ body {
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.rightAligned: {
|
.rightAligned {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue