From affdce72cc1a6852026f5b5f6d7b847d053a233a Mon Sep 17 00:00:00 2001
From: Kyle Fazzari <kyrofa@ubuntu.com>
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 <kyrofa@ubuntu.com>
---
 core/css/guest.css | 2 ++
 1 file changed, 2 insertions(+)

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;
-- 
GitLab