@deque/cauldron-styles 6.2.1-canary.fca8b9e6 → 6.3.0-canary.2fa4aa02
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 +19 -0
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -5329,3 +5329,22 @@ button.Accordion__trigger {
|
|
|
5329
5329
|
.SearchField input::-webkit-search-cancel-button {
|
|
5330
5330
|
margin-left: var(--space-smallest);
|
|
5331
5331
|
}
|
|
5332
|
+
|
|
5333
|
+
.TextEllipsis {
|
|
5334
|
+
display: block !important;
|
|
5335
|
+
white-space: nowrap;
|
|
5336
|
+
text-overflow: ellipsis;
|
|
5337
|
+
overflow: hidden;
|
|
5338
|
+
}
|
|
5339
|
+
|
|
5340
|
+
.TextEllipsis:where([role='button']) {
|
|
5341
|
+
text-align: inherit;
|
|
5342
|
+
-moz-user-select: inherit;
|
|
5343
|
+
user-select: inherit;
|
|
5344
|
+
}
|
|
5345
|
+
|
|
5346
|
+
.TextEllipsis--multiline {
|
|
5347
|
+
display: -webkit-box !important;
|
|
5348
|
+
-webkit-box-orient: vertical;
|
|
5349
|
+
white-space: normal;
|
|
5350
|
+
}
|
package/package.json
CHANGED