diff options
author | Bas van IJzendoorn <basvijzendoorn@gmail.com> | 2016-02-27 13:40:37 +0100 |
---|---|---|
committer | basvijzendoorn <basvijzendoorn@gmail.com> | 2016-02-29 11:10:26 +0100 |
commit | bb7c8df5b0c6514feecd0e009b47ee7de31864f1 (patch) | |
tree | d009739c6d25eb00e6cff77d0580ea6b992f99c9 | |
parent | b884ee6fa90a0fa96bb40322393815ec78ff805c (diff) | |
download | rails-bb7c8df5b0c6514feecd0e009b47ee7de31864f1.tar.gz rails-bb7c8df5b0c6514feecd0e009b47ee7de31864f1.tar.bz2 rails-bb7c8df5b0c6514feecd0e009b47ee7de31864f1.zip |
Fix value of CSS background-color property in Rails guide
Change background-color value to transparent, which is the default value of background-color.
[ci skip]
-rw-r--r-- | guides/assets/stylesheets/syntaxhighlighter/shThemeRailsGuides.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/assets/stylesheets/syntaxhighlighter/shThemeRailsGuides.css b/guides/assets/stylesheets/syntaxhighlighter/shThemeRailsGuides.css index 6d2edb2eb8..bc7afd3898 100644 --- a/guides/assets/stylesheets/syntaxhighlighter/shThemeRailsGuides.css +++ b/guides/assets/stylesheets/syntaxhighlighter/shThemeRailsGuides.css @@ -90,7 +90,7 @@ } .syntaxhighlighter .script { color: #222 !important; - background-color: none !important; + background-color: transparent !important; } .syntaxhighlighter .color1, .syntaxhighlighter .color1 a { color: gray !important; |