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

[syncope] branch 2_0_X updated: Adding vertical scrollbar to FF as well

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

ilgrosso pushed a commit to branch 2_0_X
in repository https://gitbox.apache.org/repos/asf/syncope.git


The following commit(s) were added to refs/heads/2_0_X by this push:
     new 839b385  Adding vertical scrollbar to FF as well
839b385 is described below

commit 839b385e46f5e5ba73c0b30b920fc3b7e201788b
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Tue Apr 14 17:54:03 2020 +0200

    Adding vertical scrollbar to FF as well
---
 .../client/console/wicket/markup/html/form/NonI18nPalette.html        | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/wicket/markup/html/form/NonI18nPalette.html b/client/console/src/main/resources/org/apache/syncope/client/console/wicket/markup/html/form/NonI18nPalette.html
index cf2a291..de21826 100644
--- a/client/console/src/main/resources/org/apache/syncope/client/console/wicket/markup/html/form/NonI18nPalette.html
+++ b/client/console/src/main/resources/org/apache/syncope/client/console/wicket/markup/html/form/NonI18nPalette.html
@@ -22,7 +22,7 @@
         <label>
           <span wicket:id="availableHeader">[available header]</span>
         </label>
-        <select class="form-control" style="min-width: 100px; overflow: scroll;" wicket:id="choices">[choices]</select>
+        <select class="form-control" style="min-width: 100%; width: auto; overflow: scroll;" wicket:id="choices">[choices]</select>
       </div>
     </div>
     <div style="width: 20px; float: left; padding-top: 30px; text-align: center">
@@ -50,7 +50,7 @@
         <label>
           <span wicket:id="selectedHeader">[selected header]</span>
         </label>
-        <select class="form-control" style="min-width: 100px; overflow: scroll;" wicket:id="selection">[selection]</select>
+        <select class="form-control" style="min-width: 100%; width: auto; overflow: scroll;" wicket:id="selection">[selection]</select>
       </div>
     </div>
   </wicket:panel>