Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix missing line and shadow on static error pages [ci skip] #12843

Merged
merged 1 commit into from
Nov 11, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions guides/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
* Fixed missing line and shadow on service pages(404, 422, 500).

*Dmitry Korotkov*

* Removed repetitive th tags. Instead of them added one th tag with a colspan attribute.

*Sıtkı Bağdat*
Expand Down
2 changes: 2 additions & 0 deletions guides/code/getting_started/public/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
border-top-right-radius: 9px;
background-color: white;
padding: 7px 4em 0 4em;
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
}

h1 {
Expand All @@ -37,6 +38,7 @@
background-color: #F7F7F7;
border: 1px solid #CCC;
border-right-color: #999;
border-left-color: #999;
border-bottom-color: #999;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
Expand Down
2 changes: 2 additions & 0 deletions guides/code/getting_started/public/422.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
border-top-right-radius: 9px;
background-color: white;
padding: 7px 4em 0 4em;
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
}

h1 {
Expand All @@ -37,6 +38,7 @@
background-color: #F7F7F7;
border: 1px solid #CCC;
border-right-color: #999;
border-left-color: #999;
border-bottom-color: #999;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
Expand Down
2 changes: 2 additions & 0 deletions guides/code/getting_started/public/500.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
border-top-right-radius: 9px;
background-color: white;
padding: 7px 4em 0 4em;
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
}

h1 {
Expand All @@ -37,6 +38,7 @@
background-color: #F7F7F7;
border: 1px solid #CCC;
border-right-color: #999;
border-left-color: #999;
border-bottom-color: #999;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
Expand Down
4 changes: 4 additions & 0 deletions railties/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
* Fixed missing line and shadow on service pages(404, 422, 500).

*Dmitry Korotkov*

* `BACKTRACE` environment variable to show unfiltered backtraces for
test failures.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
border-top-right-radius: 9px;
background-color: white;
padding: 7px 4em 0 4em;
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
}

h1 {
Expand All @@ -37,6 +38,7 @@
background-color: #F7F7F7;
border: 1px solid #CCC;
border-right-color: #999;
border-left-color: #999;
border-bottom-color: #999;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
border-top-right-radius: 9px;
background-color: white;
padding: 7px 4em 0 4em;
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
}

h1 {
Expand All @@ -37,6 +38,7 @@
background-color: #F7F7F7;
border: 1px solid #CCC;
border-right-color: #999;
border-left-color: #999;
border-bottom-color: #999;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
border-top-right-radius: 9px;
background-color: white;
padding: 7px 4em 0 4em;
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
}

h1 {
Expand All @@ -37,6 +38,7 @@
background-color: #F7F7F7;
border: 1px solid #CCC;
border-right-color: #999;
border-left-color: #999;
border-bottom-color: #999;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
Expand Down