nk_jtb 0.12.2 → 0.12.4
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
|
@@ -71,7 +71,11 @@ $accordion-hover-bg: darken($accordion-bg, 5%) !default;
|
|
|
71
71
|
// ==========================================================================
|
|
72
72
|
// These styles are specific to the CSS accordion.
|
|
73
73
|
|
|
74
|
-
|
|
74
|
+
// use :where to lower specificity allowing for easier customization
|
|
75
|
+
:where(.accordion) {
|
|
76
|
+
// This is a problem when you want to use an input inside the accordion. You
|
|
77
|
+
// will need to manually set the position, opacity, and z-index to get the
|
|
78
|
+
// input to appear.
|
|
75
79
|
input {
|
|
76
80
|
position: absolute;
|
|
77
81
|
opacity: 0;
|
|
@@ -38,6 +38,15 @@ $flex-properties-map: (
|
|
|
38
38
|
stretch: stretch
|
|
39
39
|
)
|
|
40
40
|
),
|
|
41
|
+
flex: (
|
|
42
|
+
prefix: #{$flex-identifier},
|
|
43
|
+
values: (1, 2,
|
|
44
|
+
('auto': 1 1 auto),
|
|
45
|
+
('initial': 0 1 auto),
|
|
46
|
+
'none'
|
|
47
|
+
),
|
|
48
|
+
breakpoints: ("sm", "md", "lg", "xl")
|
|
49
|
+
),
|
|
41
50
|
flex-direction: (
|
|
42
51
|
prefix: #{$flex-identifier},
|
|
43
52
|
values: (
|