aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/sass/bootstrap.scss
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/sass/bootstrap.scss')
-rw-r--r--client/src/sass/bootstrap.scss10
1 files changed, 4 insertions, 6 deletions
diff --git a/client/src/sass/bootstrap.scss b/client/src/sass/bootstrap.scss
index 688407683..eed6abe41 100644
--- a/client/src/sass/bootstrap.scss
+++ b/client/src/sass/bootstrap.scss
@@ -42,14 +42,12 @@
42// --------------------------------------------------------------------------- 42// ---------------------------------------------------------------------------
43 43
44.dropdown-menu { 44.dropdown-menu {
45 color: pvar(--mainForegroundColor);
46 background-color: pvar(--mainBackgroundColor);
47
48 .dropdown-header { 45 .dropdown-header {
49 @include padding-left(1rem); 46 @include padding-left(1rem);
50 } 47 }
51 48
52 .dropdown-item { 49 .dropdown-item {
50 color: pvar(--mainForegroundColor);
53 padding: 3px 15px; 51 padding: 3px 15px;
54 52
55 &.active { 53 &.active {
@@ -271,7 +269,7 @@
271} 269}
272 270
273.btn-outline-secondary { 271.btn-outline-secondary {
274 border-color: $input-border-color; 272 border-color: pvar(--inputBorderColor);
275 273
276 &:focus-within, 274 &:focus-within,
277 &:focus, 275 &:focus,
@@ -342,7 +340,6 @@
342 } 340 }
343 341
344 .form-control-clear { 342 .form-control-clear {
345 color: rgba(0, 0, 0, 0.4);
346 display: flex; 343 display: flex;
347 justify-content: center; 344 justify-content: center;
348 align-items: center; 345 align-items: center;
@@ -350,9 +347,10 @@
350 font-size: 14px; 347 font-size: 14px;
351 position: absolute; 348 position: absolute;
352 right: .5rem; 349 right: .5rem;
350 opacity: 0.4;
353 351
354 &:hover { 352 &:hover {
355 color: rgba(0, 0, 0, 0.7); 353 opacity: 0.7;
356 cursor: pointer; 354 cursor: pointer;
357 } 355 }
358 } 356 }