diff options
author | Bjoern Schiessle <bjoern@schiessle.org> | 2017-04-26 13:46:19 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-04-28 23:41:36 -0300 |
commit | 67057f7e71d5a0aeb493651069a7781329c6c475 (patch) | |
tree | 2025ead40067befe8e899ca3ed6b9783c6c3cb45 /settings | |
parent | 9a366dbe2e84bad7d6c40f284794aa6f34c2b0f5 (diff) | |
download | nextcloud-server-67057f7e71d5a0aeb493651069a7781329c6c475.tar.gz nextcloud-server-67057f7e71d5a0aeb493651069a7781329c6c475.zip |
minor style fixes; use verify-action class only for verification-status-icons which are interactive
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
Diffstat (limited to 'settings')
-rw-r--r-- | settings/css/settings.css | 2 | ||||
-rw-r--r-- | settings/templates/personal.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/settings/css/settings.css b/settings/css/settings.css index 395423c3bce..6444aae3c65 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -140,11 +140,11 @@ input#openid, input#webdav { width:20em; } } #personal-settings-container .verify { + padding: 10px; float: right; } #personal-settings-container .verify-action { - padding: 10px; cursor: pointer; } diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 1d77bd805b9..46916478ea4 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -111,7 +111,7 @@ <span class="icon-password"/> </h2> <div class="verify"> - <img id="verify-email" class="verify-action" <?php + <img id="verify-email" <?php switch($_['emailVerification']) { case \OC\Accounts\AccountManager::VERIFICATION_IN_PROGRESS: print_unescaped('src="' . image_path('core', 'actions/verifying.svg') . '" title="' . \OC::$server->getL10N()->t('Verifying …') . '"'); |