-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCustom.css
More file actions
64 lines (62 loc) · 1.56 KB
/
Copy pathCustom.css
File metadata and controls
64 lines (62 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/* font for xdebug */
.xdebug-error, .xdebug-var-dump {
font: normal 8pt/1.1em "Source Code Pro", "Courier new", Courier, "Andale Mono", monospace;
}
/* xdebug errors, a bit more beautiful */
/* table */
.xdebug-error {
color: #2c3e50;
border-collapse: collapse;
border-color: transparent!important;
border-spacing: 0;
text-align: left;
}
/* border left */
.xdebug-error tbody {
border-left: 11px solid #e74c3c!important;
}
/* content */
.xdebug-error th, .xdebug-error td {
padding: .4em!important;
background: #ecf0f1!important;
}
/* error message */
.xdebug-error tbody tr:first-child th:first-child {
background: #7f8c8d!important;
color: #ecf0f1!important;
}
/* ( ! ) and call stack */
.xdebug-error tbody tr:first-child th:first-child span:first-child,
.xdebug-error tbody tr:nth-child(2) th {
display: none;
}
/* xdebug var_dumps */
.xdebug-var-dump {
background: #ecf0f1;
padding: 0.1em 0.5em 0.3em 0.7em;
border-left: 11px solid #1abc9c;
margin: 1.7em 0 1.7em 0.3em;
overflow: auto;
width: 93%;
color: #34495e;
}
*:first-child+html .xdebug-var-dump {
padding-bottom: 2em;
overflow-y: hidden;
overflow: visible;
overflow-x: auto;
}
* html pre.xdebug-var-dump {
padding-bottom: 2em;
overflow: visible;
overflow-x: auto;
}
.xdebug-var-dump font[color="#cc0000"] {
color: #e74c3c!important;
}
.xdebug-var-dump font[color="#4e9a06"] {
color: #27ae60!important;
}
.xdebug-var-dump font[color="#888a85"] {
color: #7f8c8d!important;
}