mockaton 8.1.6 → 8.1.7

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.1.6",
5
+ "version": "8.1.7",
6
6
  "main": "index.js",
7
7
  "types": "index.d.ts",
8
8
  "license": "MIT",
package/src/Dashboard.css CHANGED
@@ -6,12 +6,12 @@
6
6
  :root {
7
7
  --color4xxBackground: #ffedd1;
8
8
  --colorAccent: #0072d6;
9
- --colorAccentAlt: #01873b;
9
+ --colorAccentAlt: #0e906c;
10
10
  --colorBackground: #fff;
11
11
  --colorHeaderBackground: #f4f4f4;
12
12
  --colorComboBoxBackground: #fafafa;
13
13
  --colorComboBoxHeaderBackground: #fff;
14
- --colorDisabled: #555;
14
+ --colorDisabled: #444;
15
15
  --colorHover: #dfefff;
16
16
  --colorLabel: #666;
17
17
  --colorLightRed: #ffe4ee;
@@ -190,7 +190,7 @@ main {
190
190
  display: inline-block;
191
191
  width: 280px;
192
192
  padding: 8px 6px;
193
- border-radius: 4px;
193
+ border-radius: 0;
194
194
  color: var(--colorAccent);
195
195
  text-decoration: none;
196
196
 
@@ -205,10 +205,11 @@ main {
205
205
 
206
206
  .MockSelector {
207
207
  width: 300px;
208
+ height: 30px;
208
209
  padding: 8px 1px;
209
210
  border: 0;
210
211
  border-left: 3px solid transparent;
211
- border-radius: 4px;
212
+ border-radius: 0;
212
213
  text-align: right;
213
214
  direction: rtl;
214
215
  text-overflow: ellipsis;
@@ -218,6 +219,7 @@ main {
218
219
  background: var(--color4xxBackground);
219
220
  }
220
221
  &:disabled {
222
+ padding-right: 4px;
221
223
  appearance: none;
222
224
  background: transparent;
223
225
  cursor: default;