fix some CSS

This commit is contained in:
Michael Reber 2025-02-11 14:48:05 +01:00
parent 9979caa527
commit 07c6e2a62f
3 changed files with 12 additions and 15 deletions

0
db/.gitignore vendored Normal file → Executable file
View File

View File

@ -55,10 +55,6 @@
.sidebar-dark-primary .nav-link:hover {
background-color: #444444;
}
.card {
background-color: #2a2a2a;
color: #e0e0e0;
}
/* Dark mode for buttons */
.btn-outline-primary {
border-color: #4e73df;
@ -92,6 +88,12 @@
background-color: #555555;
border-color: #80bdff;
}
.table-success td {
border-color: #8fd19e;
}
.table-success > td, .table-success>th {
background-color: #00430f;
}
div.tagsinput span.tag {
border: 1px solid #22923c;
background: #181b16;
@ -100,8 +102,7 @@
div.tagsinput span.tag a {
color: #35d85b;
}
/* Modal dark mode */
.modal-content {
.modal-content, .card, table, .select2-dropdown {
background-color: #2a2a2a;
color: #e0e0e0;
}
@ -115,10 +116,6 @@
.nav-sidebar .nav-link.active {
background-color: #444;
}
/* Table dark mode */
table {
background-color: #2a2a2a;
}
table th, table td {
color: #e0e0e0;
border: 1px solid #444;

View File

@ -34,14 +34,14 @@ var (
// Default values and environment variable names.
const (
DefaultUsername = "admin"
DefaultPassword = "admin"
DefaultPassword = "swissmakers"
DefaultIsAdmin = true
DefaultServerAddress = "10.252.1.0/24"
DefaultServerPort = 51820
DefaultDNS = "1.1.1.1"
DefaultServerAddress = "10.8.0.0/24"
DefaultServerPort = 8443
DefaultDNS = "8.8.8.8"
DefaultMTU = 1450
DefaultPersistentKeepalive = 15
DefaultFirewallMark = "0xca6c" // e.g. 51820
DefaultFirewallMark = "0xca6c" // e.g. 8443
DefaultTable = "auto"
DefaultConfigFilePath = "/etc/wireguard/wg0.conf"
UsernameEnvVar = "WGM_USERNAME"