overwrite-vex.css use var colors

Signed-off-by: andreas kainz <kainz.a@gmail.com>
Change-Id: Idddf62b6c8a3be87df4893d01fe1860d69ab7284
This commit is contained in:
andreas kainz 2022-03-12 12:38:51 +01:00 committed by Andreas_K
parent bb4f68be8b
commit 6f2be29ab7
2 changed files with 6 additions and 6 deletions

View file

@ -495,8 +495,8 @@
.ui-drawing-area-loader .ui-drawing-area-loader
{ {
border: 5px solid #f3f3f3; border: 5px solid var(--color-border-lighter);
border-top: 5px solid #d6d6d6; border-top: 5px solid var(--color-border);
border-radius: 50%; border-radius: 50%;
width: 20px; width: 20px;
height: 20px; height: 20px;

View file

@ -14,9 +14,9 @@
padding: 1px 2px; padding: 1px 2px;
margin-right: 2px; margin-right: 2px;
font-size: 11px; font-size: 11px;
border: thin solid lightgray; border: 1px solid var(--color-border-lighter);
background: var(--color-background-lighter); background: var(--color-background-lighter);
color: gray; color: var(--color-text-lighter);
box-sizing: border-box; box-sizing: border-box;
vertical-align: top; vertical-align: top;
font-weight: bold; font-weight: bold;
@ -36,7 +36,7 @@
/* TODO: remove specific z-index from our codebase /* TODO: remove specific z-index from our codebase
so that the following line can also be removed */ so that the following line can also be removed */
z-index: 2000; z-index: 2000;
background-color: #1c5fa814; background-color: var(--color-main-background);
min-height: 100%; min-height: 100%;
min-width: 100%; min-width: 100%;
position: absolute; position: absolute;
@ -155,7 +155,7 @@
.vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input{ .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input{
border-radius: var(--border-radius); border-radius: var(--border-radius);
box-shadow: inset 0 0 2px 0 lightgray; box-shadow: inset 0 0 2px 0 var(--color-box-shadow);
box-sizing: border-box; box-sizing: border-box;
} }