mockaton 8.0.2 → 8.0.3

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": "A deterministic server-side for developing and testing frontend clients",
4
4
  "type": "module",
5
- "version": "8.0.2",
5
+ "version": "8.0.3",
6
6
  "main": "index.js",
7
7
  "types": "index.d.ts",
8
8
  "license": "MIT",
package/src/Dashboard.css CHANGED
@@ -7,7 +7,7 @@
7
7
  --color4xxBackground: #ffedd1;
8
8
  --colorAccent: #1e88e5;
9
9
  --colorBackground: #fff;
10
- --colorHeaderBackground: #eee;
10
+ --colorHeaderBackground: #f4f4f4;
11
11
  --colorComboBoxBackground: #fafafa;
12
12
  --colorComboBoxHeaderBackground: #fff;
13
13
  --colorDisabled: #555;
@@ -83,8 +83,8 @@ menu {
83
83
  width: 100%;
84
84
  align-items: flex-end;
85
85
  padding: 20px 16px;
86
+ border-bottom: 1px solid rgba(127, 127, 127, 0.1);
86
87
  background: var(--colorHeaderBackground);
87
- border-bottom: 1px solid rgba(127, 127, 127, 0.17);
88
88
  gap: 16px;
89
89
 
90
90
  img {
@@ -103,6 +103,7 @@ menu {
103
103
  select {
104
104
  width: 150px;
105
105
  padding: 4px;
106
+ border-right: 3px solid transparent;
106
107
  margin-top: 2px;
107
108
  font-size: 11px;
108
109
  background: var(--colorComboBoxHeaderBackground);
@@ -204,6 +205,7 @@ main {
204
205
  width: 300px;
205
206
  padding: 8px 1px;
206
207
  border: 0;
208
+ border-left: 3px solid transparent;
207
209
  border-radius: 4px;
208
210
  text-align: right;
209
211
  direction: rtl;
@@ -324,10 +326,10 @@ main {
324
326
  }
325
327
 
326
328
  a {
329
+ display: inline-block;
330
+ padding: 6px 0;
327
331
  color: var(--colorAccent);
328
332
  text-decoration: none;
329
- padding: 6px 0;
330
- display: inline-block;
331
333
 
332
334
  &:hover {
333
335
  text-decoration: underline;