| 12345678910111213141516171819202122 |
- "use strict";
- var _a;
- Object.defineProperty(exports, "__esModule", { value: true });
- var theme_1 = require("../util/theme");
- // tooltip 相关 dom 的 css 类名
- var CssConst = require("./css-const");
- exports.default = (_a = {},
- // css style for tooltip
- _a["" + CssConst.CONTAINER_CLASS] = {
- position: 'relative'
- },
- _a["" + CssConst.CROSSHAIR_LINE] = {
- position: 'absolute',
- backgroundColor: 'rgba(0, 0, 0, 0.25)',
- },
- _a["" + CssConst.CROSSHAIR_TEXT] = {
- position: 'absolute',
- color: theme_1.default.textColor,
- fontFamily: theme_1.default.fontFamily,
- },
- _a);
- //# sourceMappingURL=html-theme.js.map
|