@sbb-esta/lyne-elements 3.1.0 → 3.2.0
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/core/styles/_index.scss
CHANGED
package/core/styles/core.scss
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
@use './mixins/font-face';
|
|
6
6
|
@use './mixins/helpers';
|
|
7
7
|
@use './mixins/inputs';
|
|
8
|
+
@use './mixins/popover';
|
|
8
9
|
@use './mixins/scrollbar';
|
|
9
10
|
@use './mixins/shadows';
|
|
10
11
|
@use './mixins/typo';
|
|
@@ -222,14 +223,7 @@ sbb-form-field {
|
|
|
222
223
|
sbb-popover,
|
|
223
224
|
sbb-toast
|
|
224
225
|
) {
|
|
225
|
-
|
|
226
|
-
padding: 0;
|
|
227
|
-
border: none;
|
|
228
|
-
width: auto;
|
|
229
|
-
height: auto;
|
|
230
|
-
background-color: transparent;
|
|
231
|
-
color: inherit;
|
|
232
|
-
pointer-events: none;
|
|
226
|
+
@include popover.popover-reset;
|
|
233
227
|
}
|
|
234
228
|
|
|
235
229
|
// Ensure stable breadcrumb height during hydrating
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// ----------------------------------------------------------------------------------------------------
|
|
2
|
+
// Popover Mixins
|
|
3
|
+
// ----------------------------------------------------------------------------------------------------
|
|
4
|
+
|
|
5
|
+
@mixin popover-reset {
|
|
6
|
+
margin: 0;
|
|
7
|
+
padding: 0;
|
|
8
|
+
border: none;
|
|
9
|
+
width: auto;
|
|
10
|
+
height: auto;
|
|
11
|
+
background-color: transparent;
|
|
12
|
+
color: inherit;
|
|
13
|
+
pointer-events: none;
|
|
14
|
+
}
|