diff options
author | asosnoviy <int-it@yandex.ru> | 2017-09-08 23:23:46 +0300 |
---|---|---|
committer | Stas Vilchik <stas.vilchik@sonarsource.com> | 2017-09-14 13:52:45 +0200 |
commit | c9975c3520d55d9f79cb04468fa5a64da8ed5dfa (patch) | |
tree | 0f2c8a0f102de225c555c288e59469c57f6caaec /server | |
parent | 1d5992601787c395f23bc82d658fe15adbe9a146 (diff) | |
download | sonarqube-c9975c3520d55d9f79cb04468fa5a64da8ed5dfa.tar.gz sonarqube-c9975c3520d55d9f79cb04468fa5a64da8ed5dfa.zip |
.level label localazed size css fix
Diffstat (limited to 'server')
-rw-r--r-- | server/sonar-web/src/main/js/components/ui/Level.css | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/components/ui/Level.css b/server/sonar-web/src/main/js/components/ui/Level.css index 6f47b9f2967..64d8f63a168 100644 --- a/server/sonar-web/src/main/js/components/ui/Level.css +++ b/server/sonar-web/src/main/js/components/ui/Level.css @@ -1,6 +1,9 @@ .level { display: inline-block; - width: 80px; + width: auto; + min-width: 80px; + padding-left: 9px; + padding-right: 9px; height: 24px; line-height: 24px; border-radius: 24px; @@ -14,7 +17,10 @@ } .level-small { - width: 64px; + width: auto; + min-width: 64px; + padding-left: 9px; + padding-right: 9px; margin-top: -1px; margin-bottom: -1px; height: 18px; |