diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-06-19 07:04:44 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-06-19 07:04:44 +0000 |
commit | 140eb72cc169201e5afdb070e4b279b1afae7ccb (patch) | |
tree | c5187f4d40250e8a475cc16436f6c1961f7f8ae1 | |
parent | e528a56d4b27938a57816f51854b273f0a12bff7 (diff) | |
download | redmine-140eb72cc169201e5afdb070e4b279b1afae7ccb.tar.gz redmine-140eb72cc169201e5afdb070e4b279b1afae7ccb.zip |
Update CodeRay to v1.1.1 (#23107).
git-svn-id: http://svn.redmine.org/redmine/trunk@15569 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | Gemfile | 2 | ||||
-rw-r--r-- | public/stylesheets/application.css | 36 |
2 files changed, 20 insertions, 18 deletions
@@ -6,7 +6,7 @@ end gem "rails", "4.2.6" gem "jquery-rails", "~> 3.1.4" -gem "coderay", "~> 1.1.0" +gem "coderay", "~> 1.1.1" gem "builder", ">= 3.0.4" gem "request_store", "1.0.5" gem "mime-types", (RUBY_VERSION >= "2.0" ? "~> 3.0" : "~> 2.99") diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 04194dee0..1bda7f0ff 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -1279,13 +1279,13 @@ color: #555; text-shadow: 1px 1px 0 #fff; .syntaxhl .char { color:#D20 } .syntaxhl .char .content { color:#D20 } .syntaxhl .char .delimiter { color:#710 } -.syntaxhl .class { color:#258; font-weight:bold } +.syntaxhl .class { color:#B06; font-weight:bold } .syntaxhl .class-variable { color:#369 } .syntaxhl .color { color:#0A0 } -.syntaxhl .comment { color:#385 } -.syntaxhl .comment .char { color:#385 } -.syntaxhl .comment .delimiter { color:#385 } -.syntaxhl .constant { color:#258; font-weight:bold } +.syntaxhl .comment { color:#777 } +.syntaxhl .comment .char { color:#444 } +.syntaxhl .comment .delimiter { color:#444 } +.syntaxhl .constant { color:#036; font-weight:bold } .syntaxhl .decorator { color:#B0B } .syntaxhl .definition { color:#099; font-weight:bold } .syntaxhl .delimiter { color:black } @@ -1297,23 +1297,24 @@ color: #555; text-shadow: 1px 1px 0 #fff; .syntaxhl .error { color:#F00; background-color:#FAA } .syntaxhl .escape { color:#666 } .syntaxhl .exception { color:#C00; font-weight:bold } -.syntaxhl .float { color:#06D } +.syntaxhl .float { color:#60E } .syntaxhl .function { color:#06B; font-weight:bold } -.syntaxhl .function .delimiter { color:#024; font-weight:bold } +.syntaxhl .function .delimiter { color:#059 } +.syntaxhl .function .content { color:#037 } .syntaxhl .global-variable { color:#d70 } .syntaxhl .hex { color:#02b } -.syntaxhl .id { color:#33D; font-weight:bold } +.syntaxhl .id { color:#33D; font-weight:bold } .syntaxhl .include { color:#B44; font-weight:bold } .syntaxhl .inline { background-color: hsla(0,0%,0%,0.07); color: black } .syntaxhl .inline-delimiter { font-weight: bold; color: #666 } .syntaxhl .instance-variable { color:#33B } -.syntaxhl .integer { color:#06D } +.syntaxhl .integer { color:#00D } .syntaxhl .imaginary { color:#f00 } .syntaxhl .important { color:#D00 } .syntaxhl .key { color: #606 } .syntaxhl .key .char { color: #60f } .syntaxhl .key .delimiter { color: #404 } -.syntaxhl .keyword { color:#939; font-weight:bold } +.syntaxhl .keyword { color:#080; font-weight:bold } .syntaxhl .label { color:#970; font-weight:bold } .syntaxhl .local-variable { color:#950 } .syntaxhl .map .content { color:#808 } @@ -1335,13 +1336,14 @@ color: #555; text-shadow: 1px 1px 0 #fff; .syntaxhl .shell { background-color:hsla(120,100%,50%,0.06); } .syntaxhl .shell .content { color:#2B2 } .syntaxhl .shell .delimiter { color:#161 } -.syntaxhl .string .char { color: #46a } -.syntaxhl .string .content { color: #46a } -.syntaxhl .string .delimiter { color: #46a } -.syntaxhl .string .modifier { color: #46a } -.syntaxhl .symbol { color:#d33 } -.syntaxhl .symbol .content { color:#d33 } -.syntaxhl .symbol .delimiter { color:#d33 } +.syntaxhl .string { background-color:hsla(0,100%,50%,0.05); } +.syntaxhl .string .char { color: #b0b } +.syntaxhl .string .content { color: #D20 } +.syntaxhl .string .delimiter { color: #710 } +.syntaxhl .string .modifier { color: #E40 } +.syntaxhl .symbol { color:#A60 } +.syntaxhl .symbol .content { color:#A60 } +.syntaxhl .symbol .delimiter { color:#740 } .syntaxhl .tag { color:#070; font-weight:bold } .syntaxhl .type { color:#339; font-weight:bold } .syntaxhl .value { color: #088 } |