fix darkmode search, textarea, progress bars and list groups

This commit is contained in:
envoyr
2022-10-25 13:00:04 +02:00
parent 1f69ab7e3f
commit 3acc5457b2
4 changed files with 13 additions and 2 deletions

View File

@@ -20,7 +20,7 @@
width: 70vh; width: 70vh;
max-height: 50vh; max-height: 50vh;
background: #fff; background: $search-bg;
border: $border-color solid 1px; border: $border-color solid 1px;
border-radius: 0 0 $border-radius $border-radius; border-radius: 0 0 $border-radius $border-radius;

View File

@@ -20,6 +20,8 @@ $nav-link-color: $body-color;
// List groups // List groups
$list-group-bg: $gray-800; $list-group-bg: $gray-800;
$list-group-color: $body-color; $list-group-color: $body-color;
$list-group-hover-bg: $gray-700;
$list-group-action-color: $body-color;
// Navbar // Navbar
$navbar-bg: $gray-800; $navbar-bg: $gray-800;
@@ -51,3 +53,9 @@ $modal-content-bg: $gray-800;
$input-bg: $gray-900; $input-bg: $gray-900;
$input-border-color: $black; $input-border-color: $black;
$input-group-addon-bg: $gray-800; $input-group-addon-bg: $gray-800;
// Progress bar
$progress-bg: $gray-900;
// Search
$search-bg: $gray-800;

View File

@@ -80,3 +80,6 @@ $card-border-width: 0;
$heading-bg: $navbar-bg; $heading-bg: $navbar-bg;
$heading-color: $body-color; $heading-color: $body-color;
$heading-border-color: #dee2e6; $heading-border-color: #dee2e6;
// Search
$search-bg: $navbar-bg;

View File

@@ -25,7 +25,7 @@
{% if zonefile is not empty %} {% if zonefile is not empty %}
<div class="row"> <div class="row">
<div class="col-12"> <div class="col-12">
<textarea class="logcontent form-control bg-light" rows="25" cols="60" readonly>{{ zonefile }}</textarea> <textarea class="logcontent form-control" rows="25" cols="60" readonly>{{ zonefile }}</textarea>
</div> </div>
</div> </div>
{% endif %} {% endif %}