This commit is contained in:
tdurieux
2026-05-04 11:30:42 +02:00
parent 96d9f3cee6
commit f91db91cee
6 changed files with 106 additions and 9 deletions
+1 -1
View File
File diff suppressed because one or more lines are too long
+24 -1
View File
@@ -3657,10 +3657,33 @@ code {
background: var(--input-bg);
color: var(--input-color);
}
.paper-page .form-control:focus {
.paper-page .form-control:focus,
.paper-page .custom-select:focus {
color: var(--input-color);
background: var(--input-bg);
border-color: var(--accent);
box-shadow: 0 0 0 2px var(--accent-soft);
}
.form-control:focus,
.custom-select:focus,
input:focus,
textarea:focus,
select:focus {
color: var(--input-color) !important;
background-color: var(--input-bg) !important;
}
.form-control::selection,
input::selection,
textarea::selection {
background: var(--accent-soft);
color: var(--input-color);
}
.dark-mode .form-control::selection,
.dark-mode input::selection,
.dark-mode textarea::selection {
background: rgba(167, 178, 255, 0.30);
color: var(--input-color);
}
/* Primary/accent button variants */
.btn.btn-ink {