@deque/cauldron-styles 5.0.0-canary.9ce83000 → 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.
Files changed (2) hide show
  1. package/dist/index.css +26 -16
  2. 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
- min-width: var(--select-width);
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
- right: 0;
2432
- left: 0;
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 {
@@ -3639,6 +3647,7 @@ button.TooltipTabstop {
3639
3647
  color: var(--data-list-value-text-color);
3640
3648
  background-color: var(--data-list-value-background-color);
3641
3649
  font-weight: var(--font-weight-normal);
3650
+ word-break: break-word;
3642
3651
  }
3643
3652
 
3644
3653
  .DescriptionList__term,
@@ -4194,12 +4203,12 @@ fieldset.Panel {
4194
4203
  }
4195
4204
 
4196
4205
  .Breadcrumb ol {
4197
- display: flex;
4206
+ display: block;
4207
+ word-break: break-all;
4198
4208
  align-items: center;
4199
4209
  list-style-type: none;
4200
4210
  padding: 0;
4201
4211
  margin: 0;
4202
- flex-wrap: wrap;
4203
4212
  }
4204
4213
 
4205
4214
  .Breadcrumb__Separator {
@@ -4210,13 +4219,13 @@ fieldset.Panel {
4210
4219
  .Breadcrumb__Link {
4211
4220
  font-weight: 400;
4212
4221
  padding: 0;
4222
+ display: inline;
4213
4223
  }
4214
4224
 
4215
4225
  .Breadcrumb__Item {
4216
4226
  font-weight: 500;
4217
4227
  color: var(--link-text-color);
4218
- display: flex;
4219
- flex-wrap: nowrap;
4228
+ display: inline;
4220
4229
  }
4221
4230
 
4222
4231
  :root {
@@ -4254,13 +4263,15 @@ fieldset.Panel {
4254
4263
  }
4255
4264
 
4256
4265
  .TwoColumnPanel__Header {
4257
- padding: 0 var(--space-small);
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);
4258
4268
  border-bottom: 1px solid var(--two-column-panel-border-color);
4259
- height: var(--two-column-panel-header-height);
4260
- line-height: var(--two-column-panel-header-height);
4269
+ min-height: var(--two-column-panel-header-height);
4261
4270
  font-weight: 500;
4262
4271
  color: var(--two-column-panel-header-text-color);
4263
4272
  flex: 1;
4273
+ display: flex;
4274
+ align-items: center;
4264
4275
  }
4265
4276
 
4266
4277
  .TwoColumnPanel__Left {
@@ -4276,11 +4287,6 @@ fieldset.Panel {
4276
4287
  .TwoColumnPanel__Right {
4277
4288
  flex: 1;
4278
4289
  align-content: flex-start;
4279
- overflow-x: auto;
4280
- }
4281
-
4282
- .TwoColumnPanel__Right > *:not(.TwoColumnPanel__Header) {
4283
- overflow-x: auto;
4284
4290
  }
4285
4291
 
4286
4292
  .TwoColumnPanel__Left,
@@ -4402,12 +4408,16 @@ fieldset.Panel {
4402
4408
  margin-bottom: 0;
4403
4409
  }
4404
4410
 
4411
+ .TwoColumnPanel__ButtonToggle {
4412
+ display: flex;
4413
+ }
4414
+
4405
4415
  .TwoColumnPanel__ButtonToggle button,
4406
4416
  .TwoColumnPanel__Close button {
4407
4417
  background-color: transparent;
4408
4418
  border: none;
4409
4419
  border-bottom: 1px solid var(--two-column-panel-border-color);
4410
- height: var(--two-column-panel-header-height);
4420
+ min-height: var(--two-column-panel-header-height);
4411
4421
  width: var(--two-column-panel-header-height);
4412
4422
  }
4413
4423
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deque/cauldron-styles",
3
- "version": "5.0.0-canary.9ce83000",
3
+ "version": "5.0.0-canary.9d02b03e",
4
4
  "license": "MPL-2.0",
5
5
  "description": "deque cauldron pattern library styles",
6
6
  "repository": "https://github.com/dequelabs/cauldron",