diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-04-23 13:34:13 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-04-23 13:34:13 -0300 |
commit | 0df2f7faef2933cf1d3d6e797a1f2e808ef92f7b (patch) | |
tree | 7187da40cf185df3c43d089b935795e0581dbad7 | |
parent | 805bfc9886c871262b8e5d6b0141b059765b950d (diff) | |
parent | 46f511440571b37909a5950f2d5d3b50edbfabf0 (diff) | |
download | rails-0df2f7faef2933cf1d3d6e797a1f2e808ef92f7b.tar.gz rails-0df2f7faef2933cf1d3d6e797a1f2e808ef92f7b.tar.bz2 rails-0df2f7faef2933cf1d3d6e797a1f2e808ef92f7b.zip |
Merge pull request #19875 from cllns/fix-css-formatting-in-welcome-index
Fix CSS formatting in welcome#index.html.erb
-rw-r--r-- | railties/lib/rails/templates/rails/welcome/index.html.erb | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/railties/lib/rails/templates/rails/welcome/index.html.erb b/railties/lib/rails/templates/rails/welcome/index.html.erb index 6726c23fc9..acf04af416 100644 --- a/railties/lib/rails/templates/rails/welcome/index.html.erb +++ b/railties/lib/rails/templates/rails/welcome/index.html.erb @@ -18,7 +18,9 @@ color: #000; } - a {color: #03c} + a { + color: #03c; + } a:hover { background-color: #03c; @@ -64,7 +66,10 @@ height: 64px; } - #header h1, #header h2 {margin: 0} + #header h1, + #header h2 { + margin: 0; + } #header h2 { color: #888; @@ -104,7 +109,9 @@ color: #555; } - #about-content td.value {color: #000} + #about-content td.value { + color: #000; + } #about-content ul { padding: 0; |