summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorerdgeist <erdgeist@erdgeist.org>2026-07-17 01:59:40 +0200
committererdgeist <erdgeist@erdgeist.org>2026-07-17 01:59:40 +0200
commitea3f24f7376b1eb79b461d25765ed355278d700e (patch)
treeeec01b00268b8de05a21c1317bbd7049565642d2
parentc810d1aa93a267dd8fcf8984c5d0b125629efa31 (diff)
Give all text and password inputs border-radiiHEADmaster
-rw-r--r--public/stylesheets/admin.css5
1 files changed, 4 insertions, 1 deletions
diff --git a/public/stylesheets/admin.css b/public/stylesheets/admin.css
index 0aa22f8..128933b 100644
--- a/public/stylesheets/admin.css
+++ b/public/stylesheets/admin.css
@@ -37,10 +37,13 @@ td {
37 depend on this rule for vertical padding. table.node_table td resets 37 depend on this rule for vertical padding. table.node_table td resets
38 padding-top/bottom to 0 explicitly and does not depend on it. */ 38 padding-top/bottom to 0 explicitly and does not depend on it. */
39 39
40input[type=text], textarea { 40input[type=text],
41input[type=password],
42textarea {
41 font-size: 1rem; 43 font-size: 1rem;
42 font-family: Helvetica; 44 font-family: Helvetica;
43 border: 1px solid #989898; 45 border: 1px solid #989898;
46 border-radius: 2px;
44} 47}
45 48
46select { 49select {