bfg-common 1.0.22 → 1.0.24

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.
@@ -148,14 +148,6 @@ input[type='number'] {
148
148
  -moz-appearance: textfield;
149
149
  }
150
150
 
151
- .stack-block-expanded {
152
- .input-text-color {
153
- input {
154
- color: var(--row-selected-text-color);
155
- }
156
- }
157
- }
158
-
159
151
  .btn-trigger {
160
152
  width: 100%;
161
153
  @include flex($align: center);
@@ -26,6 +26,7 @@
26
26
  v-model="selectedMemory"
27
27
  :items="memoryOptions"
28
28
  :disabled="isMemoryDisabled"
29
+ class="input-text-color"
29
30
  @click.stop
30
31
  @select="selectMemory"
31
32
  />
@@ -37,6 +38,7 @@
37
38
  <select
38
39
  id="vm-wizard-memory-type-select"
39
40
  v-model="memoryType"
41
+ class="input-text-color"
40
42
  @click.stop
41
43
  >
42
44
  <option
@@ -59,7 +59,7 @@
59
59
  v-model.number="size"
60
60
  type="number"
61
61
  :class="[
62
- 'spinfree edit-setting-input',
62
+ 'spinfree edit-setting-input input-text-color',
63
63
  { 'has-error': hardDiskTypeErrorLocalText },
64
64
  ]"
65
65
  :disabled="isDisabledSize"
@@ -76,6 +76,7 @@
76
76
  :id="`hard-disk-type-select-${props.index}`"
77
77
  v-model="hardDiskType"
78
78
  :disabled="props.type === 'exist'"
79
+ class="input-text-color"
79
80
  @change="onValidateSize"
80
81
  @click.stop
81
82
  >
@@ -25,7 +25,7 @@
25
25
  <select
26
26
  :id="`vm-wizard-network-field-${props.index}`"
27
27
  v-model="selectedLocation"
28
- :class="`vm-wizard-network-field-${props.index}`"
28
+ :class="`vm-wizard-network-field-${props.index} input-text-color`"
29
29
  @click.stop
30
30
  @change="changeLocation"
31
31
  >
@@ -24,7 +24,7 @@
24
24
  <select
25
25
  id="vm-wizard-video-card"
26
26
  v-model="selectedVideoCard"
27
- class="vm-wizard-video-card"
27
+ class="vm-wizard-video-card input-text-color"
28
28
  @click.stop
29
29
  >
30
30
  <option
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.0.22",
4
+ "version": "1.0.24",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",