From 6a47b385b7f27b3d6142e98c6458e24eafef7217 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 14 Aug 2024 18:10:09 +0200 Subject: [PATCH] CSS: Make form input elements use the entire width again Signed-off-by: Michael Tremer --- html/html/themes/ipfire/include/css/style.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/html/html/themes/ipfire/include/css/style.css b/html/html/themes/ipfire/include/css/style.css index 21bee31c09..645733b74a 100644 --- a/html/html/themes/ipfire/include/css/style.css +++ b/html/html/themes/ipfire/include/css/style.css @@ -335,7 +335,14 @@ table.form:last-child { } table.form tr td:first-child { - width: 30%; + width: 25%; +} + +table.form tr td input[type=text], +table.form tr td input[type=number], +table.form tr td select, +table.form tr td textarea { + width: 100%; } table.form tr.action td { -- 2.39.5