color adjustment for tables rows in darkmode

Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann
2022-09-17 12:12:22 +02:00
parent 11b1688ae6
commit 8f2fbe675a
2 changed files with 5 additions and 1 deletions

View File

@@ -71,3 +71,7 @@ section h5 {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
} }
} }
tr.bg-warning td {
color: $dark-bg !important;
}

View File

@@ -8,7 +8,7 @@
<h3>{{ lng('welcome.title') }}</h3> <h3>{{ lng('welcome.title') }}</h3>
<p class="lead mb-5">{{ lng('welcome.config_note') }}</p> <p class="lead mb-5">{{ lng('welcome.config_note') }}</p>
<a class="btn btn-lg btn-light text-info" href="{{ linker({'section': 'configfiles', 'page': 'configfiles'}) }}">{{ lng('welcome.config_now') }}</a> <a class="btn btn-lg btn-light text-info" href="{{ linker({'section': 'configfiles', 'page': 'configfiles'}) }}">{{ lng('welcome.config_now') }}</a>
<aside class="position-absolute bottom-0 end-0 p-5"> <aside class="position-absolute bottom-0 end-0 p-5 d-none d-md-block">
<i class="fa-solid fa-hat-wizard fa-5x"></i> <i class="fa-solid fa-hat-wizard fa-5x"></i>
</aside> </aside>
</div> </div>