Spaces:
Running
Running
RemiFabre
commited on
Commit
·
88a01e0
1
Parent(s):
9f9ff6a
Fixed dropdown menu color for Chrome
Browse files
SimpleDances/static/style.css
CHANGED
|
@@ -141,9 +141,21 @@ select {
|
|
| 141 |
border-radius: 12px;
|
| 142 |
border: 1px solid rgba(255, 255, 255, 0.2);
|
| 143 |
background: rgba(255, 255, 255, 0.05);
|
|
|
|
| 144 |
color: #fff;
|
| 145 |
font-size: 1rem;
|
| 146 |
appearance: none;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 147 |
}
|
| 148 |
|
| 149 |
select:focus {
|
|
|
|
| 141 |
border-radius: 12px;
|
| 142 |
border: 1px solid rgba(255, 255, 255, 0.2);
|
| 143 |
background: rgba(255, 255, 255, 0.05);
|
| 144 |
+
background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
|
| 145 |
color: #fff;
|
| 146 |
font-size: 1rem;
|
| 147 |
appearance: none;
|
| 148 |
+
-webkit-appearance: none;
|
| 149 |
+
-moz-appearance: none;
|
| 150 |
+
}
|
| 151 |
+
|
| 152 |
+
select option {
|
| 153 |
+
color: #fff;
|
| 154 |
+
background-color: #101219;
|
| 155 |
+
}
|
| 156 |
+
|
| 157 |
+
select option:checked {
|
| 158 |
+
background-color: #1d2331;
|
| 159 |
}
|
| 160 |
|
| 161 |
select:focus {
|