Update dark.css

This commit is contained in:
Bard 2023-08-22 04:09:17 +08:00 committed by GitHub
parent 990f05845d
commit 2e324e803c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -138,7 +138,7 @@ header::after {
h2 { h2 {
color: #ccc; color: #ccc;
background: #2c323c; background: #2c323c;
border-radius: 11px; border-radius: 0.575rem;
} }
h3 { h3 {
@ -208,7 +208,7 @@ table>thead>tr>td {
fieldset>table>tbody>tr:nth-of-type(2n) { fieldset>table>tbody>tr:nth-of-type(2n) {
background-color: #2c323c; background-color: #2c323c;
border-radius: 11px; border-radius: 0.575rem;
} }
table>tbody>tr>td, table>tbody>tr>td,
@ -277,7 +277,7 @@ tr>th,
h3 { h3 {
color: #ccc; color: #ccc;
border-bottom: 0; border-bottom: 0;
border-radius: 11px; border-radius: 0.575rem;
} }
.cbi-progressbar { .cbi-progressbar {
@ -535,15 +535,16 @@ td.cbi-value-field var {
.cbi-input-reload, .cbi-input-reload,
.cbi-button-reload { .cbi-button-reload {
color: #fff !important; color: #fff !important;
background: darkolivegreen !important; background: #5e72e4 !important;
border-color: darkolivegreen !important; background: var(--dark-primary) !important;
border-color: #0000 !important;
} }
.cbi-button-reset, .cbi-button-reset,
.cbi-input-remove { .cbi-input-remove {
color: #fff !important; color: #fff !important;
background-color: darkorange !important; background-color: var(--red) !important;
border-color: darkorange !important; border-color: var(--red) !important;
} }
.cbi-page-actions .cbi-button-apply, .cbi-page-actions .cbi-button-apply,
@ -565,8 +566,8 @@ td.cbi-value-field var {
.cbi-button-neutral[value="Disable"] { .cbi-button-neutral[value="Disable"] {
font-weight: normal; font-weight: normal;
color: #fff; color: #fff;
border: thin solid darkorange !important; border: thin solid var(--red) !important;
background-color: darkorange !important; background-color: var(--red) !important;
} }
fieldset[id^="cbi-apply-"] { fieldset[id^="cbi-apply-"] {
@ -603,7 +604,7 @@ header .fill .status span[data-style="active"] {
background-color: #2c323c; background-color: #2c323c;
border-bottom: 0; border-bottom: 0;
box-shadow: none; box-shadow: none;
border-radius: 11px; border-radius: 0.575rem;
} }
td>.ifacebadge, td>.ifacebadge,
@ -622,8 +623,8 @@ td>.ifacebadge,
.cbi-button[value="Kill"], .cbi-button[value="Kill"],
.cbi-button[onclick="reboot(this)"], .cbi-button[onclick="reboot(this)"],
.cbi-button-neutral[value="Restart"] { .cbi-button-neutral[value="Restart"] {
border: thin solid darkorange !important; border: thin solid var(--red) !important;
background-color: darkorange !important; background-color: var(--red) !important;
} }
.cbi-section, .cbi-section,
@ -638,7 +639,7 @@ td>.ifacebadge,
[data-page="admin-system-opkg"] #maincontent>.container { [data-page="admin-system-opkg"] #maincontent>.container {
background: #2c323c !important; background: #2c323c !important;
/* box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.35); */ /* box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.35); */
border-radius: 11px; border-radius: 0.575rem;
} }
.cbi-section, .cbi-section,
@ -679,8 +680,8 @@ div[style="width:100%;height:300px;border:1px solid #000;background:#fff"] {
} }
[data-page="admin-system-flash"] .modal .danger { [data-page="admin-system-flash"] .modal .danger {
border: thin solid darkorange !important; border: thin solid var(--red) !important;
background-color: darkorange !important; background-color: var(--red) !important;
} }
.cbi-value input[type="password"]+.cbi-button-neutral { .cbi-value input[type="password"]+.cbi-button-neutral {
@ -888,3 +889,16 @@ div>.table>.tbody>.tr:nth-of-type(2n) {
background-color: #0000; background-color: #0000;
/* border-bottom: black 1px solid !important; */ /* border-bottom: black 1px solid !important; */
} }
.uci-change-list del,
.uci-change-legend-label del,
.uci-change-list ins,
.uci-change-legend-label ins {
color: #2c323c;
}
table,
.table {
background-color: #2c323c;
border-radius: 0.575rem;
}