From c6478857bcd4a40572edb42d273ab5a0f1e983cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Mon, 26 Jun 2023 23:01:32 +0200 Subject: [PATCH] Improved dark mode --- assets/css/app/helpers.css | 6 +++--- assets/css/app/layout.css | 2 -- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/assets/css/app/helpers.css b/assets/css/app/helpers.css index acc2682e..db9a02f4 100644 --- a/assets/css/app/helpers.css +++ b/assets/css/app/helpers.css @@ -79,7 +79,7 @@ ul.structural_link li { /* Add a slash symbol (/) before/behind each list item */ ul.structural_link li+li:before { padding: 2px; - color: grey; + color: var(--bs-tertiary-color); /*content: "/\00a0";*/ font-family: "Font Awesome 5 Free"; font-weight: 900; @@ -89,13 +89,13 @@ ul.structural_link li+li:before { /* Add a color to all links inside the list */ ul.structural_link li a { - color: #0275d8; + color: var(--bs-link-color); text-decoration: none; } /* Add a color on mouse-over */ ul.structural_link li a:hover { - color: #01447e; + color: var(--bs-link-hover-color); text-decoration: underline; } diff --git a/assets/css/app/layout.css b/assets/css/app/layout.css index 059fc131..e00c823c 100644 --- a/assets/css/app/layout.css +++ b/assets/css/app/layout.css @@ -78,8 +78,6 @@ body { overflow: -moz-scrollbars-none; /* Use standard version for hiding the scrollbar */ scrollbar-width: none; - - background-color: var(--light); } #sidebar-container {