From c81e2b7f8bae803c399463e585d9d18d011bfa6e Mon Sep 17 00:00:00 2001 From: Linty Date: Thu, 26 Sep 2024 16:10:38 +0200 Subject: [PATCH] issue #2234 standardize input focus colors for input, select and textarea --- admin/themes/roma/theme.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/admin/themes/roma/theme.css b/admin/themes/roma/theme.css index 20f07c76b..b355d62fc 100644 --- a/admin/themes/roma/theme.css +++ b/admin/themes/roma/theme.css @@ -7,6 +7,14 @@ INPUT, select, textarea { color:#999; background-color: #444; } option[disabled] { background-color: #999; color: #444; } input[type="radio"], input[type="checkbox"] { background-color: transparent; } +input:focus, +select:focus, +textarea:focus { + outline-color: #ffa646; + outline-width: 1px; + outline-style: solid; +} + .showInfo { color:#666; } .showInfo:hover { color:#999; }