Remove CSS variable button-bg again

The variable is not as useful as I thought, since night mode uses a gradient anyway (and day mode is simply white).
This commit is contained in:
Matthias M 2021-05-23 19:39:57 +02:00
parent ef476b8fe3
commit 2e1066fb35
2 changed files with 1 additions and 3 deletions

View File

@ -2,7 +2,7 @@
.linkb {
display: inline-block;
background-color: var(--button-bg);
background-color: white;
border: 1px solid var(--medium-border);
@include button.btn-border-radius;
min-width: 28px;

View File

@ -5,7 +5,6 @@
--text-fg: black;
--window-bg: #ececec;
--frame-bg: white;
--button-bg: white;
--border: #aaa;
--medium-border: #b6b6b6;
--faint-border: #e7e7e7;
@ -37,7 +36,6 @@
--text-fg: white;
--window-bg: #2f2f31;
--frame-bg: #3a3a3a;
--button-bg: #666;
--border: #777;
--medium-border: #444;
--faint-border: #29292b;