]> source.dussan.org Git - nextcloud-server.git/commitdiff
move inline style to CSS file, fix details
authorJan-Christoph Borchardt <hey@jancborchardt.net>
Wed, 6 Feb 2013 14:15:20 +0000 (15:15 +0100)
committerJan-Christoph Borchardt <hey@jancborchardt.net>
Wed, 6 Feb 2013 14:15:20 +0000 (15:15 +0100)
core/css/styles.css
core/templates/login.php

index 7fb800f79e2ad20c5d63df51356a0a1d326f2914..64246c6312964b1c17051a12237c4e581dbab872 100644 (file)
@@ -175,6 +175,10 @@ fieldset.warning {
 }
 fieldset.warning legend { color:#b94a48 !important; }
 
+/* Alternative Logins */
+#alternative-logins legend { margin-bottom:10px; }
+#alternative-logins li { height:40px; display:inline-block; white-space:nowrap; }
+
 
 /* NAVIGATION ------------------------------------------------------------- */
 #navigation { position:fixed; top:3.5em; float:left; width:12.5em; padding:0; z-index:75; height:100%; background:#eee; border-right:1px #ccc solid; -moz-box-shadow:-3px 0 7px #000; -webkit-box-shadow:-3px 0 7px #000; box-shadow:-3px 0 7px #000; overflow:hidden;}
index 7616b93f9a5c9d411e0175cee8e943072a5307bb..c6d0b5a9b978e97a04e4bf7d8cca40fc62b2afee 100644 (file)
        </fieldset>
 </form>
 <?php if (!empty($_['alt_login'])) { ?>
-<form>
+<form id="alternative-logins">
        <fieldset>
-               <legend style="margin-bottom: 20px;"><?php echo $l->t('Alternative Logins:') ?></legend>
+               <legend><?php echo $l->t('Alternative Logins') ?></legend>
                <ul>
                        <? foreach($_['alt_login'] as $login): ?>
-                               <li style="height: 40px;"><a class="button" href="<?php echo $login['href']; ?>" ><?php echo $login['name']; ?></a></li>
+                               <li><a class="button" href="<?php echo $login['href']; ?>" ><?php echo $login['name']; ?></a></li>
                                <?php endforeach; ?>
                </ul>
        </fieldset>