diff options
author | simonbrandhof <simon.brandhof@gmail.com> | 2010-10-04 06:54:13 +0000 |
---|---|---|
committer | simonbrandhof <simon.brandhof@gmail.com> | 2010-10-04 06:54:13 +0000 |
commit | 70773548c8454ad6e725e357f36b5ffff33bedac (patch) | |
tree | 77b503445049e65376f53f8c1d53bd6533742869 /sonar-colorizer | |
parent | 477c266f521aa6058b6ec9489116fd12dcdde3cf (diff) | |
download | sonarqube-70773548c8454ad6e725e357f36b5ffff33bedac.tar.gz sonarqube-70773548c8454ad6e725e357f36b5ffff33bedac.zip |
syntax highlighter: add the CSS class .code .p for preprocessing directives
Diffstat (limited to 'sonar-colorizer')
-rw-r--r-- | sonar-colorizer/src/main/resources/sonar-colorizer.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sonar-colorizer/src/main/resources/sonar-colorizer.css b/sonar-colorizer/src/main/resources/sonar-colorizer.css index 5e6807df539..89719de6a0f 100644 --- a/sonar-colorizer/src/main/resources/sonar-colorizer.css +++ b/sonar-colorizer/src/main/resources/sonar-colorizer.css @@ -58,4 +58,10 @@ font-weight: normal; } +/* preprocessing directive */ +.code .p { + color: #347235; + font-weight: normal; +} + |