mockaton 12.3.2 → 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 CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "mockaton",
3
3
  "description": "HTTP Mock Server",
4
4
  "type": "module",
5
- "version": "12.3.2",
5
+ "version": "12.3.4",
6
6
  "exports": {
7
7
  ".": {
8
8
  "import": "./index.js",
package/src/client/app.js CHANGED
@@ -333,6 +333,7 @@ function renderRow(method, urlMask) {
333
333
  break
334
334
  case 'SELECT':
335
335
  oldEl.replaceChildren(...newEl.cloneNode(true).children)
336
+ oldEl.className = newEl.className
336
337
  oldEl.disabled = newEl.disabled
337
338
  oldEl.value = newEl.value
338
339
  break
@@ -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: 122px;
423
+ margin-left: 118px;
416
424
 
417
425
  &.canProxy {
418
- margin-left: 160px;
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);