aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/app/styles
diff options
context:
space:
mode:
authorStas Vilchik <stas.vilchik@sonarsource.com>2017-08-31 12:03:24 +0200
committerStas Vilchik <stas.vilchik@sonarsource.com>2017-09-13 13:53:58 +0200
commita1b9bc1ced0bb2dd67e60583254f836cb477ed42 (patch)
treecc9e362ddf0f623b9d4f0e816591371cf69616a0 /server/sonar-web/src/main/js/app/styles
parent1ca69cefbef27f8f772650de4af6e6018ef85351 (diff)
downloadsonarqube-a1b9bc1ced0bb2dd67e60583254f836cb477ed42.tar.gz
sonarqube-a1b9bc1ced0bb2dd67e60583254f836cb477ed42.zip
SONAR-9375 Infinite loading of a project on the projects page
Diffstat (limited to 'server/sonar-web/src/main/js/app/styles')
-rw-r--r--server/sonar-web/src/main/js/app/styles/boxed-group.css75
1 files changed, 0 insertions, 75 deletions
diff --git a/server/sonar-web/src/main/js/app/styles/boxed-group.css b/server/sonar-web/src/main/js/app/styles/boxed-group.css
index 56c69e066ec..14c5f9753b2 100644
--- a/server/sonar-web/src/main/js/app/styles/boxed-group.css
+++ b/server/sonar-web/src/main/js/app/styles/boxed-group.css
@@ -59,78 +59,3 @@
margin-right: -20px;
padding: 8px 20px;
}
-
-.boxed-group-loading {
- position: relative;
- transition: border-color 0.25s;
-}
-
-.boxed-group-loading:before,
-.boxed-group-loading:after {
- position: absolute;
- z-index: 1;
- border: 2px solid transparent;
- box-sizing: border-box;
- content: '';
-}
-
-.boxed-group-loading:before {
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- border-top-color: #4b9fd5;
- border-right-color: #4b9fd5;
- animation: 3s top-left-border 0s infinite;
-}
-
-.boxed-group-loading:after {
- width: 0;
- height: 0;
- bottom: 0;
- right: 0;
- border-bottom-color: #4b9fd5;
- border-left-color: #4b9fd5;
- animation: 3s border-bottom-border 0s infinite;
-}
-
-@keyframes top-left-border {
- 0% {
- width: 0;
- height: 0;
- }
-
- 25% {
- width: 100%;
- height: 0;
- }
-
- 50%,
- 100% {
- width: 100%;
- height: 100%;
- }
-}
-
-@keyframes border-bottom-border {
- 0%,
- 50% {
- width: 0;
- height: 0;
- border-width: 0;
- }
-
- 51% {
- border-width: 2px;
- }
-
- 75% {
- width: 100%;
- height: 0;
- }
-
- 100% {
- width: 100%;
- height: 100%;
- }
-}