2016-10-26 10:03:16 +08:00
|
|
|
@tooltip-prefix-cls: ~"@{css-prefix}tooltip";
|
2016-10-26 11:45:00 +08:00
|
|
|
@tooltip-arrow: ~"@{tooltip-prefix-cls}-arrow";
|
2016-10-26 10:03:16 +08:00
|
|
|
@tooltip-max-width: 250px;
|
|
|
|
@tooltip-arrow-width: 5px;
|
|
|
|
@tooltip-distance: @tooltip-arrow-width - 1 + 4;
|
|
|
|
|
|
|
|
.@{tooltip-prefix-cls} {
|
|
|
|
display: inline-block;
|
|
|
|
|
2016-10-26 11:45:00 +08:00
|
|
|
&-rel{
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2016-10-26 10:03:16 +08:00
|
|
|
&-popper{
|
2016-10-27 10:30:32 +08:00
|
|
|
.popper(@tooltip-arrow, @tooltip-arrow-width, @tooltip-distance, @tooltip-bg);
|
2016-10-26 10:03:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-inner{
|
|
|
|
max-width: @tooltip-max-width;
|
|
|
|
min-height: 34px;
|
|
|
|
padding: 8px 10px;
|
|
|
|
color: @tooltip-color;
|
|
|
|
text-align: left;
|
|
|
|
text-decoration: none;
|
|
|
|
background-color: @tooltip-bg;
|
|
|
|
border-radius: @border-radius-small;
|
|
|
|
box-shadow: @shadow-base;
|
2016-10-26 13:51:05 +08:00
|
|
|
white-space:nowrap;
|
2016-10-26 10:03:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-arrow{
|
|
|
|
position: absolute;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border-color: transparent;
|
|
|
|
border-style: solid;
|
|
|
|
}
|
|
|
|
}
|