Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions frontend/src/styles/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -751,8 +751,10 @@ main:has(.tracking) {
}

/* All text-like inputs, selects and textareas in a field share the same
recognisable box (checkboxes/radios keep their native look in .field-check). */
.field input:not([type='checkbox']):not([type='radio']):not(.date-field),
recognisable box (checkboxes/radios keep their native look in .field-check).
.combobox-input is excluded: its wrapper .searchable-select carries the box,
so bordering the inner input too would draw a double frame. */
.field input:not([type='checkbox']):not([type='radio']):not(.date-field):not(.combobox-input),
.field select,
.field textarea {
background: var(--color-bg);
Expand All @@ -770,7 +772,7 @@ main:has(.tracking) {
resize: vertical;
}

.field input:not([type='checkbox']):not([type='radio']):not(.date-field):focus-visible,
.field input:not([type='checkbox']):not([type='radio']):not(.date-field):not(.combobox-input):focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
border-color: var(--color-accent);
Expand Down
Loading