@odx/ui 3.5.6 → 3.5.7
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/CHANGELOG.md
CHANGED
package/core-theme.css
CHANGED
|
@@ -663,7 +663,7 @@ html body {
|
|
|
663
663
|
font-weight: var(--odx-typography-font-weight-normal);
|
|
664
664
|
letter-spacing: var(--odx-typography-font-weight-normal-letter-spacing);
|
|
665
665
|
}
|
|
666
|
-
.odx-text--small {
|
|
666
|
+
.odx-text--small, .odx-checkbox__subtitle {
|
|
667
667
|
padding-top: calc(var(--odx-vertical-rythm-base-size) * 0.0834);
|
|
668
668
|
padding-bottom: calc(var(--odx-vertical-rythm-base-size) * 0.0834);
|
|
669
669
|
line-height: calc(var(--odx-vertical-rythm-base-size) * 0.8334);
|
|
@@ -3606,6 +3606,8 @@ html body .odx-fs-italic {
|
|
|
3606
3606
|
}
|
|
3607
3607
|
.odx-checkbox__content {
|
|
3608
3608
|
margin-left: calc(var(--odx-vertical-rythm-base-size) * 0.5);
|
|
3609
|
+
display: flex;
|
|
3610
|
+
flex-direction: column;
|
|
3609
3611
|
padding-left: 2px;
|
|
3610
3612
|
}
|
|
3611
3613
|
.odx-checkbox__content:empty {
|
package/package.json
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@use 'sass:math';
|
|
2
2
|
@use '../layout/helpers';
|
|
3
|
+
@use '../layout/typography' as *;
|
|
3
4
|
@use '../abstract/dimensions';
|
|
4
5
|
@use '../abstract/typography';
|
|
5
6
|
@use '../abstract/utils';
|
|
@@ -38,6 +39,10 @@
|
|
|
38
39
|
}
|
|
39
40
|
}
|
|
40
41
|
|
|
42
|
+
&__subtitle {
|
|
43
|
+
@extend .odx-text--small;
|
|
44
|
+
}
|
|
45
|
+
|
|
41
46
|
&__input {
|
|
42
47
|
@include utils.visually-hidden();
|
|
43
48
|
}
|
|
@@ -107,6 +112,8 @@
|
|
|
107
112
|
&__content {
|
|
108
113
|
@include dimensions.margin(0.5, left);
|
|
109
114
|
|
|
115
|
+
display: flex;
|
|
116
|
+
flex-direction: column;
|
|
110
117
|
padding-left: 2px;
|
|
111
118
|
|
|
112
119
|
&:empty {
|