ant-design/components/tooltip/style/index.less

146 lines
3.1 KiB
Plaintext
Raw Normal View History

@import "../../style/themes/default";
@import "../../style/mixins/index";
2015-06-09 16:40:16 +08:00
@tooltip-prefix-cls: ~"@{ant-prefix}-tooltip";
2015-06-09 16:40:16 +08:00
// Base class
2015-08-20 16:55:42 +08:00
.@{tooltip-prefix-cls} {
.reset-component;
2015-06-09 16:40:16 +08:00
position: absolute;
2016-03-28 16:01:37 +08:00
z-index: @zindex-tooltip;
2015-06-09 16:40:16 +08:00
display: block;
visibility: visible;
max-width: @tooltip-max-width;
2015-06-17 16:58:13 +08:00
2015-06-15 21:18:08 +08:00
&-hidden {
display: none;
}
2015-06-09 16:40:16 +08:00
2015-11-26 19:32:55 +08:00
&-placement-top,
&-placement-topLeft,
&-placement-topRight {
padding-bottom: @tooltip-distance;
2015-11-03 13:50:36 +08:00
}
2015-11-26 19:32:55 +08:00
&-placement-right,
&-placement-rightTop,
&-placement-rightBottom {
padding-left: @tooltip-distance;
2015-11-03 13:50:36 +08:00
}
2015-11-26 19:32:55 +08:00
&-placement-bottom,
&-placement-bottomLeft,
&-placement-bottomRight {
padding-top: @tooltip-distance;
2015-11-03 13:50:36 +08:00
}
2015-11-26 19:32:55 +08:00
&-placement-left,
&-placement-leftTop,
&-placement-leftBottom {
padding-right: @tooltip-distance;
2015-11-03 13:50:36 +08:00
}
2015-06-09 16:40:16 +08:00
// Wrapper for the tooltip content
&-inner {
padding: 6px 8px;
color: @tooltip-color;
text-align: left;
text-decoration: none;
background-color: @tooltip-bg;
border-radius: @border-radius-base;
box-shadow: @box-shadow-base;
min-height: 32px;
word-wrap: break-word;
}
2015-06-09 16:40:16 +08:00
// Arrows
&-arrow {
position: absolute;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}
2015-06-09 16:40:16 +08:00
2015-11-03 13:50:36 +08:00
&-placement-top &-arrow,
&-placement-topLeft &-arrow,
&-placement-topRight &-arrow {
2015-06-10 13:47:56 +08:00
bottom: @tooltip-distance - @tooltip-arrow-width;
2015-06-09 16:40:16 +08:00
border-width: @tooltip-arrow-width @tooltip-arrow-width 0;
border-top-color: @tooltip-arrow-color;
}
2015-11-03 13:50:36 +08:00
&-placement-top &-arrow {
left: 50%;
2016-02-24 13:57:33 +08:00
margin-left: -@tooltip-arrow-width;
2015-11-03 13:50:36 +08:00
}
&-placement-topLeft &-arrow {
2016-02-24 13:57:33 +08:00
left: 16px;
2015-11-03 13:50:36 +08:00
}
&-placement-topRight &-arrow {
2016-02-24 13:57:33 +08:00
right: 16px;
2015-11-03 13:50:36 +08:00
}
&-placement-right &-arrow,
&-placement-rightTop &-arrow,
&-placement-rightBottom &-arrow {
left: @tooltip-distance - @tooltip-arrow-width;
2015-06-09 16:40:16 +08:00
border-width: @tooltip-arrow-width @tooltip-arrow-width @tooltip-arrow-width 0;
border-right-color: @tooltip-arrow-color;
}
2015-11-03 13:50:36 +08:00
&-placement-right &-arrow {
2015-06-09 16:40:16 +08:00
top: 50%;
2016-02-24 13:57:33 +08:00
margin-top: -@tooltip-arrow-width;
2015-11-03 13:50:36 +08:00
}
&-placement-rightTop &-arrow {
2016-02-24 13:57:33 +08:00
top: 8px;
2015-11-03 13:50:36 +08:00
}
&-placement-rightBottom &-arrow {
2016-02-24 13:57:33 +08:00
bottom: 8px;
2015-11-03 13:50:36 +08:00
}
&-placement-left &-arrow,
&-placement-leftTop &-arrow,
&-placement-leftBottom &-arrow {
2015-06-10 13:47:56 +08:00
right: @tooltip-distance - @tooltip-arrow-width;
2015-06-09 16:40:16 +08:00
border-width: @tooltip-arrow-width 0 @tooltip-arrow-width @tooltip-arrow-width;
border-left-color: @tooltip-arrow-color;
}
2015-11-03 13:50:36 +08:00
&-placement-left &-arrow {
top: 50%;
2016-02-24 13:57:33 +08:00
margin-top: -@tooltip-arrow-width;
2015-11-03 13:50:36 +08:00
}
&-placement-leftTop &-arrow {
2016-02-24 13:57:33 +08:00
top: 8px;
2015-11-03 13:50:36 +08:00
}
&-placement-leftBottom &-arrow {
2016-02-24 13:57:33 +08:00
bottom: 8px;
2015-11-03 13:50:36 +08:00
}
&-placement-bottom &-arrow,
&-placement-bottomLeft &-arrow,
&-placement-bottomRight &-arrow {
2015-06-10 13:47:56 +08:00
top: @tooltip-distance - @tooltip-arrow-width;
2015-06-09 16:40:16 +08:00
border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;
border-bottom-color: @tooltip-arrow-color;
}
2015-11-03 13:50:36 +08:00
&-placement-bottom &-arrow {
left: 50%;
2016-02-24 13:57:33 +08:00
margin-left: -@tooltip-arrow-width;
2015-11-03 13:50:36 +08:00
}
&-placement-bottomLeft &-arrow {
2016-02-24 13:57:33 +08:00
left: 16px;
2015-11-03 13:50:36 +08:00
}
&-placement-bottomRight &-arrow {
2016-02-24 13:57:33 +08:00
right: 16px;
2015-11-03 13:50:36 +08:00
}
2015-06-09 16:40:16 +08:00
}