@deque/cauldron-styles 5.0.0-canary.0645c1f3 → 5.0.0-canary.0efae4e7

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 +22 -10
  2. 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
- right: 0;
2433
- left: 0;
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: flex;
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: flex;
4222
- flex-wrap: nowrap;
4228
+ display: inline;
4223
4229
  }
4224
4230
 
4225
4231
  :root {
@@ -4257,13 +4263,15 @@ fieldset.Panel {
4257
4263
  }
4258
4264
 
4259
4265
  .TwoColumnPanel__Header {
4260
- 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);
4261
4268
  border-bottom: 1px solid var(--two-column-panel-border-color);
4262
- height: var(--two-column-panel-header-height);
4263
- line-height: var(--two-column-panel-header-height);
4269
+ min-height: var(--two-column-panel-header-height);
4264
4270
  font-weight: 500;
4265
4271
  color: var(--two-column-panel-header-text-color);
4266
4272
  flex: 1;
4273
+ display: flex;
4274
+ align-items: center;
4267
4275
  }
4268
4276
 
4269
4277
  .TwoColumnPanel__Left {
@@ -4400,12 +4408,16 @@ fieldset.Panel {
4400
4408
  margin-bottom: 0;
4401
4409
  }
4402
4410
 
4411
+ .TwoColumnPanel__ButtonToggle {
4412
+ display: flex;
4413
+ }
4414
+
4403
4415
  .TwoColumnPanel__ButtonToggle button,
4404
4416
  .TwoColumnPanel__Close button {
4405
4417
  background-color: transparent;
4406
4418
  border: none;
4407
4419
  border-bottom: 1px solid var(--two-column-panel-border-color);
4408
- height: var(--two-column-panel-header-height);
4420
+ min-height: var(--two-column-panel-header-height);
4409
4421
  width: var(--two-column-panel-header-height);
4410
4422
  }
4411
4423
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deque/cauldron-styles",
3
- "version": "5.0.0-canary.0645c1f3",
3
+ "version": "5.0.0-canary.0efae4e7",
4
4
  "license": "MPL-2.0",
5
5
  "description": "deque cauldron pattern library styles",
6
6
  "repository": "https://github.com/dequelabs/cauldron",