Compare commits

..

No commits in common. "fc6d9fff2951f9df0e3e88e5ab2dda013940a206" and "a24bdd8e6c093e568fda48b7ff026c5fa4df641c" have entirely different histories.

2 changed files with 8 additions and 10 deletions

View File

@ -350,19 +350,17 @@ select.form-control:focus {
user-select: none; user-select: none;
} }
/* Config page checkboxes mirror the .form-control field box (same radius, /* Config page checkboxes */
padding, fill and border) so a toggle reads as the same field surface as the
inputs beside it instead of a lighter, slightly-off box. */
.checkbox-label { .checkbox-label {
display: flex; display: flex;
align-items: center; align-items: center;
cursor: pointer; cursor: pointer;
padding: 12px 16px; padding: 10px 16px;
min-height: 44px; min-height: 44px;
border-radius: 8px; border-radius: 10px;
transition: background 0.18s ease, border-color 0.18s ease; transition: background 0.18s ease, border-color 0.18s ease;
background: rgba(var(--text-rgb), 0.05); background: rgba(var(--text-rgb), 0.04);
border: 1px solid rgba(var(--text-rgb), 0.20); border: 1px solid rgba(var(--text-rgb), 0.10);
} }
/* In a multi-column config row the toggle cell only contains the /* In a multi-column config row the toggle cell only contains the

View File

@ -2078,9 +2078,9 @@ html[data-theme="nebula"]::after {
.domains-divider { .domains-divider {
width: 100%; width: 100%;
height: 1px; height: 2px;
background: rgba(var(--text-rgb), 0.08); background: var(--primary-color, var(--accent));
margin-bottom: 18px; margin-bottom: 20px;
} }
.add-domain-btn { .add-domain-btn {