carbon-react 125.12.0 → 125.12.1
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/esm/components/multi-action-button/multi-action-button.style.js +0 -8
- package/esm/components/split-button/split-button-children.style.js +2 -1
- package/lib/components/multi-action-button/multi-action-button.style.js +0 -8
- package/lib/components/split-button/split-button-children.style.js +2 -1
- package/package.json +1 -1
|
@@ -93,14 +93,6 @@ const StyledButtonChildrenContainer = styled.div`
|
|
|
93
93
|
text-align: ${align};
|
|
94
94
|
z-index: ${theme.zIndex.overlay};
|
|
95
95
|
|
|
96
|
-
/* Styling for Safari. */
|
|
97
|
-
@media not all and (min-resolution: 0.001dpcm) {
|
|
98
|
-
@supports (-webkit-appearance: none) and (stroke-color: transparent) {
|
|
99
|
-
display: -webkit-box;
|
|
100
|
-
justify-content: ${align === "right" ? `flex-end` : `flex-start`};
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
|
|
104
96
|
& + & {
|
|
105
97
|
margin-top: 3px;
|
|
106
98
|
}
|
|
@@ -43,7 +43,8 @@ const StyledSplitButtonChildrenContainer = styled.div`
|
|
|
43
43
|
|
|
44
44
|
${StyledButton} {
|
|
45
45
|
border: 1px solid var(--colorsActionMajorTransparent);
|
|
46
|
-
display:
|
|
46
|
+
display: flex;
|
|
47
|
+
justify-content: ${align};
|
|
47
48
|
margin-left: 0;
|
|
48
49
|
min-width: 100%;
|
|
49
50
|
text-align: ${align};
|
|
@@ -102,14 +102,6 @@ const StyledButtonChildrenContainer = exports.StyledButtonChildrenContainer = _s
|
|
|
102
102
|
text-align: ${align};
|
|
103
103
|
z-index: ${theme.zIndex.overlay};
|
|
104
104
|
|
|
105
|
-
/* Styling for Safari. */
|
|
106
|
-
@media not all and (min-resolution: 0.001dpcm) {
|
|
107
|
-
@supports (-webkit-appearance: none) and (stroke-color: transparent) {
|
|
108
|
-
display: -webkit-box;
|
|
109
|
-
justify-content: ${align === "right" ? `flex-end` : `flex-start`};
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
|
|
113
105
|
& + & {
|
|
114
106
|
margin-top: 3px;
|
|
115
107
|
}
|
|
@@ -52,7 +52,8 @@ const StyledSplitButtonChildrenContainer = _styledComponents.default.div`
|
|
|
52
52
|
|
|
53
53
|
${_button.default} {
|
|
54
54
|
border: 1px solid var(--colorsActionMajorTransparent);
|
|
55
|
-
display:
|
|
55
|
+
display: flex;
|
|
56
|
+
justify-content: ${align};
|
|
56
57
|
margin-left: 0;
|
|
57
58
|
min-width: 100%;
|
|
58
59
|
text-align: ${align};
|