You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by fm...@apache.org on 2016/09/07 15:17:53 UTC

syncope git commit: [SYNCOPE-934] provides css rule for fieldset.input-group

Repository: syncope
Updated Branches:
  refs/heads/master 1839d6095 -> f6ba895c2


[SYNCOPE-934] provides css rule for fieldset.input-group


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/f6ba895c
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/f6ba895c
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/f6ba895c

Branch: refs/heads/master
Commit: f6ba895c233d256674074bed3a727cad579c25f9
Parents: 1839d60
Author: fmartelli <fa...@gmail.com>
Authored: Wed Sep 7 17:16:43 2016 +0200
Committer: fmartelli <fa...@gmail.com>
Committed: Wed Sep 7 17:17:35 2016 +0200

----------------------------------------------------------------------
 .../META-INF/resources/css/syncopeConsole.css          |  4 ++++
 .../org/apache/syncope/client/console/pages/Login.html | 13 +++++++++----
 2 files changed, 13 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/f6ba895c/client/console/src/main/resources/META-INF/resources/css/syncopeConsole.css
----------------------------------------------------------------------
diff --git a/client/console/src/main/resources/META-INF/resources/css/syncopeConsole.css b/client/console/src/main/resources/META-INF/resources/css/syncopeConsole.css
index c852882..e55578f 100644
--- a/client/console/src/main/resources/META-INF/resources/css/syncopeConsole.css
+++ b/client/console/src/main/resources/META-INF/resources/css/syncopeConsole.css
@@ -962,3 +962,7 @@ div#selectionContainer select {
 /**
 END - EVENTS
 */
+
+fieldset.input-group {
+  width: 100%;
+}

http://git-wip-us.apache.org/repos/asf/syncope/blob/f6ba895c/client/console/src/main/resources/org/apache/syncope/client/console/pages/Login.html
----------------------------------------------------------------------
diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/Login.html b/client/console/src/main/resources/org/apache/syncope/client/console/pages/Login.html
index df0c685..eb98bb8 100644
--- a/client/console/src/main/resources/org/apache/syncope/client/console/pages/Login.html
+++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/Login.html
@@ -40,15 +40,20 @@ under the License.
         <span wicket:id="feedback" role="alert"/>
 
         <form class="form-signin" wicket:id="login">
-          <fieldset class="form-group input-group">
+          <fieldset class="form-group">
             <input type="text" wicket:id="username" class="form-control" 
                    wicket:message="placeholder:username" required="required" autofocus="autofocus" />
+
             <input type="password" wicket:id="password" class="form-control" 
                    wicket:message="placeholder:password" required="required" />
 
-            <select wicket:id="language"/>
-            <div />
-            <select wicket:id="domain"/>
+            <fieldset class="input-group">
+              <select wicket:id="language"/>
+            </fieldset>
+
+            <fieldset class="input-group">
+              <select wicket:id="domain"/>
+            </fieldset>
 
             <button wicket:id="submit" type="submit" 
                     class="btn btn-lg btn-primary btn-block btn-signin"><wicket:message key="submit"/></button>