@n1k1t/mock-server 0.1.33 → 0.1.34
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.
- package/lib/package.json +2 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -1
- package/public/scripts/main.js +310 -273
- package/public/styles/main.css +8 -6
package/public/styles/main.css
CHANGED
|
@@ -220,7 +220,6 @@ div.history div.meta span.transport, div.expectation div.meta span.transport {
|
|
|
220
220
|
font-size: 12px;
|
|
221
221
|
}
|
|
222
222
|
div.history div.meta span.method, div.expectation div.meta span.method {
|
|
223
|
-
background-color: #ffd37b;
|
|
224
223
|
color: #1e1e1e;
|
|
225
224
|
font-weight: bold;
|
|
226
225
|
}
|
|
@@ -286,8 +285,8 @@ div.history div.meta span.forward, div.expectation div.meta span.forward {
|
|
|
286
285
|
font-size: 12px;
|
|
287
286
|
}
|
|
288
287
|
div.history div.meta span.seed, div.expectation div.meta span.seed {
|
|
289
|
-
|
|
290
|
-
|
|
288
|
+
color: #a7ff7b;
|
|
289
|
+
font-size: 12px;
|
|
291
290
|
}
|
|
292
291
|
div.history div.meta span.cache, div.expectation div.meta span.cache {
|
|
293
292
|
background-color: #e1e1ff;
|
|
@@ -334,9 +333,12 @@ section#settings div.container p i {
|
|
|
334
333
|
section#settings div.container p span {
|
|
335
334
|
color: rgba(255, 255, 255, 0.2);
|
|
336
335
|
}
|
|
337
|
-
section#settings div.container div.panel button
|
|
338
|
-
background-color:
|
|
339
|
-
|
|
336
|
+
section#settings div.container div.panel button {
|
|
337
|
+
background-color: rgba(255, 255, 255, 0.1);
|
|
338
|
+
}
|
|
339
|
+
section#settings div.container div.panel button:not(.checked) {
|
|
340
|
+
background-color: rgba(255, 255, 255, 0);
|
|
341
|
+
color: rgba(255, 255, 255, 0.4) !important;
|
|
340
342
|
}
|
|
341
343
|
section#settings div.container#groups-filter button.checked {
|
|
342
344
|
pointer-events: all;
|