@deque/cauldron-styles 4.7.0-canary.6d72e2eb → 4.7.0-canary.937cd46e
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 +15 -4
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -2259,7 +2259,12 @@ p .Link {
|
|
|
2259
2259
|
}
|
|
2260
2260
|
|
|
2261
2261
|
.RadioCardGroup__Icon.Icon svg {
|
|
2262
|
-
|
|
2262
|
+
/**
|
|
2263
|
+
* 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
|
+
* @see https://github.com/dequelabs/cauldron/pull/736
|
|
2266
|
+
*/
|
|
2267
|
+
color: #4f990f;
|
|
2263
2268
|
height: 44px;
|
|
2264
2269
|
width: 44px;
|
|
2265
2270
|
}
|
|
@@ -2300,6 +2305,10 @@ p .Link {
|
|
|
2300
2305
|
justify-content: center;
|
|
2301
2306
|
}
|
|
2302
2307
|
|
|
2308
|
+
.cauldron--theme-dark .RadioCardGroup__Icon.Icon svg {
|
|
2309
|
+
color: var(--accent-success);
|
|
2310
|
+
}
|
|
2311
|
+
|
|
2303
2312
|
:root {
|
|
2304
2313
|
--tile-background-color: var(--white);
|
|
2305
2314
|
--list-separator: rgba(153, 153, 153, 0.15);
|
|
@@ -2525,16 +2534,18 @@ p .Link {
|
|
|
2525
2534
|
width: 0.1px;
|
|
2526
2535
|
}
|
|
2527
2536
|
|
|
2537
|
+
/* Adjust position to try to center the arrow in the tooltip's border */
|
|
2538
|
+
|
|
2528
2539
|
[class*='Tooltip--top'] .TooltipArrow {
|
|
2529
|
-
bottom:
|
|
2540
|
+
bottom: -1px;
|
|
2530
2541
|
}
|
|
2531
2542
|
|
|
2532
2543
|
[class*='Tooltip--bottom'] .TooltipArrow {
|
|
2533
|
-
top:
|
|
2544
|
+
top: -1px;
|
|
2534
2545
|
}
|
|
2535
2546
|
|
|
2536
2547
|
[class*='Tooltip--left'] .TooltipArrow {
|
|
2537
|
-
right:
|
|
2548
|
+
right: -1px;
|
|
2538
2549
|
}
|
|
2539
2550
|
|
|
2540
2551
|
[class*='Tooltip--right'] .TooltipArrow {
|
package/package.json
CHANGED