From 669f3ff8648aec0527b0338053fced448234d7be Mon Sep 17 00:00:00 2001 From: Hannah Date: Tue, 21 Apr 2020 14:59:06 +0200 Subject: [PATCH] Changes to edit user popin Height of popin changed to avoid a scroll bar that isn't needed Sliders changed made rounder and colors changed to grey and orange, for both light and dark mode --- admin/themes/default/theme.css | 23 ++++++++++++++++++++++- admin/themes/roma/theme.css | 15 +++++++++++++++ 2 files changed, 37 insertions(+), 1 deletion(-) diff --git a/admin/themes/default/theme.css b/admin/themes/default/theme.css index 5fb923716..570e57e5d 100644 --- a/admin/themes/default/theme.css +++ b/admin/themes/default/theme.css @@ -1525,7 +1525,7 @@ a.group_users { .user_form_popin { width:750px; - height:430px; + height:450px; padding:20px; } @@ -1568,6 +1568,27 @@ a.group_users { opacity:0.5; } +/* Edit user popin*/ + + +.user_form_popin .ui-slider-horizontal .ui-slider-handle{ + background-color:#FFA646; + border:none; + border-radius:25px; + border: 1px solid #818181; +} + +.user_form_popin .ui-slider-horizontal .ui-slider-range-min{ + background-color:#818181; + border-radius:25px; +} + +.user_form_popin .ui-slider-horizontal{ + background-color:#e3e3e3; + border:none; + border-radius:25px; +} + /* table in help/quick_search.html */ table.qsearch_help_table { border-collapse:collapse; diff --git a/admin/themes/roma/theme.css b/admin/themes/roma/theme.css index 1cecf89f4..a3ad051e3 100644 --- a/admin/themes/roma/theme.css +++ b/admin/themes/roma/theme.css @@ -330,6 +330,21 @@ label>p.group_select { visibility: hidden; } +/*Edit user popin*/ + +.user_form_popin .ui-slider-horizontal .ui-slider-handle{ + background-color:#FFA646; + border:1px solid #5a5a5a; +} + +.user_form_popin .ui-slider-horizontal .ui-slider-range-min{ + background-color:#5a5a5a; +} +.user_form_popin .ui-slider-horizontal{ + background-color:#151515; + +} + #configContent fieldset:not(.no-border) { border-top-color:#444; }