From 653c385d6276eb871bcdbb692ffdb86afe6528a9 Mon Sep 17 00:00:00 2001 From: Kyle Fazzari Date: Fri, 3 Nov 2017 13:54:56 -0700 Subject: [PATCH] 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 --- core/css/guest.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/css/guest.css b/core/css/guest.css index 1e40e39a6e5..2a300148419 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -582,6 +582,8 @@ p.info { .float-spinner { margin-top: -32px; padding-top: 32px; + height: 32px; + display: none; } [class^='icon-'], [class*=' icon-'] { background-repeat: no-repeat; -- 2.39.5