mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
966778c2bd
Summary: Make the unhandled exception dialogs slightly more useful: - Make them easier to read. - Link to files from Phabricator libraries. - Don't show traces by default. - Show traces in development mode. - Rename button from "Cancel" to "Close" and only show it for Ajax. Test Plan: Rigged DirectoryHomeController to throw, loaded home page. Changed stack trace setting in config. Clicked some files in the trace. Reviewed By: aran Reviewers: aran, jungejason, tuomaspelkonen, codeblock CC: aran, epriestley Differential Revision: 823
90 lines
1.5 KiB
CSS
90 lines
1.5 KiB
CSS
/**
|
|
* @provides aphront-dialog-view-css
|
|
*/
|
|
|
|
.aphront-dialog-view {
|
|
width: 480px;
|
|
padding: 8px;
|
|
background: #666;
|
|
margin: auto;
|
|
}
|
|
|
|
.aphront-dialog-head {
|
|
background: #003366;
|
|
border: none;
|
|
font-size: 15px;
|
|
padding: 5px 12px 6px;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.aphront-dialog-view-width-form {
|
|
width: 600px;
|
|
}
|
|
|
|
.aphront-dialog-body {
|
|
background: #ffffff;
|
|
padding: 16px 12px;
|
|
border: none;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.aphront-dialog-tail {
|
|
border: none;
|
|
background: #ededed;
|
|
padding: 0.5em;
|
|
text-align: right;
|
|
}
|
|
|
|
.aphront-dialog-tail button,
|
|
.aphront-dialog-tail a.button {
|
|
float: right;
|
|
margin-left: .5em;
|
|
}
|
|
|
|
.jx-client-dialog {
|
|
position: absolute;
|
|
z-index: 6;
|
|
}
|
|
|
|
.jx-mask {
|
|
opacity: .37;
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=37)";
|
|
filter: alpha(opacity=37);
|
|
background: #222;
|
|
position: absolute;
|
|
z-index: 5;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: 100%;
|
|
}
|
|
|
|
.aphront-exception-dialog {
|
|
width: 95%;
|
|
}
|
|
|
|
.aphront-exception-dialog .aphront-dialog-head {
|
|
background: #aa0000;
|
|
}
|
|
|
|
.aphront-exception-dialog .exception-message {
|
|
font-size: 14px;
|
|
background: #efefef;
|
|
padding: 1em;
|
|
}
|
|
|
|
.aphront-exception-dialog .exception-trace {
|
|
margin-top: 1em;
|
|
padding: .5em 1em;
|
|
}
|
|
|
|
.aphront-exception-dialog .exception-trace-header {
|
|
font-size: 11px;
|
|
color: #666666;
|
|
border-bottom: 1px solid #aaaaaa;
|
|
padding-bottom: .5em;
|
|
margin-bottom: .5em;
|
|
}
|