@deque/cauldron-styles 6.25.0-canary.bc36343e → 6.25.0-canary.cf2bf280
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/dist/index.css +5 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -2163,10 +2163,13 @@ a.IconButton {
|
|
|
2163
2163
|
}
|
|
2164
2164
|
|
|
2165
2165
|
.Link:where(:has(.Icon)) {
|
|
2166
|
+
width: -moz-max-content;
|
|
2167
|
+
width: max-content;
|
|
2166
2168
|
display: inline-flex;
|
|
2167
2169
|
align-items: center;
|
|
2168
2170
|
gap: var(--space-half);
|
|
2169
2171
|
flex-wrap: wrap;
|
|
2172
|
+
align-self: flex-start;
|
|
2170
2173
|
}
|
|
2171
2174
|
|
|
2172
2175
|
:root {
|
|
@@ -5745,9 +5748,10 @@ button.Accordion__trigger {
|
|
|
5745
5748
|
/* Try and prevent Safari from showing a platform
|
|
5746
5749
|
* tooltip when visible text is truncated
|
|
5747
5750
|
* see: https://github.com/dequelabs/cauldron/issues/1926
|
|
5751
|
+
* Only apply to single-line ellipsis to avoid Chrome false ellipsis bug
|
|
5748
5752
|
*/
|
|
5749
5753
|
|
|
5750
|
-
.TextEllipsis:after {
|
|
5754
|
+
.TextEllipsis:not(.TextEllipsis--multiline):after {
|
|
5751
5755
|
content: '';
|
|
5752
5756
|
display: block;
|
|
5753
5757
|
}
|
package/package.json
CHANGED