diff options
author | Andras Timar <atimar@suse.com> | 2013-02-12 22:04:02 +0100 |
---|---|---|
committer | Andras Timar <atimar@suse.com> | 2013-02-12 22:04:02 +0100 |
commit | 4d7b72491649f33d115f687f5deee58bd9619ca4 (patch) | |
tree | 8fdbf2f2915675fcc7fc976387694ce069ca2c58 /source/auxiliary/de | |
parent | a5cae6c3e83ddae0b26fac30cf95378d2a5882a3 (diff) |
enable syntax highligh of Basic code in offline help
Change-Id: Ibe2d1ae405677e6357d6f62f4ed20158b94532ff
Diffstat (limited to 'source/auxiliary/de')
-rw-r--r-- | source/auxiliary/de/default.css | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/source/auxiliary/de/default.css b/source/auxiliary/de/default.css index 6539c25667..d48c64674f 100644 --- a/source/auxiliary/de/default.css +++ b/source/auxiliary/de/default.css @@ -89,3 +89,20 @@ h4, h5, h6 .debug { border: 1px solid black; padding: 3px; display: none;} + +/* Basic code syntax highlight */ +.identifier, .unknown + { color: green;} + +.keyword + { color: blue;} + +.comment + { color: gray;} + +.number, .string + { color: red;} + +.operator, .parameter + { color: black;} + |