diff options
author | ssjenka <ssjenka@ops-slave-fedora25-1.internal.sonarsource.com> | 2017-05-24 08:02:02 +0200 |
---|---|---|
committer | ssjenka <ssjenka@ops-slave-fedora25-1.internal.sonarsource.com> | 2017-05-24 08:02:02 +0200 |
commit | a318f6e5bd901174d72ab6c80df720bc2faca907 (patch) | |
tree | 63f8b14cc4fab00383a28d0543d202ca0de67af6 /server | |
parent | 72da23ae2c19fd583c37aa36b98277829d7f2672 (diff) | |
parent | 84026b6f1c006c925c632449d070076655e8ad51 (diff) | |
download | sonarqube-a318f6e5bd901174d72ab6c80df720bc2faca907.tar.gz sonarqube-a318f6e5bd901174d72ab6c80df720bc2faca907.zip |
Automatic merge from branch-6.4
* origin/branch-6.4:
Fix wording in risk bubble chart and permission template tooltips
Fix projects page cards links while loading
Diffstat (limited to 'server')
-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; |