From 5064c1ff73c2f0ea662351b26627f481ce0860a0 Mon Sep 17 00:00:00 2001 From: eclipse Date: Mon, 5 May 2025 19:17:12 +0200 Subject: [PATCH] added style for required form fields --- the_works/static/the_works.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/the_works/static/the_works.css b/the_works/static/the_works.css index fc00c2b..36a121c 100644 --- a/the_works/static/the_works.css +++ b/the_works/static/the_works.css @@ -2,6 +2,7 @@ nav { a { --pico-text-decoration: none; } + ul { margin-left: 0; margin-right: 0; @@ -74,4 +75,9 @@ table.dataTable td.action { svg { height: 1.5em; -} \ No newline at end of file +} + +.required:after { + content: " *"; + color: #cf0000; +}