-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconsole.css
86 lines (82 loc) · 1.35 KB
/
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
.mobile-console__holder
{
background-color: #eee;
position: fixed;
bottom: 0;
left: 0;
z-index: 999;
width: 100%;
padding: 10px;
padding-left: 20px;
max-height: 200px;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
font-family: monospace;
font-size: 12px;
overflow-x: hidden;
}
.mobile-console__log
{
color: black;
}
.mobile-console__props
{
padding-left: 15px;
display: none;
clear: both;
}
.mobile-console__props.visible
{
display: block;
}
.mobile-console__node
{
position: relative;
}
.mobile-console__node.number
{
color: #2d46d6;
}
.mobile-console__node.string
{
color: #c83631;
}
.mobile-console__node.null
{
color: #838080;
}
.mobile-console__log:before
{
border-style: solid;
display: inline-block;
position: relative;
margin: 2px 4px 0 -12px;
border-color: transparent;
float: left;
}
.mobile-console__log.inspect:before
{
content: '';
border-width: 4px 0 4px 8px;
border-left-color: #838383;
}
.mobile-console__log.opened:before
{
content: '';
border-width: 8px 4px 0 4px;
border-top-color: #838383;
}
.mobile-console__top
{
white-space: nowrap;
}
.mobile-console__enumerable-key
{
margin-right: 10px;
color: #881391;
}
.mobile-console__not-enumerable-key
{
color: #b771bd;
margin-right: 10px;
}