diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2017-05-20 22:26:58 +0200 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2017-08-07 15:01:05 +0200 |
commit | 6fe6c0545e380c2a161d6a50f3b9b9142a6ea513 (patch) | |
tree | dd2f9fdf898e2a580e2de2465699a04e173a44e5 /apps | |
parent | 21ad25465db86f710f66c0eb3f2474407890e3b8 (diff) | |
download | nextcloud-server-6fe6c0545e380c2a161d6a50f3b9b9142a6ea513.tar.gz nextcloud-server-6fe6c0545e380c2a161d6a50f3b9b9142a6ea513.zip |
Align vertically loading icon and status message
As both elements are inline/inline-block and belong to the same line
they can be aligned vertically using "vertical-align: middle".
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/theming/css/settings-admin.css | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/theming/css/settings-admin.css b/apps/theming/css/settings-admin.css index fe86f4a9d27..0d671ef20bc 100644 --- a/apps/theming/css/settings-admin.css +++ b/apps/theming/css/settings-admin.css @@ -47,10 +47,6 @@ form.uploadButton { visibility: visible; } -#theming .icon-loading-small:after { - margin: -10px 0 0 -10px; -} - #theming label span { display: inline-block; min-width: 120px; @@ -73,11 +69,15 @@ form.uploadButton { } #theming_settings_loading.icon-loading-small { - float: left; - padding: 0; + display: inline-block; + vertical-align: middle; margin-right: 10px; } +#theming_settings_msg { + vertical-align: middle; +} + #theming-preview-logo { cursor: pointer; } |