@odx/ui 4.6.4 → 4.6.5
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
|
@@ -3953,6 +3953,7 @@ html body .odx-fs-italic {
|
|
|
3953
3953
|
align-items: center;
|
|
3954
3954
|
}
|
|
3955
3955
|
.odx-datepicker__trigger-wrapper {
|
|
3956
|
+
gap: calc(var(--odx-vertical-rythm-base-size) * 0.3334);
|
|
3956
3957
|
margin: 0 0 0 auto;
|
|
3957
3958
|
}
|
|
3958
3959
|
.odx-datepicker.is-readonly .odx-datepicker__trigger-wrapper > .odx-button {
|
|
@@ -3977,6 +3978,7 @@ html body .odx-fs-italic {
|
|
|
3977
3978
|
align-items: center;
|
|
3978
3979
|
}
|
|
3979
3980
|
.odx-daterangepicker__trigger-wrapper {
|
|
3981
|
+
gap: calc(var(--odx-vertical-rythm-base-size) * 0.3334);
|
|
3980
3982
|
margin: 0 0 0 auto;
|
|
3981
3983
|
}
|
|
3982
3984
|
.odx-daterangepicker.is-readonly .odx-daterangepicker__trigger-wrapper > .odx-button {
|
|
@@ -6856,12 +6858,15 @@ html body .odx-fs-italic {
|
|
|
6856
6858
|
.odx-timepicker {
|
|
6857
6859
|
display: flex;
|
|
6858
6860
|
align-items: center;
|
|
6861
|
+
gap: calc(var(--odx-vertical-rythm-base-size) * 0.1667);
|
|
6859
6862
|
justify-content: space-between;
|
|
6860
6863
|
width: 100%;
|
|
6861
6864
|
}
|
|
6862
6865
|
.odx-timepicker__wrapper {
|
|
6863
6866
|
display: inline-flex;
|
|
6864
|
-
|
|
6867
|
+
}
|
|
6868
|
+
.odx-timepicker__trigger-wrapper {
|
|
6869
|
+
gap: calc(var(--odx-vertical-rythm-base-size) * 0.3334);
|
|
6865
6870
|
}
|
|
6866
6871
|
.odx-timepicker input[odxTimepickerControl] {
|
|
6867
6872
|
-webkit-appearance: textfield;
|
package/package.json
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
@use 'sass:math';
|
|
2
|
+
@use '../abstract/dimensions';
|
|
1
3
|
@use '../abstract/utils';
|
|
2
4
|
|
|
3
5
|
.odx-datepicker {
|
|
@@ -6,6 +8,7 @@
|
|
|
6
8
|
@include utils.vertical-center-content();
|
|
7
9
|
|
|
8
10
|
&__trigger-wrapper {
|
|
11
|
+
gap: dimensions.get-size(math.div(1, 3));
|
|
9
12
|
margin: 0 0 0 auto;
|
|
10
13
|
|
|
11
14
|
> .odx-button {
|
|
@@ -10,12 +10,16 @@
|
|
|
10
10
|
|
|
11
11
|
@include utils.vertical-center-content();
|
|
12
12
|
|
|
13
|
+
gap: dimensions.get-size(math.div(4, 24));
|
|
13
14
|
justify-content: space-between;
|
|
14
15
|
width: 100%;
|
|
15
16
|
|
|
16
17
|
&__wrapper {
|
|
17
18
|
display: inline-flex;
|
|
18
|
-
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
&__trigger-wrapper {
|
|
22
|
+
gap: dimensions.get-size(math.div(1, 3));
|
|
19
23
|
}
|
|
20
24
|
|
|
21
25
|
input[odxTimepickerControl] {
|