diff options
author | kondou <kondou@ts.unde.re> | 2013-07-01 23:47:59 +0200 |
---|---|---|
committer | kondou <kondou@ts.unde.re> | 2013-07-09 16:08:32 +0200 |
commit | 4818e0062e5444a9b657a30001b6dbaca44413c7 (patch) | |
tree | 5c3c80992bb61f048448fb76f488b34cd9ffb8a3 /settings | |
parent | f8dae11a23784bc9ebdef67511934630e46f870b (diff) | |
download | nextcloud-server-4818e0062e5444a9b657a30001b6dbaca44413c7.tar.gz nextcloud-server-4818e0062e5444a9b657a30001b6dbaca44413c7.zip |
General CSS cleanup
Diffstat (limited to 'settings')
-rw-r--r-- | settings/css/settings.css | 4 | ||||
-rw-r--r-- | settings/templates/personal.php | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/settings/css/settings.css b/settings/css/settings.css index 3c406109a1f..d7b63891903 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -9,10 +9,10 @@ input#openid, input#webdav { width:20em; } /* PERSONAL */ /* Sync clients */ -.clientsbox { margin:12px; text-align:center; } +.clientsbox { margin:12px; } .clientsbox h1 { font-size:40px; font-weight:bold; margin:50px 0 20px; } .clientsbox h2 { font-size:20px; font-weight:bold; margin:35px 0 10px; } -.clientsbox center { margin-top:10px; } +.clientsbox .center { margin-top:10px; } #passworderror { display:none; } #passwordchanged { display:none; } diff --git a/settings/templates/personal.php b/settings/templates/personal.php index d4396407525..e6d43a430fd 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -6,7 +6,7 @@ <?php $defaults = new OC_Defaults(); // initialize themable default strings and urls ?> -<div class="clientsbox"> +<div class="clientsbox center"> <h2><?php p($l->t('Get the apps to sync your files'));?></h2> <a href="<?php p($_['clients']['desktop']); ?>" target="_blank"> <img src="<?php print_unescaped(OCP\Util::imagePath('core', 'desktopapp.png')); ?>" /> @@ -18,7 +18,7 @@ <img src="<?php print_unescaped(OCP\Util::imagePath('core', 'appstore.png')); ?>" /> </a> <?php if(OC_APP::isEnabled('firstrunwizard')) {?> - <center><a class="button" href="#" id="showWizard"><?php p($l->t('Show First Run Wizard again'));?></a></center> + <p class="center"><a class="button" href="#" id="showWizard"><?php p($l->t('Show First Run Wizard again'));?></a></p> <?php }?> </div> |