diff options
author | Gary Kim <gary@garykim.dev> | 2019-07-05 00:10:29 +0800 |
---|---|---|
committer | Gary Kim <gary@garykim.dev> | 2019-07-05 00:10:29 +0800 |
commit | c9ef40af272dd2aedef85a41c427c39da354775d (patch) | |
tree | 81b9a9c504357adf7cad7fcf5652c3a2f9e9973c | |
parent | 56001afb2fd6f7cc64b0bbe6ef95698b7de17c66 (diff) | |
download | nextcloud-server-c9ef40af272dd2aedef85a41c427c39da354775d.tar.gz nextcloud-server-c9ef40af272dd2aedef85a41c427c39da354775d.zip |
Fix alignment issues in admin settings
Signed-off-by: Gary Kim <gary@garykim.dev>
-rw-r--r-- | core/css/inputs.scss | 2 | ||||
-rw-r--r-- | settings/css/settings.scss | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/css/inputs.scss b/core/css/inputs.scss index c8b0f013521..6daefccdeee 100644 --- a/core/css/inputs.scss +++ b/core/css/inputs.scss @@ -365,7 +365,7 @@ input { // Detail description below label of checkbox or radio button & + label ~ em { display: inline-block; - margin-left: 18px; + margin-left: 25px; } & + label ~ em:last-of-type { margin-bottom: $checkbox-radio-size; diff --git a/settings/css/settings.scss b/settings/css/settings.scss index e1e6e3a066b..0f43de781cd 100644 --- a/settings/css/settings.scss +++ b/settings/css/settings.scss @@ -1169,7 +1169,7 @@ table.grid td.date { .icon-info { padding: 11px 20px; - vertical-align: super; + vertical-align: text-bottom; opacity: .5; } |