@deque/cauldron-styles 5.0.0-canary.97d52033 → 5.0.0-canary.9d02b03e
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 +39 -13
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -2042,7 +2042,8 @@ p .Link {
|
|
|
2042
2042
|
|
|
2043
2043
|
.Field__select--wrapper {
|
|
2044
2044
|
position: relative;
|
|
2045
|
-
|
|
2045
|
+
width: var(--select-width);
|
|
2046
|
+
max-width: 100%;
|
|
2046
2047
|
}
|
|
2047
2048
|
|
|
2048
2049
|
.arrow-down {
|
|
@@ -2421,6 +2422,8 @@ p .Link {
|
|
|
2421
2422
|
.Toast {
|
|
2422
2423
|
top: var(--top-bar-height);
|
|
2423
2424
|
position: fixed;
|
|
2425
|
+
right: 0;
|
|
2426
|
+
left: 0;
|
|
2424
2427
|
color: #0b0e11;
|
|
2425
2428
|
font-size: var(--text-size-small);
|
|
2426
2429
|
z-index: var(--z-index-toast);
|
|
@@ -2428,8 +2431,11 @@ p .Link {
|
|
|
2428
2431
|
box-sizing: border-box;
|
|
2429
2432
|
display: flex;
|
|
2430
2433
|
padding: 4px 15px;
|
|
2431
|
-
|
|
2432
|
-
|
|
2434
|
+
}
|
|
2435
|
+
|
|
2436
|
+
.Toast.Toast--non-dismissible {
|
|
2437
|
+
position: static;
|
|
2438
|
+
margin-bottom: var(--space-small);
|
|
2433
2439
|
}
|
|
2434
2440
|
|
|
2435
2441
|
.TopBar--thin .Toast {
|
|
@@ -2537,6 +2543,8 @@ p .Link {
|
|
|
2537
2543
|
border-radius: 3px;
|
|
2538
2544
|
z-index: var(--z-index-tooltip);
|
|
2539
2545
|
text-align: center;
|
|
2546
|
+
max-width: calc(100vw - 16px);
|
|
2547
|
+
word-break: break-word;
|
|
2540
2548
|
}
|
|
2541
2549
|
|
|
2542
2550
|
.Tooltip--hidden {
|
|
@@ -3406,11 +3414,10 @@ button.TooltipTabstop {
|
|
|
3406
3414
|
font-size: var(--text-size-smaller);
|
|
3407
3415
|
border: 1px solid var(--tag-border-color);
|
|
3408
3416
|
border-radius: 11px;
|
|
3409
|
-
display: flex;
|
|
3417
|
+
display: inline-flex;
|
|
3410
3418
|
justify-content: center;
|
|
3411
3419
|
align-items: center;
|
|
3412
3420
|
padding: 2px 8px;
|
|
3413
|
-
width: 90px;
|
|
3414
3421
|
font-weight: var(--font-weight-medium);
|
|
3415
3422
|
}
|
|
3416
3423
|
|
|
@@ -3640,6 +3647,7 @@ button.TooltipTabstop {
|
|
|
3640
3647
|
color: var(--data-list-value-text-color);
|
|
3641
3648
|
background-color: var(--data-list-value-background-color);
|
|
3642
3649
|
font-weight: var(--font-weight-normal);
|
|
3650
|
+
word-break: break-word;
|
|
3643
3651
|
}
|
|
3644
3652
|
|
|
3645
3653
|
.DescriptionList__term,
|
|
@@ -3955,6 +3963,18 @@ fieldset.Panel {
|
|
|
3955
3963
|
transition: background-color 0.3s ease;
|
|
3956
3964
|
}
|
|
3957
3965
|
|
|
3966
|
+
.NavBar > ul > .NavItem {
|
|
3967
|
+
font-weight: var(--font-weight-normal);
|
|
3968
|
+
}
|
|
3969
|
+
|
|
3970
|
+
.NavBar > ul > .NavItem--active {
|
|
3971
|
+
font-weight: var(--font-weight-medium);
|
|
3972
|
+
}
|
|
3973
|
+
|
|
3974
|
+
.NavBar > ul > .NavItem a {
|
|
3975
|
+
font-weight: inherit;
|
|
3976
|
+
}
|
|
3977
|
+
|
|
3958
3978
|
.NavBar > ul > li:first-child:not(.NavBar__trigger) {
|
|
3959
3979
|
border-left: 1px solid var(--top-nav-box-shadow-color);
|
|
3960
3980
|
}
|
|
@@ -4183,12 +4203,12 @@ fieldset.Panel {
|
|
|
4183
4203
|
}
|
|
4184
4204
|
|
|
4185
4205
|
.Breadcrumb ol {
|
|
4186
|
-
display:
|
|
4206
|
+
display: block;
|
|
4207
|
+
word-break: break-all;
|
|
4187
4208
|
align-items: center;
|
|
4188
4209
|
list-style-type: none;
|
|
4189
4210
|
padding: 0;
|
|
4190
4211
|
margin: 0;
|
|
4191
|
-
flex-wrap: wrap;
|
|
4192
4212
|
}
|
|
4193
4213
|
|
|
4194
4214
|
.Breadcrumb__Separator {
|
|
@@ -4199,13 +4219,13 @@ fieldset.Panel {
|
|
|
4199
4219
|
.Breadcrumb__Link {
|
|
4200
4220
|
font-weight: 400;
|
|
4201
4221
|
padding: 0;
|
|
4222
|
+
display: inline;
|
|
4202
4223
|
}
|
|
4203
4224
|
|
|
4204
4225
|
.Breadcrumb__Item {
|
|
4205
4226
|
font-weight: 500;
|
|
4206
4227
|
color: var(--link-text-color);
|
|
4207
|
-
display:
|
|
4208
|
-
flex-wrap: nowrap;
|
|
4228
|
+
display: inline;
|
|
4209
4229
|
}
|
|
4210
4230
|
|
|
4211
4231
|
:root {
|
|
@@ -4243,13 +4263,15 @@ fieldset.Panel {
|
|
|
4243
4263
|
}
|
|
4244
4264
|
|
|
4245
4265
|
.TwoColumnPanel__Header {
|
|
4246
|
-
|
|
4266
|
+
/* The -2px is to account for the borders that are outside of the element and will make it line up with the left panel when there's only one line of text */
|
|
4267
|
+
padding: calc(var(--space-small) - 2px);
|
|
4247
4268
|
border-bottom: 1px solid var(--two-column-panel-border-color);
|
|
4248
|
-
height: var(--two-column-panel-header-height);
|
|
4249
|
-
line-height: var(--two-column-panel-header-height);
|
|
4269
|
+
min-height: var(--two-column-panel-header-height);
|
|
4250
4270
|
font-weight: 500;
|
|
4251
4271
|
color: var(--two-column-panel-header-text-color);
|
|
4252
4272
|
flex: 1;
|
|
4273
|
+
display: flex;
|
|
4274
|
+
align-items: center;
|
|
4253
4275
|
}
|
|
4254
4276
|
|
|
4255
4277
|
.TwoColumnPanel__Left {
|
|
@@ -4386,12 +4408,16 @@ fieldset.Panel {
|
|
|
4386
4408
|
margin-bottom: 0;
|
|
4387
4409
|
}
|
|
4388
4410
|
|
|
4411
|
+
.TwoColumnPanel__ButtonToggle {
|
|
4412
|
+
display: flex;
|
|
4413
|
+
}
|
|
4414
|
+
|
|
4389
4415
|
.TwoColumnPanel__ButtonToggle button,
|
|
4390
4416
|
.TwoColumnPanel__Close button {
|
|
4391
4417
|
background-color: transparent;
|
|
4392
4418
|
border: none;
|
|
4393
4419
|
border-bottom: 1px solid var(--two-column-panel-border-color);
|
|
4394
|
-
height: var(--two-column-panel-header-height);
|
|
4420
|
+
min-height: var(--two-column-panel-header-height);
|
|
4395
4421
|
width: var(--two-column-panel-header-height);
|
|
4396
4422
|
}
|
|
4397
4423
|
|
package/package.json
CHANGED