@deque/cauldron-styles 6.17.0 → 6.17.1-canary.4218550
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 +12 -2
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -4104,7 +4104,7 @@ button.TooltipTabstop {
|
|
|
4104
4104
|
--panel-border-color: var(--gray-40);
|
|
4105
4105
|
--panel-background-color: var(--white);
|
|
4106
4106
|
--panel-heading-color: var(--gray-90);
|
|
4107
|
-
--panel-padding: var(--space-
|
|
4107
|
+
--panel-padding: var(--space-small);
|
|
4108
4108
|
--panel-divider-border-color: var(--gray-40);
|
|
4109
4109
|
--panel-content-color: var(--gray-80);
|
|
4110
4110
|
}
|
|
@@ -4113,7 +4113,7 @@ button.TooltipTabstop {
|
|
|
4113
4113
|
padding: var(--panel-padding);
|
|
4114
4114
|
margin: 0;
|
|
4115
4115
|
border: 1px solid var(--panel-border-color);
|
|
4116
|
-
border-radius:
|
|
4116
|
+
border-radius: 3px;
|
|
4117
4117
|
box-shadow: var(--drop-shadow-raised);
|
|
4118
4118
|
background-color: var(--panel-background-color);
|
|
4119
4119
|
word-break: break-word;
|
|
@@ -5651,6 +5651,16 @@ button.Accordion__trigger {
|
|
|
5651
5651
|
overflow: hidden;
|
|
5652
5652
|
}
|
|
5653
5653
|
|
|
5654
|
+
/* Try and prevent Safari from showing a platform
|
|
5655
|
+
* tooltip when visible text is truncated
|
|
5656
|
+
* see: https://github.com/dequelabs/cauldron/issues/1926
|
|
5657
|
+
*/
|
|
5658
|
+
|
|
5659
|
+
.TextEllipsis:after {
|
|
5660
|
+
content: '';
|
|
5661
|
+
display: block;
|
|
5662
|
+
}
|
|
5663
|
+
|
|
5654
5664
|
.TextEllipsis:where([role='button']) {
|
|
5655
5665
|
text-align: inherit;
|
|
5656
5666
|
-moz-user-select: inherit;
|