summaryrefslogtreecommitdiff
path: root/lib/coderay
diff options
context:
space:
mode:
authormurphy <murphy@rubychan.de>2010-09-21 22:04:58 +0000
committermurphy <murphy@rubychan.de>2010-09-21 22:04:58 +0000
commit06d2668d7dace02a787dc84852ced535ae981b50 (patch)
treef6d9507e2e85eaf12e0d1aee6bf0b583f8a0ae96 /lib/coderay
parent74e1cdcdfe02cee4dc2caa596855d63b5b6c0d5d (diff)
downloadcoderay-06d2668d7dace02a787dc84852ced535ae981b50.tar.gz
Fixed a:target color.
Diffstat (limited to 'lib/coderay')
-rw-r--r--lib/coderay/styles/alpha.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/coderay/styles/alpha.rb b/lib/coderay/styles/alpha.rb
index 8047715..a57b0c4 100644
--- a/lib/coderay/styles/alpha.rb
+++ b/lib/coderay/styles/alpha.rb
@@ -34,11 +34,11 @@ table.CodeRay td { padding: 2px 4px; vertical-align: top; }
-webkit-user-select: none;
}
.CodeRay .line_numbers a, .CodeRay .no a {
- background-color: #{numbers_background} ! important;
- color: gray ! important;
- text-decoration: none ! important;
+ background-color: #{numbers_background} !important;
+ color: gray !important;
+ text-decoration: none !important;
}
-.CodeRay .line_numbers a:target, .CodeRay .no a:target { color: blue; }
+.CodeRay .line_numbers a:target, .CodeRay .no a:target { color: blue !important; }
.CodeRay .line_numbers .highlighted, .CodeRay .no .highlighted { color: red; }
.CodeRay .no { padding: 0px 4px; }
.CodeRay .code { width: 100%; }
@@ -46,7 +46,7 @@ table.CodeRay td { padding: 2px 4px; vertical-align: top; }
MAIN
TOKEN_COLORS = <<-'TOKENS'
-.debug { color:white ! important; background:blue ! important; }
+.debug { color: white !important; background: blue !important; }
.an { color:#007 }
.at { color:#f08 }