@deque/cauldron-styles 5.0.0-canary.f1b65af4 → 5.0.0-canary.f277ecce
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 -6
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -2422,6 +2422,8 @@ p .Link {
|
|
|
2422
2422
|
.Toast {
|
|
2423
2423
|
top: var(--top-bar-height);
|
|
2424
2424
|
position: fixed;
|
|
2425
|
+
right: 0;
|
|
2426
|
+
left: 0;
|
|
2425
2427
|
color: #0b0e11;
|
|
2426
2428
|
font-size: var(--text-size-small);
|
|
2427
2429
|
z-index: var(--z-index-toast);
|
|
@@ -2429,8 +2431,11 @@ p .Link {
|
|
|
2429
2431
|
box-sizing: border-box;
|
|
2430
2432
|
display: flex;
|
|
2431
2433
|
padding: 4px 15px;
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
+
}
|
|
2435
|
+
|
|
2436
|
+
.Toast.Toast--non-dismissible {
|
|
2437
|
+
position: static;
|
|
2438
|
+
margin-bottom: var(--space-small);
|
|
2434
2439
|
}
|
|
2435
2440
|
|
|
2436
2441
|
.TopBar--thin .Toast {
|
|
@@ -3642,6 +3647,7 @@ button.TooltipTabstop {
|
|
|
3642
3647
|
color: var(--data-list-value-text-color);
|
|
3643
3648
|
background-color: var(--data-list-value-background-color);
|
|
3644
3649
|
font-weight: var(--font-weight-normal);
|
|
3650
|
+
word-break: break-word;
|
|
3645
3651
|
}
|
|
3646
3652
|
|
|
3647
3653
|
.DescriptionList__term,
|
|
@@ -4197,12 +4203,12 @@ fieldset.Panel {
|
|
|
4197
4203
|
}
|
|
4198
4204
|
|
|
4199
4205
|
.Breadcrumb ol {
|
|
4200
|
-
display:
|
|
4206
|
+
display: block;
|
|
4207
|
+
word-break: break-all;
|
|
4201
4208
|
align-items: center;
|
|
4202
4209
|
list-style-type: none;
|
|
4203
4210
|
padding: 0;
|
|
4204
4211
|
margin: 0;
|
|
4205
|
-
flex-wrap: wrap;
|
|
4206
4212
|
}
|
|
4207
4213
|
|
|
4208
4214
|
.Breadcrumb__Separator {
|
|
@@ -4213,13 +4219,13 @@ fieldset.Panel {
|
|
|
4213
4219
|
.Breadcrumb__Link {
|
|
4214
4220
|
font-weight: 400;
|
|
4215
4221
|
padding: 0;
|
|
4222
|
+
display: inline;
|
|
4216
4223
|
}
|
|
4217
4224
|
|
|
4218
4225
|
.Breadcrumb__Item {
|
|
4219
4226
|
font-weight: 500;
|
|
4220
4227
|
color: var(--link-text-color);
|
|
4221
|
-
display:
|
|
4222
|
-
flex-wrap: nowrap;
|
|
4228
|
+
display: inline;
|
|
4223
4229
|
}
|
|
4224
4230
|
|
|
4225
4231
|
:root {
|
package/package.json
CHANGED