style: unify form element styles in common.css, redesign focus rings, refactor public search bar, tweak admin section

This commit is contained in:
Pontoporeia
2026-05-08 17:57:39 +02:00
parent 77fd282e29
commit 862ed02136
13 changed files with 355 additions and 376 deletions

View File

@@ -16,7 +16,7 @@
padding: var(--space-m);
background: var(--bg-secondary);
border: 1px solid var(--border-primary);
border-radius: 8px;
border-radius: var(--radius);
}
.access-req-stat-number {
@@ -63,7 +63,7 @@
.access-req-empty {
background: var(--bg-secondary);
border: 1px solid var(--border-primary);
border-radius: 8px;
border-radius: var(--radius);
padding: var(--space-xl);
text-align: center;
color: var(--text-secondary);
@@ -79,7 +79,7 @@
.access-req-card {
background: var(--bg-secondary);
border: 1px solid var(--border-primary);
border-radius: 8px;
border-radius: var(--radius);
padding: var(--space-m);
transition: box-shadow 0.2s;
}
@@ -97,7 +97,6 @@
}
.access-req-card__thesis h3 {
font-size: var(--step-1);
font-weight: 600;
color: var(--text-primary);
margin: 0 0 var(--space-3xs) 0;
@@ -171,7 +170,7 @@
.access-req-card__admin-notes {
background: var(--bg-primary);
padding: var(--space-s);
border-radius: 4px;
border-radius: var(--radius);
font-size: var(--step--1);
line-height: 1.6;
}
@@ -237,14 +236,7 @@
/* Dialog textarea/label enhancements */
.admin-dialog textarea {
width: 100%;
font-family: inherit;
font-size: var(--step--1);
padding: var(--space-2xs);
border: 1px solid var(--border-primary);
border-radius: 4px;
background: var(--bg-primary);
color: var(--text-primary);
resize: vertical;
margin: var(--space-s) 0;
}