@deque/cauldron-styles 4.7.0-canary.e0f1ccfd → 4.7.0-canary.e9f388bb
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 +6 -2
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -2259,9 +2259,9 @@ p .Link {
|
|
|
2259
2259
|
}
|
|
2260
2260
|
|
|
2261
2261
|
.RadioCardGroup__Icon.Icon svg {
|
|
2262
|
-
/**
|
|
2262
|
+
/**
|
|
2263
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
|
|
2264
|
+
* it is not a color we want to live in cauldron as a variable
|
|
2265
2265
|
* @see https://github.com/dequelabs/cauldron/pull/736
|
|
2266
2266
|
*/
|
|
2267
2267
|
color: #4f990f;
|
|
@@ -2305,6 +2305,10 @@ p .Link {
|
|
|
2305
2305
|
justify-content: center;
|
|
2306
2306
|
}
|
|
2307
2307
|
|
|
2308
|
+
.cauldron--theme-dark .RadioCardGroup__Icon.Icon svg {
|
|
2309
|
+
color: var(--accent-success);
|
|
2310
|
+
}
|
|
2311
|
+
|
|
2308
2312
|
:root {
|
|
2309
2313
|
--tile-background-color: var(--white);
|
|
2310
2314
|
--list-separator: rgba(153, 153, 153, 0.15);
|
package/package.json
CHANGED