From: Jean-Baptiste Vilain Date: Thu, 1 Aug 2013 14:00:10 +0000 (+0200) Subject: SONAR-4505 Fixed ordered lists display in rule description X-Git-Tag: 3.7.1-RC1-~174 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=51027719280543a9fc554911122a553e856882b2;p=sonarqube.git SONAR-4505 Fixed ordered lists display in rule description --- 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;