@pingux/astro 2.177.6-alpha.0 → 2.177.7-alpha.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.
|
@@ -27,6 +27,8 @@ var label = exports.label = _objectSpread(_objectSpread({}, _Text.text.label), {
|
|
|
27
27
|
display: 'block',
|
|
28
28
|
mb: 'xs',
|
|
29
29
|
alignItems: 'center',
|
|
30
|
+
// added to override text-transform from being set to uppercase when used with ui-library
|
|
31
|
+
textTransform: 'inherit',
|
|
30
32
|
'&.is-float-label': {
|
|
31
33
|
textOverflow: 'ellipsis',
|
|
32
34
|
display: 'flex',
|
|
@@ -55,7 +57,6 @@ var label = exports.label = _objectSpread(_objectSpread({}, _Text.text.label), {
|
|
|
55
57
|
});
|
|
56
58
|
|
|
57
59
|
// Variants below
|
|
58
|
-
|
|
59
60
|
label.indicator = {
|
|
60
61
|
color: 'critical.bright',
|
|
61
62
|
ml: 5
|
|
@@ -63,7 +64,8 @@ label.indicator = {
|
|
|
63
64
|
label.radio = _objectSpread(_objectSpread({}, _Text.text.base), {}, {
|
|
64
65
|
cursor: 'pointer',
|
|
65
66
|
alignItems: 'center',
|
|
66
|
-
mb: 'xs'
|
|
67
|
+
mb: 'xs',
|
|
68
|
+
textTransform: 'inherit'
|
|
67
69
|
});
|
|
68
70
|
|
|
69
71
|
// NOTE: ThemeUI label adds 'flex' after other styles, so we have to use !important to override it
|
|
@@ -75,11 +77,13 @@ label.checkbox = _objectSpread(_objectSpread({}, _Text.text.base), {}, {
|
|
|
75
77
|
width: 'max-content',
|
|
76
78
|
alignItems: 'center',
|
|
77
79
|
cursor: 'pointer',
|
|
80
|
+
textTransform: 'inherit',
|
|
78
81
|
'&.is-disabled': {
|
|
79
82
|
opacity: '1',
|
|
80
83
|
color: 'rgba(37, 55, 70, 0.5)'
|
|
81
84
|
}
|
|
82
85
|
});
|
|
83
86
|
label.radioGroup = _objectSpread(_objectSpread({}, label), {}, {
|
|
84
|
-
fontWeight: 1
|
|
87
|
+
fontWeight: 1,
|
|
88
|
+
textTransform: 'inherit'
|
|
85
89
|
});
|