]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Some small design tweaks to the login page: Moving 'Stay signed in' label and removin...
authorJay Sitter <jsitter@gmail.com>
Fri, 31 Oct 2014 13:30:57 +0000 (09:30 -0400)
committerJay Sitter <jsitter@gmail.com>
Fri, 31 Oct 2014 13:30:57 +0000 (09:30 -0400)
themes/baggy/css/main.css
themes/baggy/login.twig

index ce30cb5a8445da502a362d95802f11fbf06325ef..54b7b7518da3bc0ce795c538f3401557794bea59 100755 (executable)
@@ -92,7 +92,6 @@ form fieldset {
 form input[type="text"], select, form input[type="password"], form input[type="url"], form input[type="email"] {
   border: 1px solid #999;
   padding: 0.5em 1em;
-  margin-left: 5px;
   min-width: 12em;
   color: #666;
 }
index 645db376aeac69419eb4a8023b1f9d4dc267b2c5..58290e9c646cf68dcbea0dd44c29ffd57e59efa5 100644 (file)
@@ -9,17 +9,17 @@
                     {% if constant('MODE_DEMO') == 1 %}<p>{% trans "you are in demo mode, some features may be disabled." %}</p>{% endif %}
                                        <div class="row">
                                                <label class="col w150p" for="login">{% trans "Username" %}</label>
-                                               <input class="col" type="text" id="login" name="login" placeholder="Login" tabindex="1" autofocus {% if constant('MODE_DEMO') == 1 %}value="poche"{% endif %} />
+                                               <input class="col" type="text" id="login" name="login" placeholder="{% trans "Username" %}" tabindex="1" autofocus {% if constant('MODE_DEMO') == 1 %}value="poche"{% endif %} />
                                        </div>
 
                                        <div class="row">
                                                <label class="col w150p" for="password">{% trans "Password" %}</label>
-                                               <input class="col" type="password" id="password" name="password" placeholder="Password" tabindex="2" {% if constant('MODE_DEMO') == 1 %}value="poche"{% endif %} />
+                                               <input class="col" type="password" id="password" name="password" placeholder="{% trans "Password" %}" tabindex="2" {% if constant('MODE_DEMO') == 1 %}value="poche"{% endif %} />
                                        </div>
                                        <div class="row">
-                                               <label class="col w150p" for="longlastingsession">{% trans "Stay signed in" %}</label>
+                                               
                                                <div class="col">
-                                                       <input type="checkbox" id="longlastingsession" name="longlastingsession" tabindex="3">
+                                                       <input type="checkbox" id="longlastingsession" name="longlastingsession" tabindex="3" /> <label for="longlastingsession">{% trans "Stay signed in" %}</label><br />
                                                        <small class="inbl">{% trans "(Do not check on public computers)" %}</small>
                                                </div>
                                        </div>