@deque/cauldron-styles 6.25.0 → 6.25.1-canary.15ef8b20
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 +10 -5
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1245,13 +1245,14 @@ textarea.Field--has-error:focus:hover,
|
|
|
1245
1245
|
position: relative;
|
|
1246
1246
|
text-align: center;
|
|
1247
1247
|
min-height: var(--button-height);
|
|
1248
|
-
min-width: 6.25rem;
|
|
1249
1248
|
display: inline-grid;
|
|
1250
1249
|
grid-auto-flow: column;
|
|
1251
1250
|
align-items: center;
|
|
1252
1251
|
justify-items: center;
|
|
1253
1252
|
justify-content: center;
|
|
1254
1253
|
gap: var(--space-smallest);
|
|
1254
|
+
min-width: -moz-max-content;
|
|
1255
|
+
min-width: max-content;
|
|
1255
1256
|
}
|
|
1256
1257
|
|
|
1257
1258
|
.Button--tag,
|
|
@@ -1468,7 +1469,8 @@ button.Link {
|
|
|
1468
1469
|
|
|
1469
1470
|
.Button--thin {
|
|
1470
1471
|
min-height: var(--button-thin-height);
|
|
1471
|
-
min-width:
|
|
1472
|
+
min-width: -moz-max-content;
|
|
1473
|
+
min-width: max-content;
|
|
1472
1474
|
font-size: var(--button-thin-text-size);
|
|
1473
1475
|
padding: 0 var(--space-small);
|
|
1474
1476
|
}
|
|
@@ -2161,6 +2163,8 @@ a.IconButton {
|
|
|
2161
2163
|
}
|
|
2162
2164
|
|
|
2163
2165
|
.Link:where(:has(.Icon)) {
|
|
2166
|
+
max-width: -moz-max-content;
|
|
2167
|
+
max-width: max-content;
|
|
2164
2168
|
display: inline-flex;
|
|
2165
2169
|
align-items: center;
|
|
2166
2170
|
gap: var(--space-half);
|
|
@@ -2973,12 +2977,12 @@ button.TooltipTabstop {
|
|
|
2973
2977
|
border-bottom: solid 1px var(--top-bar-border-bottom-color);
|
|
2974
2978
|
}
|
|
2975
2979
|
|
|
2976
|
-
.TopBar > ul > li:focus
|
|
2980
|
+
.TopBar > ul > li:focus,
|
|
2977
2981
|
.TopBar > ul > li:hover {
|
|
2978
2982
|
outline: 0;
|
|
2979
2983
|
}
|
|
2980
2984
|
|
|
2981
|
-
.TopBar > ul > li:focus
|
|
2985
|
+
.TopBar > ul > li:focus:before,
|
|
2982
2986
|
.TopBar > ul > li:hover:before {
|
|
2983
2987
|
content: '';
|
|
2984
2988
|
position: absolute;
|
|
@@ -5743,9 +5747,10 @@ button.Accordion__trigger {
|
|
|
5743
5747
|
/* Try and prevent Safari from showing a platform
|
|
5744
5748
|
* tooltip when visible text is truncated
|
|
5745
5749
|
* see: https://github.com/dequelabs/cauldron/issues/1926
|
|
5750
|
+
* Only apply to single-line ellipsis to avoid Chrome false ellipsis bug
|
|
5746
5751
|
*/
|
|
5747
5752
|
|
|
5748
|
-
.TextEllipsis:after {
|
|
5753
|
+
.TextEllipsis:not(.TextEllipsis--multiline):after {
|
|
5749
5754
|
content: '';
|
|
5750
5755
|
display: block;
|
|
5751
5756
|
}
|