@deque/cauldron-styles 4.7.0-canary.e0f1ccfd → 4.7.0-canary.e5b85cce

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 +28 -7
  2. package/package.json +1 -1
package/dist/index.css CHANGED
@@ -20,6 +20,7 @@
20
20
  --accent-medium: #283640;
21
21
  --accent-light: #d4dde0;
22
22
  --accent-success: #a5db75;
23
+ --accent-success-high-contrast: #4fa630;
23
24
  --accent-success-light: #d1ffa4;
24
25
  --accent-success-dark: #57a711;
25
26
  --accent-error: #d93251;
@@ -1835,7 +1836,7 @@ textarea.Field--has-error:focus:hover,
1835
1836
 
1836
1837
  .Link:hover {
1837
1838
  text-decoration: underline;
1838
- color: var(--link-text-color);
1839
+ color: var(--link-text-color-hover);
1839
1840
  }
1840
1841
 
1841
1842
  .Link:focus {
@@ -2259,9 +2260,9 @@ p .Link {
2259
2260
  }
2260
2261
 
2261
2262
  .RadioCardGroup__Icon.Icon svg {
2262
- /**
2263
+ /**
2263
2264
  * this is edge case to pass color-contrast when the radio-card is selected,
2264
- * it is not a color we want to live in cauldron as a variable
2265
+ * it is not a color we want to live in cauldron as a variable
2265
2266
  * @see https://github.com/dequelabs/cauldron/pull/736
2266
2267
  */
2267
2268
  color: #4f990f;
@@ -2305,6 +2306,10 @@ p .Link {
2305
2306
  justify-content: center;
2306
2307
  }
2307
2308
 
2309
+ .cauldron--theme-dark .RadioCardGroup__Icon.Icon svg {
2310
+ color: var(--accent-success);
2311
+ }
2312
+
2308
2313
  :root {
2309
2314
  --tile-background-color: var(--white);
2310
2315
  --list-separator: rgba(153, 153, 153, 0.15);
@@ -2602,15 +2607,14 @@ p .Link {
2602
2607
 
2603
2608
  .TooltipHead {
2604
2609
  background: var(--gray-20);
2605
- font-size: 16px;
2610
+ font-size: var(--text-size-small);
2606
2611
  color: var(--gray-90);
2607
- padding: 16px 28px;
2612
+ padding: var(--space-small) var(--space-large);
2608
2613
  text-align: center;
2609
2614
  }
2610
2615
 
2611
2616
  .TooltipContent {
2612
2617
  background: #fff;
2613
- font-size: var(--font-size-smaller);
2614
2618
  text-align: left;
2615
2619
  }
2616
2620
 
@@ -3395,6 +3399,7 @@ button.TooltipTabstop {
3395
3399
  --table-row-border-color: var(--gray-40);
3396
3400
  --table-space: 11px;
3397
3401
  --table-header-sorting-border-color: var(--gray-90);
3402
+ --table-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
3398
3403
  }
3399
3404
 
3400
3405
  .cauldron--theme-dark {
@@ -3479,10 +3484,26 @@ button.TooltipTabstop {
3479
3484
  padding: var(--table-space) var(--space-smallest);
3480
3485
  }
3481
3486
 
3482
- .TableRow:last-child .TableCell {
3487
+ .Table:not(.Table--border) .TableRow:last-child .TableCell {
3483
3488
  border: none;
3484
3489
  }
3485
3490
 
3491
+ .Table--border {
3492
+ box-shadow: var(--table-box-shadow);
3493
+ }
3494
+
3495
+ .Table--border,
3496
+ .Table--border .TableHeader,
3497
+ .Table--border .TableCell {
3498
+ border: 1px solid var(--gray-40);
3499
+ }
3500
+
3501
+ .cauldron--theme-dark .Table--border,
3502
+ .cauldron--theme-dark .Table--border .TableHeader,
3503
+ .cauldron--theme-dark .Table--border .TableCell {
3504
+ border-color: var(--stroke-dark);
3505
+ }
3506
+
3486
3507
  :root {
3487
3508
  --data-list-background-color: var(--gray-20);
3488
3509
  --data-list-value-background-color: var(--white);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deque/cauldron-styles",
3
- "version": "4.7.0-canary.e0f1ccfd",
3
+ "version": "4.7.0-canary.e5b85cce",
4
4
  "license": "MPL-2.0",
5
5
  "description": "deque cauldron pattern library styles",
6
6
  "repository": "https://github.com/dequelabs/cauldron",