diff options
author | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2017-05-26 11:02:02 +0200 |
---|---|---|
committer | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2017-05-29 17:05:25 +0200 |
commit | 374e5058160802070c22107d8d90764a11e92b53 (patch) | |
tree | 5693a04ab9e7e1a2df4c1b69eddab97df56f1261 /server/sonar-web/src/main/js/app/components | |
parent | 3742bff5b8f1fc202642fb4dea44207413216788 (diff) | |
download | sonarqube-374e5058160802070c22107d8d90764a11e92b53.tar.gz sonarqube-374e5058160802070c22107d8d90764a11e92b53.zip |
SONAR-9330 Display the loading spinner immediately when page loads
Diffstat (limited to 'server/sonar-web/src/main/js/app/components')
-rw-r--r-- | server/sonar-web/src/main/js/app/components/GlobalLoading.css | 19 | ||||
-rw-r--r-- | server/sonar-web/src/main/js/app/components/GlobalLoading.js | 1 |
2 files changed, 0 insertions, 20 deletions
diff --git a/server/sonar-web/src/main/js/app/components/GlobalLoading.css b/server/sonar-web/src/main/js/app/components/GlobalLoading.css deleted file mode 100644 index 5537f22c69a..00000000000 --- a/server/sonar-web/src/main/js/app/components/GlobalLoading.css +++ /dev/null @@ -1,19 +0,0 @@ -.global-loading { - width: 300px; - margin: 200px auto 0; - white-space: nowrap; -} - -.global-loading-spinner { - vertical-align: middle; - width: 80px; - height: 80px; -} - -.global-loading-text { - display: inline-block; - vertical-align: middle; - margin-left: 30px; - font-size: 36px; - font-weight: 300; -} diff --git a/server/sonar-web/src/main/js/app/components/GlobalLoading.js b/server/sonar-web/src/main/js/app/components/GlobalLoading.js index 28917188145..060596c99b4 100644 --- a/server/sonar-web/src/main/js/app/components/GlobalLoading.js +++ b/server/sonar-web/src/main/js/app/components/GlobalLoading.js @@ -19,7 +19,6 @@ */ // @flow import React from 'react'; -import './GlobalLoading.css'; export default function GlobalLoading() { return ( |