Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/webroot/rsrc/css/application/config/unhandled-exception.css
12242 views
1
/**
2
* @provides unhandled-exception-css
3
*/
4
5
.unhandled-exception-detail {
6
max-width: 760px;
7
margin: 24px auto;
8
background: #fff;
9
border: 1px solid #c0392b;
10
border-radius: 3px;
11
padding: 8px;
12
}
13
14
.unhandled-exception-detail .unhandled-exception-title {
15
color: #c0392b;
16
padding: 4px 8px 12px;
17
border-bottom: 1px solid #f4dddb;
18
font-size: 16px;
19
font-weight: 500;
20
margin: 0;
21
}
22
23
.unhandled-exception-detail .unhandled-exception-body {
24
padding: 16px 12px;
25
}
26
27
.unhandled-exception-with-stack {
28
max-width: 95%;
29
}
30
31
.unhandled-exception-stack {
32
background: #fcfcfc;
33
overflow-x: auto;
34
overflow-y: hidden;
35
}
36
37
.unhandled-exception-stack table {
38
border-spacing: 0;
39
border-collapse: collapse;
40
width: 100%;
41
border: 1px solid #d7d7d7;
42
}
43
44
.unhandled-exception-stack th {
45
background: #e7e7e7;
46
border-bottom: 1px solid #d7d7d7;
47
padding: 8px;
48
}
49
50
.unhandled-exception-stack td {
51
padding: 4px 8px;
52
white-space: nowrap;
53
}
54
55