From 149b29607b55d47e4bb27cfa531f2e4ca4ae2289 Mon Sep 17 00:00:00 2001 From: Linty Date: Thu, 22 Aug 2024 15:44:12 +0200 Subject: [PATCH] [users] changing height of group select in edit user modal --- admin/themes/default/template/user_list.tpl | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/admin/themes/default/template/user_list.tpl b/admin/themes/default/template/user_list.tpl index 9ecad750e..d56ea22d1 100644 --- a/admin/themes/default/template/user_list.tpl +++ b/admin/themes/default/template/user_list.tpl @@ -1648,6 +1648,8 @@ $(document).ready(function() { width: 65%; padding-left: 30px; overflow-x: auto; + display: flex; + flex-direction: column; } .edit-user-slides, @@ -1659,6 +1661,7 @@ $(document).ready(function() { -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none; + height: 100%; } .edit-user-slides::-webkit-scrollbar, @@ -2886,6 +2889,16 @@ Advanced filter margin-bottom:5px; } +.selectize-dropdown-content { + overflow-y: hidden; +} + +.selectize-dropdown { + height: 100%; + overflow-y: scroll; + overflow-x: hidden; +} + #permitActionUserList #applyActionBlock { margin: 30px 0 0 0; display:flex;