tntd
Version:
tntd是基于 TNT Design 设计体系的 React UI 组件库,主要用于研发企业级中后台产品。
29 lines (24 loc) • 499 B
text/less
@tooltip-prefix-cls: ~'@{ant-prefix}-tooltip';
// Base class
.tnt-tooltip.@{tooltip-prefix-cls} {
&-light {
.@{tooltip-prefix-cls}-inner {
background-color: @tooltip-bg-light;
color: @tooltip-color-light;
}
.@{tooltip-prefix-cls}-arrow {
&::before {
background-color: @tooltip-bg-light;
}
}
}
// Arrows
&-arrow {
border-radius: 1px;
}
}
.@{tooltip-prefix-cls}-arrow-hidden {
.@{tooltip-prefix-cls}-arrow {
display: none;
}
}