-
Notifications
You must be signed in to change notification settings - Fork 4
/
styles.css
122 lines (103 loc) · 2.49 KB
/
styles.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
.ddp-inspector-reset, #Constellation .ddp-inspector-reset {
position: fixed;
left: 20%;
top: 0;
height: 30px;
width: 5%;
}
.ddp-inspector-panel, .ddp-inspector-panel *, #Constellation .ddp-inspector-panel, #Constellation .ddp-inspector-panel * {
box-sizing: border-box;
font-family: 'Arial';
}
.ddp-inspector-panel, #constellation-ddp-inspector-panel {
position: fixed;
top: 30px;
left: 0;
bottom: 0;
width: 25%;
overflow: auto;
background: #dddddd;
font-size: 12px;
opacity: 0.9;
z-index: 10000000000;
}
.ddp-inspector-panel pre, #Constellation .ddp-inspector-panel pre {
padding: 0;
border: 0;
background: none;
line-height: 1;
overflow-y: hidden;
margin: 0;
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
.ddp-message, #Constellation .ddp-message {
padding: 5px;
background: #f1f1f1;
margin-bottom: 3px;
max-height: 200px;
overflow: hidden;
transition: 3s;
}
.ddp-message.inserted, #Constellation .ddp-message.inserted {
background: #BBFDBB;
}
.ddp-message:hover, #Constellation .ddp-message:hover {
background: #d1d1d1;
max-height: 9000px;
}
.ddp-inspector-search, #Constellation .ddp-inspector-search {
width: 20%;
position: fixed;
top: 0;
height: 30px;
left: 0;
}
div.ddp-inspector-arrow, #Constellation div.ddp-inspector-arrow {
float: right;
font-size-adjust: 1 !important;
}
/* Different CSS required for Constellation integration */
#Constellation .ddp-inspector-panel, #Constellation .ddp-inspector-reset, #Constellation .ddp-inspector-search {
position: relative;
}
#Constellation .ddp-inspector-panel {
background: inherit;
top: auto;
left: auto;
width: inherit;
}
#Constellation .ddp-inspector-panel .Constellation-docViewer pre {
white-space: pre-wrap;
}
#Constellation input.ddp-inspector-search, #Constellation input.ddp-inspector-reset {
height: inherit !important;
color: rgba(0,0,0,0.92);
width: 80%;
left: auto;
top: auto;
font-size: smaller !important;
padding: 0 !important;
float: left;
border-radius: 0;
}
#Constellation input.ddp-inspector-reset {
width: 20%;
float: right;
transition: 0.3s;
}
#Constellation input.ddp-inspector-reset:hover {
opacity: 0.9;
}
#Constellation .ddp-message {
padding: 5px;
background: rgba(255,255,255,0);
}
#Constellation .ddp-message:hover {
background: rgba(255,255,255,0.1);
}
#Constellation .Constellation_documentViewer .ddp-message pre {
white-space: pre-wrap;
}
#Constellation div.ddp-inspector-arrow {
color: #fff;
}