@deque/cauldron-styles 6.25.0 → 6.25.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/dist/index.css +11 -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,10 +2163,13 @@ a.IconButton {
|
|
|
2161
2163
|
}
|
|
2162
2164
|
|
|
2163
2165
|
.Link:where(:has(.Icon)) {
|
|
2166
|
+
width: -moz-max-content;
|
|
2167
|
+
width: max-content;
|
|
2164
2168
|
display: inline-flex;
|
|
2165
2169
|
align-items: center;
|
|
2166
2170
|
gap: var(--space-half);
|
|
2167
2171
|
flex-wrap: wrap;
|
|
2172
|
+
align-self: flex-start;
|
|
2168
2173
|
}
|
|
2169
2174
|
|
|
2170
2175
|
:root {
|
|
@@ -2973,12 +2978,12 @@ button.TooltipTabstop {
|
|
|
2973
2978
|
border-bottom: solid 1px var(--top-bar-border-bottom-color);
|
|
2974
2979
|
}
|
|
2975
2980
|
|
|
2976
|
-
.TopBar > ul > li:focus
|
|
2981
|
+
.TopBar > ul > li:focus,
|
|
2977
2982
|
.TopBar > ul > li:hover {
|
|
2978
2983
|
outline: 0;
|
|
2979
2984
|
}
|
|
2980
2985
|
|
|
2981
|
-
.TopBar > ul > li:focus
|
|
2986
|
+
.TopBar > ul > li:focus:before,
|
|
2982
2987
|
.TopBar > ul > li:hover:before {
|
|
2983
2988
|
content: '';
|
|
2984
2989
|
position: absolute;
|
|
@@ -5743,9 +5748,10 @@ button.Accordion__trigger {
|
|
|
5743
5748
|
/* Try and prevent Safari from showing a platform
|
|
5744
5749
|
* tooltip when visible text is truncated
|
|
5745
5750
|
* see: https://github.com/dequelabs/cauldron/issues/1926
|
|
5751
|
+
* Only apply to single-line ellipsis to avoid Chrome false ellipsis bug
|
|
5746
5752
|
*/
|
|
5747
5753
|
|
|
5748
|
-
.TextEllipsis:after {
|
|
5754
|
+
.TextEllipsis:not(.TextEllipsis--multiline):after {
|
|
5749
5755
|
content: '';
|
|
5750
5756
|
display: block;
|
|
5751
5757
|
}
|