From c1b35fd44dc762239901a79d9983a1d29f56b522 Mon Sep 17 00:00:00 2001 From: Matthieu Leproux Date: Fri, 7 May 2021 11:41:41 +0200 Subject: [PATCH] Fixes #1404 input for name and password has good hover now. --- admin/themes/default/template/user_list.tpl | 10 ---------- admin/themes/default/theme.css | 7 +++++++ admin/themes/roma/theme.css | 7 +++++++ 3 files changed, 14 insertions(+), 10 deletions(-) diff --git a/admin/themes/default/template/user_list.tpl b/admin/themes/default/template/user_list.tpl index ce166976f..73554d475 100644 --- a/admin/themes/default/template/user_list.tpl +++ b/admin/themes/default/template/user_list.tpl @@ -1505,14 +1505,9 @@ update_selection_content(); .user-property-input.user-property-input-username { border: solid 2px #ffa744; - background: none; padding: 9px; } -.user-property-input.user-property-input-username:hover { - background-color: #f0f0f0 !important; -} - .user-property-password-container { display:flex; flex-direction:column; @@ -1553,14 +1548,9 @@ update_selection_content(); .user-property-input.user-property-input-password { border: solid 2px #ffa744; - background: none; padding: 9px; } -.user-property-input.user-property-input-password:hover { - background-color: #f0f0f0 !important; -} - .user-property-register-visit { color:#A4A4A4; font-weight:bold; diff --git a/admin/themes/default/theme.css b/admin/themes/default/theme.css index a51861281..7459b110c 100644 --- a/admin/themes/default/theme.css +++ b/admin/themes/default/theme.css @@ -4996,4 +4996,11 @@ li.plupload_delete a:hover {background: url("images/cancelhover.svg")!important; .update-container { border-top:solid 1px #ddd; +} + +.user-property-input.user-property-input-username:hover { + background-color: #f0f0f0; +} +.user-property-input.user-property-input-password:hover { + background-color: #f0f0f0; } \ No newline at end of file diff --git a/admin/themes/roma/theme.css b/admin/themes/roma/theme.css index fb6b8c480..66374a342 100644 --- a/admin/themes/roma/theme.css +++ b/admin/themes/roma/theme.css @@ -1208,4 +1208,11 @@ li.plupload_delete a:hover {background: url("images/cancelhover.svg")!important; .update-container { border-top:solid 1px #333; +} + +.user-property-input.user-property-input-username:hover { + background-color: #333; +} +.user-property-input.user-property-input-password:hover { + background-color: #333; } \ No newline at end of file