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

Make rescues layout responsive #36306

Merged
merged 1 commit into from May 20, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -2,6 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Action Controller: Exception caught</title>
<style>
body {
Expand Down Expand Up @@ -37,6 +38,7 @@
}

h1 {
overflow-wrap: break-word;
margin: 0.2em 0;
line-height: 1.1em;
font-size: 2em;
Expand All @@ -52,7 +54,7 @@
border-radius: 4px;
margin: 1em 0px;
display: block;
width: 978px;
max-width: 978px;
}

.summary {
Expand Down Expand Up @@ -80,7 +82,7 @@
.source {
border: 1px solid #D9D9D9;
background: #ECECEC;
width: 978px;
max-width: 978px;
}

.source pre {
Expand Down Expand Up @@ -116,7 +118,7 @@
}

.line.active {
background-color: #FFCCCC;
background-color: #FCC;
}

.button_to {
Expand All @@ -131,7 +133,10 @@

a { color: #980905; }
a:visited { color: #666; }
a.trace-frames { color: #666; }
a.trace-frames {
color: #666;
overflow-wrap: break-word;
}
a:hover { color: #C52F24; }
a.trace-frames.selected { color: #C52F24 }

Expand Down