Finalising consistency

This commit is contained in:
Silversthorn 2024-10-06 21:07:22 +02:00
parent 71f8170648
commit f3fe81feea
2 changed files with 15 additions and 25 deletions

View File

@ -9,8 +9,8 @@
height: 1.5rem; height: 1.5rem;
width: 3rem; width: 3rem;
border-radius: 1.5rem; border-radius: 1.5rem;
color: #6b7381; color: var(--gray);
background: #bdc1c8; background: var(--select-bg);
} }
.btn-toggle:focus, .btn-toggle:focus,
@ -52,7 +52,7 @@
width: 1.125rem; width: 1.125rem;
height: 1.125rem; height: 1.125rem;
border-radius: 1.125rem; border-radius: 1.125rem;
background: #fff; background: var(--white);
transition: left 0.25s; transition: left 0.25s;
} }
@ -76,7 +76,7 @@
.btn-toggle.btn-sm:before, .btn-toggle.btn-sm:before,
.btn-toggle.btn-sm:after { .btn-toggle.btn-sm:after {
line-height: -0.5rem; line-height: -0.5rem;
color: #fff; color: var(--white);
letter-spacing: 0.75px; letter-spacing: 0.75px;
left: 0.4125rem; left: 0.4125rem;
width: 2.325rem; width: 2.325rem;
@ -106,11 +106,11 @@
.btn-toggle:before, .btn-toggle:before,
.btn-toggle:after { .btn-toggle:after {
color: #6b7381; color: var(--gray);
} }
.btn-toggle.active { .btn-toggle.active {
background-color: #29b5a8; background-color: var(--success);
} }
.btn-toggle.btn-lg { .btn-toggle.btn-lg {
@ -162,7 +162,7 @@
width: 1.875rem; width: 1.875rem;
height: 1.875rem; height: 1.875rem;
border-radius: 1.875rem; border-radius: 1.875rem;
background: #fff; background: var(--white);
transition: left 0.25s; transition: left 0.25s;
} }
@ -186,7 +186,7 @@
.btn-toggle.btn-lg.btn-sm:before, .btn-toggle.btn-lg.btn-sm:before,
.btn-toggle.btn-lg.btn-sm:after { .btn-toggle.btn-lg.btn-sm:after {
line-height: 0.5rem; line-height: 0.5rem;
color: #fff; color: var(--white);
letter-spacing: 0.75px; letter-spacing: 0.75px;
left: 0.6875rem; left: 0.6875rem;
width: 3.875rem; width: 3.875rem;
@ -423,7 +423,7 @@
.btn-toggle.btn-info:before, .btn-toggle.btn-info:before,
.btn-toggle.btn-info:after { .btn-toggle.btn-info:after {
color: #6b7381; color: var(--gray);
} }
.btn-toggle.btn-info.active { .btn-toggle.btn-info.active {
@ -431,17 +431,17 @@
} }
.btn-toggle.btn-secondary { .btn-toggle.btn-secondary {
color: #6b7381; color: var(--gray);
background: #bdc1c8; background: var(--select-bg);
} }
.btn-toggle.btn-secondary:before, .btn-toggle.btn-secondary:before,
.btn-toggle.btn-secondary:after { .btn-toggle.btn-secondary:after {
color: #6b7381; color: var(--gray);
} }
.btn-toggle.btn-secondary.active { .btn-toggle.btn-secondary.active {
background-color: #ff8300; background-color: var(--warning);
} }
/**************************************************************/ /**************************************************************/

View File

@ -187,11 +187,11 @@ td::-webkit-scrollbar {
} }
.mc-log-error { .mc-log-error {
color: #af463f; color: var(--danger);
} }
.mc-log-fatal { .mc-log-fatal {
color: #da0f00; color: var(--red);
} }
.mc-log-keyword { .mc-log-keyword {
@ -212,16 +212,6 @@ body {
/* Firefox */ /* Firefox */
} }
/* Webkit */
/* Didn't really work out
::-webkit-scrollbar { background-color: #202538; }
::-webkit-scrollbar-button { background-color: #1D212F; }
::-webkit-scrollbar-thumb { background-color: #777A86; }
::-webkit-scrollbar-thumb:hover { background-color: #646773; }
::-webkit-scrollbar-track { background-color: #202538; }
::-webkit-scrollbar-corner { background-color: #202538; }*/
.actions_serverlist>a>i { .actions_serverlist>a>i {
cursor: pointer; cursor: pointer;
} }