diff options
author | Michael Koziarski <michael@koziarski.com> | 2006-01-13 21:28:51 +0000 |
---|---|---|
committer | Michael Koziarski <michael@koziarski.com> | 2006-01-13 21:28:51 +0000 |
commit | f9e0ba2913052f34d4873ba804502d91ae2f6ca7 (patch) | |
tree | 0f2cee429828fb4e82ad3838bc80ad32213f0487 /actionpack | |
parent | 35c50bf93822d8af19b9bc1959a38a1bb8af67b7 (diff) | |
download | rails-f9e0ba2913052f34d4873ba804502d91ae2f6ca7.tar.gz rails-f9e0ba2913052f34d4873ba804502d91ae2f6ca7.tar.bz2 rails-f9e0ba2913052f34d4873ba804502d91ae2f6ca7.zip |
Correct the case of the CSS declarations. [Blair Zajac] Closes #3171
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3416 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_controller/templates/scaffolds/layout.rhtml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/actionpack/lib/action_controller/templates/scaffolds/layout.rhtml b/actionpack/lib/action_controller/templates/scaffolds/layout.rhtml index 34e43cc8d3..120f0cfb62 100644 --- a/actionpack/lib/action_controller/templates/scaffolds/layout.rhtml +++ b/actionpack/lib/action_controller/templates/scaffolds/layout.rhtml @@ -28,7 +28,7 @@ display: table; } - #ErrorExplanation { + #errorExplanation { width: 400px; border: 2px solid red; padding: 7px; @@ -37,7 +37,7 @@ background-color: #f0f0f0; } - #ErrorExplanation h2 { + #errorExplanation h2 { text-align: left; font-weight: bold; padding: 5px 5px 5px 15px; @@ -47,13 +47,13 @@ color: #fff; } - #ErrorExplanation p { + #errorExplanation p { color: #333; margin-bottom: 0; padding: 5px; } - #ErrorExplanation ul li { + #errorExplanation ul li { font-size: 12px; list-style: square; } |