You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by md...@apache.org on 2020/04/15 14:41:36 UTC

[syncope] branch master updated: Fix CSS palette scrollbar

This is an automated email from the ASF dual-hosted git repository.

mdisabatino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/syncope.git


The following commit(s) were added to refs/heads/master by this push:
     new 8090c92  Fix CSS palette scrollbar
8090c92 is described below

commit 8090c92e470d64b07697f844740d774d0c588348
Author: Marco Di Sabatino Di Diodoro <ma...@tirasa.net>
AuthorDate: Wed Apr 15 16:30:21 2020 +0200

    Fix CSS palette scrollbar
---
 .../client/ui/commons/markup/html/form/NonI18nPalette.html        | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/client/idrepo/common-ui/src/main/resources/org/apache/syncope/client/ui/commons/markup/html/form/NonI18nPalette.html b/client/idrepo/common-ui/src/main/resources/org/apache/syncope/client/ui/commons/markup/html/form/NonI18nPalette.html
index 5c9302b..046915c 100644
--- a/client/idrepo/common-ui/src/main/resources/org/apache/syncope/client/ui/commons/markup/html/form/NonI18nPalette.html
+++ b/client/idrepo/common-ui/src/main/resources/org/apache/syncope/client/ui/commons/markup/html/form/NonI18nPalette.html
@@ -18,11 +18,11 @@
   <wicket:panel>
     <input type="hidden" wicket:id="recorder"/>
     <div class="col-md-5">
-      <div class="form-group">
+      <div class="form-group" style="overflow-x:auto;">
         <label>
           <span wicket:id="availableHeader">[available header]</span>
         </label>
-        <select class="form-control" style="min-width: 100%; width: auto; overflow: scroll;" wicket:id="choices">[choices]</select>
+        <select class="form-control palette-scrollbar" wicket:id="choices">[choices]</select>
       </div>
     </div>
     <div style="width: 20px; float: left; padding-top: 30px; text-align: center">
@@ -46,11 +46,11 @@
       </div>          
     </div>
     <div class="col-md-5">
-      <div class="form-group">
+      <div class="form-group" style="overflow-x:auto;">
         <label>
           <span wicket:id="selectedHeader">[selected header]</span>
         </label>
-        <select class="form-control" style="min-width: 100%; width: auto; overflow: scroll;" wicket:id="selection">[selection]</select>
+        <select class="form-control palette-scrollbar" wicket:id="selection">[selection]</select>
       </div>
     </div>
   </wicket:panel>