CSS improvements to make the Config page look less different.

This commit is contained in:
Herbert Wolverson 2024-07-25 14:38:31 -05:00
parent 6d08b0e3d1
commit bd9e4b71da
2 changed files with 15 additions and 2 deletions

View File

@ -17,7 +17,7 @@
<div class="d-flex align-items-start">
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
<div class="nav flex-column nav-pills me-3 bg-body-tertiary" id="v-pills-tab" role="tablist" aria-orientation="vertical">
<button class="nav-link active" id="v-pills-home-tab" data-bs-toggle="pill"
data-bs-target="#v-pills-home" type="button" role="tab" aria-controls="v-pills-home"
aria-selected="true"><i class="fa fa-server"></i> General

View File

@ -156,4 +156,17 @@ table tr td {
}
table tr td a {
color: var(--bs-secondary-color);
}
}
/* For the config panel */
.nav-pills .nav-link {
color: var(--bs-secondary-color);
}
.nav-pills .nav-link.active {
color: var(--bs-info);
font-weight: bold;
}
.nav-pills .nav-link.active {
background-color: var(--bs-tertiary-bg);
}