mockaton 12.3.3 → 12.3.4
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/package.json +1 -1
- package/src/client/styles.css +11 -2
package/package.json
CHANGED
package/src/client/styles.css
CHANGED
|
@@ -111,6 +111,7 @@ select {
|
|
|
111
111
|
background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23888888'><path d='M16.59 8.59 12 13.17 7.41 8.59 6 10l6 6 6-6z'/></svg>") no-repeat;
|
|
112
112
|
background-size: 16px;
|
|
113
113
|
background-position: calc(100% - 3px) center;
|
|
114
|
+
transition: all 240ms ease-out;
|
|
114
115
|
|
|
115
116
|
&:enabled {
|
|
116
117
|
border-color: var(--colorSecondaryActionBorder);
|
|
@@ -217,6 +218,13 @@ header {
|
|
|
217
218
|
color: var(--colorLabel);
|
|
218
219
|
font-size: 11px;
|
|
219
220
|
gap: 4px;
|
|
221
|
+
transition: color 200ms ease-out;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
&:hover {
|
|
225
|
+
span {
|
|
226
|
+
color: var(--colorText);
|
|
227
|
+
}
|
|
220
228
|
}
|
|
221
229
|
|
|
222
230
|
input[type=url],
|
|
@@ -412,10 +420,10 @@ main {
|
|
|
412
420
|
margin-left: 100px;
|
|
413
421
|
}
|
|
414
422
|
&.nonGroupedByMethod {
|
|
415
|
-
margin-left:
|
|
423
|
+
margin-left: 118px;
|
|
416
424
|
|
|
417
425
|
&.canProxy {
|
|
418
|
-
margin-left:
|
|
426
|
+
margin-left: 146px;
|
|
419
427
|
}
|
|
420
428
|
}
|
|
421
429
|
}
|
|
@@ -583,6 +591,7 @@ main {
|
|
|
583
591
|
&:not(:checked):enabled:hover + .checkboxBody {
|
|
584
592
|
border-color: var(--colorRed);
|
|
585
593
|
color: var(--colorRed);
|
|
594
|
+
background: var(--colorLightRed);
|
|
586
595
|
}
|
|
587
596
|
&:checked + .checkboxBody {
|
|
588
597
|
border-color: var(--colorRed);
|