dce-reactkit 3.10.3 → 3.11.1-beta.tooltip.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 CHANGED
@@ -937,11 +937,6 @@ const shared = `
937
937
  .tooltip {
938
938
  z-index: 9000000000 !important;
939
939
  }
940
-
941
- /* Tooltip White Text */
942
- .tooltip .tooltip-inner {
943
- color: white !important;
944
- }
945
940
  `;
946
941
 
947
942
  /**
@@ -1462,7 +1457,7 @@ const AppWrapper = (props) => {
1462
1457
  ? `
1463
1458
  .tooltip-inner {
1464
1459
  background-color: white;
1465
- color: black;
1460
+ color: black !important;
1466
1461
  border: 0.1rem solid black;
1467
1462
  pointer-events: none;
1468
1463
  }
@@ -1475,7 +1470,7 @@ const AppWrapper = (props) => {
1475
1470
  : `
1476
1471
  .tooltip-inner {
1477
1472
  background-color: black;
1478
- color: white;
1473
+ color: white !important;
1479
1474
  border: 0.1rem solid white;
1480
1475
  pointer-events: none;
1481
1476
  }
@@ -1716,7 +1711,6 @@ const RadioButton = (props) => {
1716
1711
  useComplexFormatting
1717
1712
  ? (React__default["default"].createElement("pre", { className: "ps-1 text-start text-break", style: {
1718
1713
  whiteSpace: 'pre-wrap',
1719
- tabSize: 2,
1720
1714
  } }, text))
1721
1715
  : (React__default["default"].createElement("div", { className: "flex-grow-1 text-start text-break" }, text)))));
1722
1716
  };
@@ -1764,7 +1758,6 @@ const CheckboxButton = (props) => {
1764
1758
  useComplexFormatting
1765
1759
  ? (React__default["default"].createElement("pre", { className: "ps-1 text-start text-break", style: {
1766
1760
  whiteSpace: 'pre-wrap',
1767
- tabSize: 2,
1768
1761
  } }, text))
1769
1762
  : (React__default["default"].createElement("div", { className: "flex-grow-1 text-start text-break" }, text)))));
1770
1763
  };