dce-reactkit 3.11.0 → 3.11.1
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/cjs/index.js +2 -7
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/stylesheets/shared.css.d.ts +1 -1
- package/dist/esm/index.js +2 -7
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/stylesheets/shared.css.d.ts +1 -1
- package/package.json +1 -1
- package/src/components/AppWrapper.tsx +18 -18
- package/src/stylesheets/shared.css.ts +0 -5
package/dist/cjs/index.js
CHANGED
|
@@ -950,11 +950,6 @@ const shared = `
|
|
|
950
950
|
.tooltip {
|
|
951
951
|
z-index: 9000000000 !important;
|
|
952
952
|
}
|
|
953
|
-
|
|
954
|
-
/* Tooltip White Text */
|
|
955
|
-
.tooltip .tooltip-inner {
|
|
956
|
-
color: white !important;
|
|
957
|
-
}
|
|
958
953
|
`;
|
|
959
954
|
|
|
960
955
|
/**
|
|
@@ -1475,7 +1470,7 @@ const AppWrapper = (props) => {
|
|
|
1475
1470
|
? `
|
|
1476
1471
|
.tooltip-inner {
|
|
1477
1472
|
background-color: white;
|
|
1478
|
-
color: black;
|
|
1473
|
+
color: black !important;
|
|
1479
1474
|
border: 0.1rem solid black;
|
|
1480
1475
|
pointer-events: none;
|
|
1481
1476
|
}
|
|
@@ -1488,7 +1483,7 @@ const AppWrapper = (props) => {
|
|
|
1488
1483
|
: `
|
|
1489
1484
|
.tooltip-inner {
|
|
1490
1485
|
background-color: black;
|
|
1491
|
-
color: white;
|
|
1486
|
+
color: white !important;
|
|
1492
1487
|
border: 0.1rem solid white;
|
|
1493
1488
|
pointer-events: none;
|
|
1494
1489
|
}
|