Commit 72645ee3 authored by Simon Knox's avatar Simon Knox

Fix some button border colors in dark mode

Remove border-white-light - it was only used by
emoji-menu which is now disabled by default.

The previous color was much too light, we can just
use the default border color instead. I'd ideally
like to remove the $border-white-normal variable
from light mode as well but maybe later.

Changelog: fixed
parent a3357f19
...@@ -480,7 +480,7 @@ body { ...@@ -480,7 +480,7 @@ body {
.btn:active, .btn:active,
.btn.active { .btn.active {
background-color: #444; background-color: #444;
border-color: #fafafa; border-color: #4f4f4f;
color: #fafafa; color: #fafafa;
} }
.btn svg { .btn svg {
......
...@@ -186,8 +186,7 @@ body.gl-dark { ...@@ -186,8 +186,7 @@ body.gl-dark {
} }
} }
$border-white-light: $gray-900; $border-white-normal: $border-color;
$border-white-normal: $gray-900;
$body-bg: $gray-10; $body-bg: $gray-10;
$input-bg: $white; $input-bg: $white;
......
...@@ -480,7 +480,7 @@ body { ...@@ -480,7 +480,7 @@ body {
.btn:active, .btn:active,
.btn.active { .btn.active {
background-color: #444; background-color: #444;
border-color: #fafafa; border-color: #4f4f4f;
color: #fafafa; color: #fafafa;
} }
.btn svg { .btn svg {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment