html-theme.js 677 B

12345678910111213141516171819202122
  1. "use strict";
  2. var _a;
  3. Object.defineProperty(exports, "__esModule", { value: true });
  4. var theme_1 = require("../util/theme");
  5. // tooltip 相关 dom 的 css 类名
  6. var CssConst = require("./css-const");
  7. exports.default = (_a = {},
  8. // css style for tooltip
  9. _a["" + CssConst.CONTAINER_CLASS] = {
  10. position: 'relative'
  11. },
  12. _a["" + CssConst.CROSSHAIR_LINE] = {
  13. position: 'absolute',
  14. backgroundColor: 'rgba(0, 0, 0, 0.25)',
  15. },
  16. _a["" + CssConst.CROSSHAIR_TEXT] = {
  17. position: 'absolute',
  18. color: theme_1.default.textColor,
  19. fontFamily: theme_1.default.fontFamily,
  20. },
  21. _a);
  22. //# sourceMappingURL=html-theme.js.map