From ebe0aa48a72f839e30ca9e0eae1cb940d3530a12 Mon Sep 17 00:00:00 2001 From: Brock Whittaker Date: Mon, 30 Jan 2017 17:40:35 -0800 Subject: [PATCH] Enlargen settings page loading spinner. Currently the loading spinner on the settings page is too small and is in the left corner of the parent box. This changes the width to the same as the main page: 100% fill inside a 38px square container. --- static/styles/zulip.css | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/static/styles/zulip.css b/static/styles/zulip.css index a1dffc0896..ff3fcad446 100644 --- a/static/styles/zulip.css +++ b/static/styles/zulip.css @@ -1796,6 +1796,13 @@ div.floating_recipient { line-height: 38px; } +.settings-section #admin_page_users_loading_indicator, +.settings-section #admin_page_deactivated_users_loading_indicator, +.settings-section #admin_page_bots_loading_indicator, +.settings-section #admin_page_streams_loading_indicator { + margin: 0 auto; +} + .settings-section .loading_indicator_text { font-size: 12px; font-weight: 400; @@ -1806,8 +1813,8 @@ div.floating_recipient { } .settings-section .loading_indicator_spinner { - width: 12px; - height: 12px; + width: 100%; + height: 100%; vertical-align: middle; display: inline-block; }