From 978c2a6a2872ec7eb9e59c79367d46b9054eb927 Mon Sep 17 00:00:00 2001
From: hanakin <midaym@gmail.com>
Date: Thu, 23 Feb 2017 17:43:40 -0500
Subject: [PATCH] [ticket/14095] Update admin.css

PHPBB3-14095
---
 phpBB/adm/style/admin.css | 78 ++++++++++++++++++++++++++++++++++-----
 1 file changed, 68 insertions(+), 10 deletions(-)

diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css
index d46530700f..c37df3ce6e 100644
--- a/phpBB/adm/style/admin.css
+++ b/phpBB/adm/style/admin.css
@@ -1665,19 +1665,77 @@ input.button1:focus, input.button2: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;
+.loading_indicator {
 	position: fixed;
-	left: 50%;
 	top: 50%;
+	left: 50%;
 	z-index: 51;
+	display: none;
+}
+
+.loader {
+	width: 48px;
+	height: 48px;
+	padding: 12px;
+}
+
+.spinner {
+	animation: rotator 1s linear infinite;
+}
+
+.spinner-path {
+	stroke-dasharray: 187;
+	stroke-dashoffset: 0;
+	transform-origin: center;
+	animation: dash 1s ease-in-out infinite, colors 4s ease-in-out infinite;
+}
+
+@keyframes rotator {
+	0% {
+		transform: rotate(0deg);
+	}
+
+	100% {
+		transform: rotate(270deg);
+	}
+}
+
+@keyframes dash {
+	0% {
+		stroke-dashoffset: 187;
+	}
+
+	50% {
+		stroke-dashoffset: 46.75;
+		transform: rotate(135deg);
+	}
+
+	100% {
+		stroke-dashoffset: 187;
+		transform: rotate(450deg);
+	}
+}
+
+@keyframes colors {
+	0% {
+		stroke: #4285f4;
+	}
+
+	25% {
+		stroke: #de3e35;
+	}
+
+	50% {
+		stroke: #f7c223;
+	}
+
+	75% {
+		stroke: #1b9a59;
+	}
+
+	100% {
+		stroke: #4285f4;
+	}
 }
 
 /* Pagination