diff options
author | Kyle Fazzari <kyrofa@ubuntu.com> | 2017-11-03 13:54:56 -0700 |
---|---|---|
committer | Kyle Fazzari <kyrofa@ubuntu.com> | 2017-11-03 13:54:56 -0700 |
commit | affdce72cc1a6852026f5b5f6d7b847d053a233a (patch) | |
tree | b8dbc2edf91400862e2149ebadc020f7c5437589 | |
parent | 9a8ecb260793fe78f5b2a5b0f762c811359e7a73 (diff) | |
download | nextcloud-server-affdce72cc1a6852026f5b5f6d7b847d053a233a.tar.gz nextcloud-server-affdce72cc1a6852026f5b5f6d7b847d053a233a.zip |
core: hide spinner for initial install
core/js/setup.js has logic to show the spinner upon form submission, but
ever since v12 was released the spinner was never hidden in the first
place.
Modify core/css/guest.css to hide it, which allows core/js/setup.js to
do its thing.
Fix #5532
Signed-off-by: Kyle Fazzari <kyrofa@ubuntu.com>
-rw-r--r-- | core/css/guest.css | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/css/guest.css b/core/css/guest.css index 576efafec5f..79c98d37f5f 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -624,6 +624,8 @@ p.info { .float-spinner { margin-top: -32px; padding-top: 32px; + height: 32px; + display: none; } [class^='icon-'], [class*=' icon-'] { background-repeat: no-repeat; |