diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2014-10-08 09:36:54 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2014-10-08 09:36:54 +0200 |
commit | 211c40ec4a16dcd07b033aab9063d93d8b6c090f (patch) | |
tree | 4f33381a88d716f8b46fe09384aa59c6340e8a16 | |
parent | 7d83d63235b6aa7cbd7fdfa94448a3897de7463d (diff) | |
download | sonarqube-211c40ec4a16dcd07b033aab9063d93d8b6c090f.tar.gz sonarqube-211c40ec4a16dcd07b033aab9063d93d8b6c090f.zip |
SONAR-5550 Overflow issue when shows stacktrace in the component viewer tests header
-rw-r--r-- | server/sonar-web/src/main/less/style.less | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/server/sonar-web/src/main/less/style.less b/server/sonar-web/src/main/less/style.less index 91330e93c46..2d73427824a 100644 --- a/server/sonar-web/src/main/less/style.less +++ b/server/sonar-web/src/main/less/style.less @@ -1961,9 +1961,12 @@ ul.bullet li { } .rule-desc pre, .property pre, .bubble-popup pre, .coding-rules-detail-parameter pre { + display: inline-block; + min-width: 100%; margin: 10px 0 !important; padding: 10px !important; border: 1px dashed #aaa; + .box-sizing(border-box); font-size: 12px; font-family: monospace;; } |