From 8f1d094510778a31f02f797db624f5d5896d1b0c Mon Sep 17 00:00:00 2001 From: Stas Vilchik Date: Mon, 16 Nov 2015 15:46:17 +0100 Subject: [PATCH] fix ui spinner --- server/sonar-web/src/main/less/init/icons.less | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/server/sonar-web/src/main/less/init/icons.less b/server/sonar-web/src/main/less/init/icons.less index d4f3fb9e5c8..7247a90b9da 100644 --- a/server/sonar-web/src/main/less/init/icons.less +++ b/server/sonar-web/src/main/less/init/icons.less @@ -601,18 +601,9 @@ a[class^="icon-"], a[class*=" icon-"] { vertical-align: middle; width: 16px; height: 16px; - border: 2px solid #0cf; + border: 2px solid @blue; border-radius: 50%; animation: spin 0.75s infinite linear; - - // For IE9 only, because it does not support css animations - // Show animated gif - .ie9 & { - background-image: url(../images/loading.gif); - background-repeat: no-repeat; - background-position: 0 0; - border: none; - } } .spinner:before, @@ -650,5 +641,5 @@ a[class^="icon-"], a[class*=" icon-"] { @keyframes spin { from { transform: rotate(0deg); } - to { transform: rotate(36deg); } + to { transform: rotate(360deg); } } -- 2.39.5