From 6f2be29ab7df147dcdabf0a0c3b3059af952c3f5 Mon Sep 17 00:00:00 2001 From: andreas kainz Date: Sat, 12 Mar 2022 12:38:51 +0100 Subject: [PATCH] overwrite-vex.css use var colors Signed-off-by: andreas kainz Change-Id: Idddf62b6c8a3be87df4893d01fe1860d69ab7284 --- browser/css/notebookbar.css | 4 ++-- browser/css/override-vex.css | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/browser/css/notebookbar.css b/browser/css/notebookbar.css index 3190ce1f7..a8dadb115 100644 --- a/browser/css/notebookbar.css +++ b/browser/css/notebookbar.css @@ -495,8 +495,8 @@ .ui-drawing-area-loader { - border: 5px solid #f3f3f3; - border-top: 5px solid #d6d6d6; + border: 5px solid var(--color-border-lighter); + border-top: 5px solid var(--color-border); border-radius: 50%; width: 20px; height: 20px; diff --git a/browser/css/override-vex.css b/browser/css/override-vex.css index 562337b92..471a6404d 100644 --- a/browser/css/override-vex.css +++ b/browser/css/override-vex.css @@ -14,9 +14,9 @@ padding: 1px 2px; margin-right: 2px; font-size: 11px; - border: thin solid lightgray; + border: 1px solid var(--color-border-lighter); background: var(--color-background-lighter); - color: gray; + color: var(--color-text-lighter); box-sizing: border-box; vertical-align: top; font-weight: bold; @@ -36,7 +36,7 @@ /* TODO: remove specific z-index from our codebase so that the following line can also be removed */ z-index: 2000; - background-color: #1c5fa814; + background-color: var(--color-main-background); min-height: 100%; min-width: 100%; position: absolute; @@ -155,7 +155,7 @@ .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input{ 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; }