From da4e0c4219e5132ffddd67fc4621840c557c132a Mon Sep 17 00:00:00 2001 From: Cesar G Date: Tue, 15 Oct 2013 21:37:53 -0700 Subject: [ticket/11928] Replace AJAX loading popup with animation. PHPBB3-11928 --- phpBB/adm/style/admin.css | 14 ++++++++++++++ phpBB/adm/style/overall_footer.html | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) (limited to 'phpBB/adm/style') diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index 0cbdc2e9f8..fee2efb001 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -1593,6 +1593,20 @@ input.button1:focus, input.button2:focus, input.button3:focus { } } +#loading_indicator { + background: #000000 url("../images/loading.gif") center center no-repeat; + border-radius: 5px; + display: none; + opacity: 0.8; + margin-top: -50px; + margin-left: -50px; + height: 50px; + width: 50px; + position: fixed; + left: 50%; + top: 50%; +} + /* Pagination ---------------------------------------- */ .pagination { diff --git a/phpBB/adm/style/overall_footer.html b/phpBB/adm/style/overall_footer.html index 3c291842dc..72af9d3388 100644 --- a/phpBB/adm/style/overall_footer.html +++ b/phpBB/adm/style/overall_footer.html @@ -17,8 +17,8 @@
 
-

{L_LOADING}

{L_PLEASE_WAIT}

+
-- cgit v1.2.1 From 57fc62b000391438adde160f97efaea7e2f0329a Mon Sep 17 00:00:00 2001 From: Cesar G Date: Tue, 29 Oct 2013 10:11:29 -0700 Subject: [ticket/11928] Make sure the indicator is on top of other elements. PHPBB3-11928 --- phpBB/adm/style/admin.css | 1 + 1 file changed, 1 insertion(+) (limited to 'phpBB/adm/style') diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index fee2efb001..e6146e2156 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -1605,6 +1605,7 @@ input.button1:focus, input.button2:focus, input.button3:focus { position: fixed; left: 50%; top: 50%; + z-index: 51; } /* Pagination -- cgit v1.2.1