inertia-bootstrap-forms 1.0.29 → 1.0.30
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 +2 -2
- package/src/css/from-select.scss +11 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "inertia-bootstrap-forms",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.30",
|
|
4
4
|
"description": "Create bootstrap forms with inertia and twitter bootstrap",
|
|
5
5
|
"main": "dist/inertia-bootstrap-forms.cjs.js",
|
|
6
6
|
"module": "dist/inertia-bootstrap-forms.es.js",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"vue3-bootstrap-components": "1.0.42"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
|
-
"@inertiajs/vue3": ">2.0
|
|
48
|
+
"@inertiajs/vue3": ">2.0",
|
|
49
49
|
"vue": "^3.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
package/src/css/from-select.scss
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
.choices.is-disabled .choices__inner, .choices.is-disabled .choices__input {
|
|
23
|
-
background-color: #
|
|
23
|
+
background-color: var(--bs-body-bg, #ffffff);
|
|
24
24
|
cursor: not-allowed;
|
|
25
25
|
-webkit-user-select: none;
|
|
26
26
|
user-select: none
|
|
@@ -195,9 +195,9 @@
|
|
|
195
195
|
font-weight: 500;
|
|
196
196
|
margin-right: 3.75px;
|
|
197
197
|
margin-bottom: 3.75px;
|
|
198
|
-
background-color: #999999;
|
|
199
|
-
border: 1px solid #999999;
|
|
200
|
-
color: #
|
|
198
|
+
background-color: var(--bs-body-secondary, #999999);
|
|
199
|
+
border: 1px solid var(--bs-body-secondary, #999999);
|
|
200
|
+
color: var(--bs-body-color, #ffffff);
|
|
201
201
|
word-break: break-all;
|
|
202
202
|
box-sizing: border-box
|
|
203
203
|
}
|
|
@@ -212,13 +212,13 @@
|
|
|
212
212
|
}
|
|
213
213
|
|
|
214
214
|
.choices__list--multiple .choices__item.is-highlighted {
|
|
215
|
-
background-color: #
|
|
216
|
-
border: 1px solid #003642
|
|
215
|
+
background-color: var(--bs-secondary, #003642);
|
|
216
|
+
border: 1px solid var(--bs-secondary, #003642)
|
|
217
217
|
}
|
|
218
218
|
|
|
219
219
|
.is-disabled .choices__list--multiple .choices__item {
|
|
220
|
-
background-color: #
|
|
221
|
-
border: 1px solid #
|
|
220
|
+
background-color: var(--bs-secondary, #003642);
|
|
221
|
+
border: 1px solid var(--bs-secondary, #003642)
|
|
222
222
|
}
|
|
223
223
|
|
|
224
224
|
.choices__list--dropdown, .choices__list[aria-expanded] {
|
|
@@ -226,8 +226,8 @@
|
|
|
226
226
|
z-index: 99999;
|
|
227
227
|
position: absolute;
|
|
228
228
|
width: 100%;
|
|
229
|
-
background-color: #
|
|
230
|
-
border: 1px solid #ddd;
|
|
229
|
+
background-color: var(--bs-secondary-bg, #ddd);
|
|
230
|
+
border: 1px solid var(--bs-secondary-bg, #ddd);
|
|
231
231
|
top: 100%;
|
|
232
232
|
margin-top: -1px;
|
|
233
233
|
border-bottom-left-radius: var(--bs-border-radius);
|
|
@@ -241,7 +241,7 @@
|
|
|
241
241
|
}
|
|
242
242
|
|
|
243
243
|
.is-open .choices__list--dropdown, .is-open .choices__list[aria-expanded] {
|
|
244
|
-
border-color: #b7b7b7
|
|
244
|
+
border-color: var(--bs-secondary-bg, #b7b7b7)
|
|
245
245
|
}
|
|
246
246
|
|
|
247
247
|
.is-flipped .choices__list--dropdown, .is-flipped .choices__list[aria-expanded] {
|