diff options
author | Jean-Baptiste Vilain <jean-baptiste.vilain@sonarsource.com> | 2013-08-01 16:00:10 +0200 |
---|---|---|
committer | Jean-Baptiste Vilain <jean-baptiste.vilain@sonarsource.com> | 2013-08-01 16:00:10 +0200 |
commit | 51027719280543a9fc554911122a553e856882b2 (patch) | |
tree | 497d5847de710749c516ac60fbccc3bea758a095 /sonar-server/src/main/webapp | |
parent | 2e5db9e9fca7e1a21edaea27cd18491bf9031c59 (diff) | |
download | sonarqube-51027719280543a9fc554911122a553e856882b2.tar.gz sonarqube-51027719280543a9fc554911122a553e856882b2.zip |
SONAR-4505 Fixed ordered lists display in rule description
Diffstat (limited to 'sonar-server/src/main/webapp')
-rw-r--r-- | sonar-server/src/main/webapp/stylesheets/style.css | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sonar-server/src/main/webapp/stylesheets/style.css b/sonar-server/src/main/webapp/stylesheets/style.css index 05011a72407..6750544429e 100644 --- a/sonar-server/src/main/webapp/stylesheets/style.css +++ b/sonar-server/src/main/webapp/stylesheets/style.css @@ -1821,16 +1821,21 @@ ul.bullet li { color: #777; } -.rule_detail li { +.rule_detail ul li { list-style: disc outside; padding: 2px; } -.rule_detail ul { +.rule_detail ul, .rule_detail ol { list-style: none outside; padding-left: 30px; } +.rule_detail ol li { + list-style: decimal outside; + padding: 2px; +} + .rule_detail pre, .code .rule_detail pre { margin: 10px 0; padding: 7px; |