@schukai/monster 4.150.6 → 4.150.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,328 +0,0 @@
1
- @charset "utf-8";
2
-
3
- body {
4
- margin:0;
5
- }
6
-
7
- #mocha {
8
- font: 20px/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif;
9
- margin: 60px 50px;
10
- }
11
-
12
- #mocha ul,
13
- #mocha ul,
14
- #mocha li {
15
- margin: 0;
16
- padding: 0;
17
- }
18
-
19
- #mocha ul {
20
- list-style: none;
21
- }
22
-
23
- #mocha h1,
24
- #mocha h2 {
25
- margin: 0;
26
- }
27
-
28
- #mocha h1 {
29
- margin-top: 15px;
30
- font-size: 1em;
31
- font-weight: 200;
32
- }
33
-
34
- #mocha h1 a {
35
- text-decoration: none;
36
- color: inherit;
37
- }
38
-
39
- #mocha h1 a:hover {
40
- text-decoration: underline;
41
- }
42
-
43
- #mocha .suite .suite h1 {
44
- margin-top: 0;
45
- font-size: .8em;
46
- }
47
-
48
- #mocha .hidden {
49
- display: none;
50
- }
51
-
52
- #mocha h2 {
53
- font-size: 12px;
54
- font-weight: normal;
55
- cursor: pointer;
56
- }
57
-
58
- #mocha .suite {
59
- margin-left: 15px;
60
- }
61
-
62
- #mocha .test {
63
- margin-left: 15px;
64
- overflow: hidden;
65
- }
66
-
67
- #mocha .test.pending:hover h2::after {
68
- content: '(pending)';
69
- font-family: arial, sans-serif;
70
- }
71
-
72
- #mocha .test.pass.medium .duration {
73
- background: #c09853;
74
- }
75
-
76
- #mocha .test.pass.slow .duration {
77
- background: #b94a48;
78
- }
79
-
80
- #mocha .test.pass::before {
81
- content: '✓';
82
- font-size: 12px;
83
- display: block;
84
- float: left;
85
- margin-right: 5px;
86
- color: #00d6b2;
87
- }
88
-
89
- #mocha .test.pass .duration {
90
- font-size: 9px;
91
- margin-left: 5px;
92
- padding: 2px 5px;
93
- color: #fff;
94
- -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.2);
95
- -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.2);
96
- box-shadow: inset 0 1px 1px rgba(0,0,0,.2);
97
- -webkit-border-radius: 5px;
98
- -moz-border-radius: 5px;
99
- -ms-border-radius: 5px;
100
- -o-border-radius: 5px;
101
- border-radius: 5px;
102
- }
103
-
104
- #mocha .test.pass.fast .duration {
105
- display: none;
106
- }
107
-
108
- #mocha .test.pending {
109
- color: #0b97c4;
110
- }
111
-
112
- #mocha .test.pending::before {
113
- content: '◦';
114
- color: #0b97c4;
115
- }
116
-
117
- #mocha .test.fail {
118
- color: #c00;
119
- }
120
-
121
- #mocha .test.fail pre {
122
- color: black;
123
- }
124
-
125
- #mocha .test.fail::before {
126
- content: '✖';
127
- font-size: 12px;
128
- display: block;
129
- float: left;
130
- margin-right: 5px;
131
- color: #c00;
132
- }
133
-
134
- #mocha .test pre.error {
135
- color: #c00;
136
- max-height: 300px;
137
- overflow: auto;
138
- }
139
-
140
- #mocha .test .html-error {
141
- overflow: auto;
142
- color: black;
143
- display: block;
144
- float: left;
145
- clear: left;
146
- font: 12px/1.5 monaco, monospace;
147
- margin: 5px;
148
- padding: 15px;
149
- border: 1px solid #eee;
150
- max-width: 85%; /*(1)*/
151
- max-width: -webkit-calc(100% - 42px);
152
- max-width: -moz-calc(100% - 42px);
153
- max-width: calc(100% - 42px); /*(2)*/
154
- max-height: 300px;
155
- word-wrap: break-word;
156
- border-bottom-color: #ddd;
157
- -webkit-box-shadow: 0 1px 3px #eee;
158
- -moz-box-shadow: 0 1px 3px #eee;
159
- box-shadow: 0 1px 3px #eee;
160
- -webkit-border-radius: 3px;
161
- -moz-border-radius: 3px;
162
- border-radius: 3px;
163
- }
164
-
165
- #mocha .test .html-error pre.error {
166
- border: none;
167
- -webkit-border-radius: 0;
168
- -moz-border-radius: 0;
169
- border-radius: 0;
170
- -webkit-box-shadow: 0;
171
- -moz-box-shadow: 0;
172
- box-shadow: 0;
173
- padding: 0;
174
- margin: 0;
175
- margin-top: 18px;
176
- max-height: none;
177
- }
178
-
179
- /**
180
- * (1): approximate for browsers not supporting calc
181
- * (2): 42 = 2*15 + 2*10 + 2*1 (padding + margin + border)
182
- * ^^ seriously
183
- */
184
- #mocha .test pre {
185
- display: block;
186
- float: left;
187
- clear: left;
188
- font: 12px/1.5 monaco, monospace;
189
- margin: 5px;
190
- padding: 15px;
191
- border: 1px solid #eee;
192
- max-width: 85%; /*(1)*/
193
- max-width: -webkit-calc(100% - 42px);
194
- max-width: -moz-calc(100% - 42px);
195
- max-width: calc(100% - 42px); /*(2)*/
196
- word-wrap: break-word;
197
- border-bottom-color: #ddd;
198
- -webkit-box-shadow: 0 1px 3px #eee;
199
- -moz-box-shadow: 0 1px 3px #eee;
200
- box-shadow: 0 1px 3px #eee;
201
- -webkit-border-radius: 3px;
202
- -moz-border-radius: 3px;
203
- border-radius: 3px;
204
- }
205
-
206
- #mocha .test h2 {
207
- position: relative;
208
- }
209
-
210
- #mocha .test a.replay {
211
- position: absolute;
212
- top: 3px;
213
- right: 0;
214
- text-decoration: none;
215
- vertical-align: middle;
216
- display: block;
217
- width: 15px;
218
- height: 15px;
219
- line-height: 15px;
220
- text-align: center;
221
- background: #eee;
222
- font-size: 15px;
223
- -webkit-border-radius: 15px;
224
- -moz-border-radius: 15px;
225
- border-radius: 15px;
226
- -webkit-transition:opacity 200ms;
227
- -moz-transition:opacity 200ms;
228
- -o-transition:opacity 200ms;
229
- transition: opacity 200ms;
230
- opacity: 0.3;
231
- color: #888;
232
- }
233
-
234
- #mocha .test:hover a.replay {
235
- opacity: 1;
236
- }
237
-
238
- #mocha-report.pass .test.fail {
239
- display: none;
240
- }
241
-
242
- #mocha-report.fail .test.pass {
243
- display: none;
244
- }
245
-
246
- #mocha-report.pending .test.pass,
247
- #mocha-report.pending .test.fail {
248
- display: none;
249
- }
250
- #mocha-report.pending .test.pass.pending {
251
- display: block;
252
- }
253
-
254
- #mocha-error {
255
- color: #c00;
256
- font-size: 1.5em;
257
- font-weight: 100;
258
- letter-spacing: 1px;
259
- }
260
-
261
- #mocha-stats {
262
- position: fixed;
263
- top: 85px;
264
- right: 10px;
265
- font-size: 12px;
266
- margin: 0;
267
- color: #000000;
268
- z-index: 1;
269
- border-radius: 13px;
270
- padding: 2px 5px;
271
- }
272
-
273
- #mocha-stats .progress {
274
- float: right;
275
- padding-top: 0;
276
-
277
- /**
278
- * Set safe initial values, so mochas .progress does not inherit these
279
- * properties from Bootstrap .progress (which causes .progress height to
280
- * equal line height set in Bootstrap).
281
- */
282
- height: auto;
283
- -webkit-box-shadow: none;
284
- -moz-box-shadow: none;
285
- box-shadow: none;
286
- background-color: initial;
287
- }
288
-
289
- #mocha-stats em {
290
- color: black;
291
- }
292
-
293
- #mocha-stats a {
294
- text-decoration: none;
295
- color: inherit;
296
- }
297
-
298
- #mocha-stats a:hover {
299
- border-bottom: 1px solid #eee;
300
- }
301
-
302
- #mocha-stats li {
303
- display: inline-block;
304
- margin: 0 5px;
305
- list-style: none;
306
- padding-top: 11px;
307
- }
308
-
309
- #mocha-stats canvas {
310
- width: 40px;
311
- height: 40px;
312
- }
313
-
314
- #mocha code .comment { color: #ddd; }
315
- #mocha code .init { color: #2f6fad; }
316
- #mocha code .string { color: #5890ad; }
317
- #mocha code .keyword { color: #8a6343; }
318
- #mocha code .number { color: #2f6fad; }
319
-
320
- @media screen and (max-device-width: 480px) {
321
- #mocha {
322
- margin: 60px 0px;
323
- }
324
-
325
- #mocha #stats {
326
- position: absolute;
327
- }
328
- }