mirror of
https://github.com/filp/whoops.git
synced 2026-08-31 04:27:52 +00:00
Move exception title/message to left over the frames list
This commit is contained in:
@@ -51,9 +51,9 @@ header {
|
||||
}
|
||||
|
||||
.exc-message {
|
||||
font-size: 32px;
|
||||
font-size: 20px;
|
||||
word-wrap: break-word;
|
||||
margin: 3px 0 0 0;
|
||||
margin: 4px 0 0 0;
|
||||
color: white;
|
||||
}
|
||||
|
||||
@@ -66,7 +66,7 @@ header {
|
||||
height: 100%;
|
||||
overflow: auto;
|
||||
float: right;
|
||||
width: 75%;
|
||||
width: 70%;
|
||||
background: #fafafa;
|
||||
}
|
||||
.details {
|
||||
@@ -78,7 +78,7 @@ header {
|
||||
height: 100%;
|
||||
overflow: auto;
|
||||
float: left;
|
||||
width: 25%;
|
||||
width: 30%;
|
||||
}
|
||||
.frame {
|
||||
padding: 14px;
|
||||
@@ -420,10 +420,10 @@ kbd {
|
||||
}
|
||||
|
||||
.details-container {
|
||||
width: 70%;
|
||||
width: 65%;
|
||||
}
|
||||
|
||||
.frames-container {
|
||||
width: 30%;
|
||||
width: 35%;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -14,12 +14,12 @@
|
||||
<body>
|
||||
|
||||
<div class="Whoops container">
|
||||
<header>
|
||||
<?php $tpl->render($header) ?>
|
||||
</header>
|
||||
|
||||
<div class="stack-container">
|
||||
<div class="frames-container cf <?php echo (!$has_frames ? 'empty' : '') ?>">
|
||||
<header>
|
||||
<?php $tpl->render($header) ?>
|
||||
</header>
|
||||
|
||||
<?php $tpl->render($frame_list) ?>
|
||||
</div>
|
||||
<div class="details-container cf">
|
||||
|
||||
Reference in New Issue
Block a user