diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2015-11-16 15:46:17 +0100 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2015-11-16 16:43:49 +0100 |
commit | 8f1d094510778a31f02f797db624f5d5896d1b0c (patch) | |
tree | eb49b56bf42aadffbfeaefafbd7ea0ddec103d01 /server/sonar-web/src/main/less/init | |
parent | 55d74d47d9b39317083f36352fdc8df3b0151ab6 (diff) | |
download | sonarqube-8f1d094510778a31f02f797db624f5d5896d1b0c.tar.gz sonarqube-8f1d094510778a31f02f797db624f5d5896d1b0c.zip |
fix ui spinner
Diffstat (limited to 'server/sonar-web/src/main/less/init')
-rw-r--r-- | server/sonar-web/src/main/less/init/icons.less | 13 |
1 files 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); } } |