diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2012-02-15 02:33:10 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2012-02-15 02:37:07 +0530 |
commit | 4baaf0a0fec19eab68b3e39709f2b6856cee3b43 (patch) | |
tree | 331e94088ebedc01bd0732fc6f012ad728daa1bd /railties | |
parent | 4f6d31011050dc748ef40769a9e9ad06c483c4df (diff) | |
download | rails-4baaf0a0fec19eab68b3e39709f2b6856cee3b43.tar.gz rails-4baaf0a0fec19eab68b3e39709f2b6856cee3b43.tar.bz2 rails-4baaf0a0fec19eab68b3e39709f2b6856cee3b43.zip |
CSS fix for guides. Closing #5028 [ci skip]
In Ubuntu Chrome, in the last lines of code blocks, the underscore isn't
visible. Increasing the line height slightly seems to fix this. This
problem doesn't exist in Firefox even on Ubuntu. Too lazy to test in
any other OS-browser combo :)
Diffstat (limited to 'railties')
-rw-r--r-- | railties/guides/assets/stylesheets/fixes.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/assets/stylesheets/fixes.css b/railties/guides/assets/stylesheets/fixes.css index 54efa5b9b7..bf86b29efa 100644 --- a/railties/guides/assets/stylesheets/fixes.css +++ b/railties/guides/assets/stylesheets/fixes.css @@ -12,5 +12,5 @@ .syntaxhighlighter table thead, .syntaxhighlighter table caption, .syntaxhighlighter textarea { - line-height: 1.2em !important; + line-height: 1.25em !important; } |