ant-design/style/components/tooltip.less

170 lines
3.6 KiB
Plaintext
Raw Normal View History

2015-06-09 16:40:16 +08:00
@import "../mixins/index";
2015-11-03 13:50:36 +08:00
2015-08-20 16:55:42 +08:00
@tooltip-prefix-cls: ~"@{css-prefix}tooltip";
2015-06-09 16:40:16 +08:00
//
// Tooltips
// --------------------------------------------------
//** Tooltip max width
2015-11-03 13:50:36 +08:00
@tooltip-max-width: 250px;
2015-06-09 16:40:16 +08:00
//** Tooltip text color
2015-11-03 13:50:36 +08:00
@tooltip-color: #fff;
2015-06-09 16:40:16 +08:00
//** Tooltip background color
2015-11-03 13:50:36 +08:00
@tooltip-bg: #373737;
@tooltip-opacity: 0.9;
2015-06-09 16:40:16 +08:00
//** Tooltip arrow width
2015-11-03 13:50:36 +08:00
@tooltip-arrow-width: 5px;
2015-06-17 16:58:13 +08:00
//** Tooltip distance with trigger
2016-02-24 20:15:34 +08:00
@tooltip-distance: @tooltip-arrow-width - 1 + 4;
2015-06-10 13:47:56 +08:00
//** Tooltip arrow color
2015-11-03 13:50:36 +08:00
@tooltip-arrow-color: @tooltip-bg;
2015-06-09 16:40:16 +08:00
// Base class
2015-08-20 16:55:42 +08:00
.@{tooltip-prefix-cls} {
2015-06-09 16:40:16 +08:00
position: absolute;
z-index: 1070;
display: block;
visibility: visible;
2015-11-03 19:58:09 +08:00
// remove left/top by yiminghe
// left: -9999px;
// top: -9999px;
2015-06-09 16:40:16 +08:00
font-size: @font-size-base;
2015-06-09 17:58:28 +08:00
line-height: @line-height-base;
2015-06-10 13:47:56 +08:00
opacity: @tooltip-opacity;
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 {
2015-11-03 13:50:36 +08:00
padding: @tooltip-arrow-width 0 @tooltip-distance 0;
}
2015-11-26 19:32:55 +08:00
&-placement-right,
&-placement-rightTop,
&-placement-rightBottom {
2015-11-03 13:50:36 +08:00
padding: 0 @tooltip-arrow-width 0 @tooltip-distance;
}
2015-11-26 19:32:55 +08:00
&-placement-bottom,
&-placement-bottomLeft,
&-placement-bottomRight {
2015-11-03 13:50:36 +08:00
padding: @tooltip-distance 0 @tooltip-arrow-width 0;
}
2015-11-26 19:32:55 +08:00
&-placement-left,
&-placement-leftTop,
&-placement-leftBottom {
2015-11-03 13:50:36 +08:00
padding: 0 @tooltip-distance 0 @tooltip-arrow-width;
}
2015-06-09 16:40:16 +08:00
}
// Wrapper for the tooltip content
2015-08-20 16:55:42 +08:00
.@{tooltip-prefix-cls}-inner {
2015-06-09 16:40:16 +08:00
max-width: @tooltip-max-width;
2015-06-10 13:47:56 +08:00
padding: 8px 10px;
2015-06-09 16:40:16 +08:00
color: @tooltip-color;
text-align: left;
text-decoration: none;
background-color: @tooltip-bg;
2015-06-09 17:58:28 +08:00
border-radius: @border-radius-base;
2015-12-02 11:53:37 +08:00
box-shadow: @box-shadow-base;
min-height: 34px;
2015-06-09 16:40:16 +08:00
}
// Arrows
2015-08-20 16:55:42 +08:00
.@{tooltip-prefix-cls}-arrow {
2015-06-09 16:40:16 +08:00
position: absolute;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}
2015-08-20 16:55:42 +08:00
.@{tooltip-prefix-cls} {
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
}