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>
This commit is contained in:
parent
9a8ecb2607
commit
affdce72cc
|
@ -624,6 +624,8 @@ p.info {
|
||||||
.float-spinner {
|
.float-spinner {
|
||||||
margin-top: -32px;
|
margin-top: -32px;
|
||||||
padding-top: 32px;
|
padding-top: 32px;
|
||||||
|
height: 32px;
|
||||||
|
display: none;
|
||||||
}
|
}
|
||||||
[class^='icon-'], [class*=' icon-'] {
|
[class^='icon-'], [class*=' icon-'] {
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
|
Loading…
Reference in New Issue