loon-bulma-react 2025.0.8 → 2025.0.10
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/dist/index.cjs +3 -3
- package/dist/index.d.cts +87 -76
- package/dist/index.d.ts +87 -76
- package/dist/index.js +3 -3
- package/package.json +1 -1
- package/styles/_all.scss +1 -0
- package/styles/datalist.scss +27 -0
package/package.json
CHANGED
package/styles/_all.scss
CHANGED
|
@@ -209,6 +209,7 @@ $table-striped-row-even-hover-background-color: #f0f0f0 !default;
|
|
|
209
209
|
// @forward 'bulma/sass/form/checkbox-radio.scss'; // doen we zelf
|
|
210
210
|
// @forward 'bulma/sass/form/select.scss'; // doen we zelf
|
|
211
211
|
@forward 'bulma/sass/form/input-textarea.scss';
|
|
212
|
+
@forward 'datalist.scss';
|
|
212
213
|
|
|
213
214
|
// import bulma layouts
|
|
214
215
|
@forward 'bulma/sass/grid/columns.scss';
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
// TODO?: als custom datalist support wordt door browsers
|
|
2
|
+
// datalist {
|
|
3
|
+
// position: absolute;
|
|
4
|
+
// background-color: white !important;
|
|
5
|
+
// border: 1px solid blue;
|
|
6
|
+
// border-radius: 0 0 5px 5px;
|
|
7
|
+
// border-top: none;
|
|
8
|
+
// font-family: sans-serif;
|
|
9
|
+
// width: 350px;
|
|
10
|
+
// padding: 5px;
|
|
11
|
+
// max-height: 10rem;
|
|
12
|
+
// overflow-y: auto;
|
|
13
|
+
|
|
14
|
+
// option {
|
|
15
|
+
// background-color: white !important;
|
|
16
|
+
// padding: 4px;
|
|
17
|
+
// color: blue;
|
|
18
|
+
// margin-bottom: 1px;
|
|
19
|
+
// font-size: 18px;
|
|
20
|
+
// cursor: pointer;
|
|
21
|
+
// }
|
|
22
|
+
|
|
23
|
+
// option:hover,
|
|
24
|
+
// .active {
|
|
25
|
+
// background-color: lightblue;
|
|
26
|
+
// }
|
|
27
|
+
// }
|