diff options
author | Nathan Youngman <git@nathany.com> | 2012-10-27 23:41:52 -0600 |
---|---|---|
committer | Nathan Youngman <git@nathany.com> | 2012-10-27 23:42:23 -0600 |
commit | 279348d3c2159df4ce6ac5949ada0177aa7c7159 (patch) | |
tree | e0ef2a73dc786397c698021fc8abba224e956409 /lib/coderay/styles | |
parent | 308fd388b4646ff77263f05634547c6f3cc3e895 (diff) | |
download | coderay-279348d3c2159df4ce6ac5949ada0177aa7c7159.tar.gz |
:map token kind
Use :map instead of :table. It's more generic, and won't be confused with the :table rendering style.
Diffstat (limited to 'lib/coderay/styles')
-rw-r--r-- | lib/coderay/styles/alpha.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/coderay/styles/alpha.rb b/lib/coderay/styles/alpha.rb index 257083e..a60725b 100644 --- a/lib/coderay/styles/alpha.rb +++ b/lib/coderay/styles/alpha.rb @@ -1,6 +1,6 @@ module CodeRay module Styles - + # A colorful theme using CSS 3 colors (with alpha channel). class Alpha < Style @@ -116,9 +116,9 @@ table.CodeRay td { padding: 2px 4px; vertical-align: top; } .symbol .content { color:#A60 } .symbol .delimiter { color:#630 } .symbol { color:#A60 } -.table .content { color:#808 } -.table .delimiter { color:#40A} -.table { background-color:hsla(200,100%,50%,0.06); } +.map .content { color:#808 } +.map .delimiter { color:#40A} +.map { background-color:hsla(200,100%,50%,0.06); } .tag { color:#070 } .type { color:#339; font-weight:bold } .value { color: #088; } |