]> source.dussan.org Git - sonarqube.git/commitdiff
fix ui spinner
authorStas Vilchik <vilchiks@gmail.com>
Mon, 16 Nov 2015 14:46:17 +0000 (15:46 +0100)
committerStas Vilchik <vilchiks@gmail.com>
Mon, 16 Nov 2015 15:43:49 +0000 (16:43 +0100)
server/sonar-web/src/main/less/init/icons.less

index d4f3fb9e5c802cb5047d38ba6a78ffb29276d19b..7247a90b9da5b94797911c7238bbd2f26f18a873 100644 (file)
@@ -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); }
 }