-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjavascript-console.css
125 lines (104 loc) · 1.89 KB
/
javascript-console.css
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
.javascript-console {
background: white;
display: flex;
flex-flow: column;
}
.toolbar {
border-bottom: 1px solid #C8C8C8;
box-shadow: 0 1px 2px #C8C8C8;
width: 100%;
}
.toolbar > * {
float: left;
}
.toolbar .fa {
padding: 0.6em;
}
.toolbar .filter {
border: 1px solid #DCDCDC;
border-radius: 0.5em;
font-size: 0.9em;
margin: 0.4em 0.5em 0 0.5em;
outline: none;
padding: 0.1em 0.5em 0.1em 0.5em;
width: 10em;
}
.history {
flex-grow: 1;
font-size: 0.9em;
overflow-y: auto;
padding-top: 2px;
width: 100%;
}
.history .line {
border-bottom: 1px solid #ddd;
display: block;
font: 0.95em monospace, monospace;
line-height: 2em;
overflow: hidden;
padding: 0 0.5em 0 0.5em;
word-wrap: break-word;
}
.history .line .fa {
margin-right: 0.4em;
text-align: center;
width: 1em;
}
.history .line.error, .history .line.assert, .history .line.exception {
background: rgba(235, 57, 65, 0.1);
color: rgb(235, 57, 65);
}
.history .line.warn {
background: rgba(227, 179, 14, 0.1);
color: rgb(227, 179, 14);
}
.history .line.info {
background: rgba(42, 83, 205, 0.1);
color: rgb(42, 83, 205);
}
.history .line.log, .history .line.count, .history .line.code {
color: #888;
}
.history .fileref {
float: right;
margin-left: 1em;
}
.history .filtered-out {
display: none;
}
.history .content span + span {
margin-left: 0.8em;
}
.history .keyword {
font-style: italic;
}
.history .expandable {
cursor: pointer;
text-decoration: underline;
}
.history .expansion {
display: none;
}
.history .expansion.expanded {
display: inline;
}
.history .indent {
background: #F0F0F0;
padding-left: 2em;
}
.history a {
color: inherit;
cursor: pointer;
text-decoration: underline;
}
.code-input {
border: none;
border-radius: 0;
border-top: 1px solid #C8C8C8;
box-shadow: 0 -1px 2px #C8C8C8;
box-sizing: border-box;
font-size: 0.8em;
outline: none;
padding: 0.4em 0.6em 0.4em 0.6em;
width: 100%;
}