diff options
author | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2017-05-23 08:17:28 +0200 |
---|---|---|
committer | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2017-05-23 10:32:09 +0200 |
commit | d28adafed84b490a9fa5e52997da45eddce22121 (patch) | |
tree | 3427b507b73a8bdbcd05c6c504e2cd9ce7c762a9 /server/sonar-web/src/main/js | |
parent | 729ec9e5531400c98a167e8d1701ff80114941c6 (diff) | |
download | sonarqube-d28adafed84b490a9fa5e52997da45eddce22121.tar.gz sonarqube-d28adafed84b490a9fa5e52997da45eddce22121.zip |
Fix projects page cards links while loading
Diffstat (limited to 'server/sonar-web/src/main/js')
-rw-r--r-- | server/sonar-web/src/main/js/app/styles/boxed-group.css | 29 |
1 files changed, 5 insertions, 24 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 c1f569c1206..24c56850676 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 @@ -17,6 +17,8 @@ } .boxed-group-header { + position: relative; + z-index: 10; padding: 15px 20px 0; } @@ -64,6 +66,7 @@ .boxed-group-loading:before, .boxed-group-loading:after { position: absolute; + z-index: 1; border: 2px solid transparent; box-sizing: border-box; content: ''; @@ -100,36 +103,14 @@ height: 0; } - 50% { - width: 100%; - height: 100%; - } - - 75% { - width: 100%; - height: 100%; - } - - 100% { + 50%, 100% { width: 100%; height: 100%; } } @keyframes border-bottom-border { - 0% { - width: 0; - height: 0; - border-width: 0; - } - - 25% { - width: 0; - height: 0; - border-width: 0; - } - - 50% { + 0%, 50% { width: 0; height: 0; border-width: 0; |