ant-design/style/components/tooltip.less

97 lines
2.6 KiB
Plaintext
Raw Normal View History

2015-06-09 16:40:16 +08:00
@import "../mixins/index";
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
@tooltip-max-width: 250px;
//** Tooltip text color
@tooltip-color: #fff;
//** Tooltip background color
@tooltip-bg: #373737;
2015-06-10 13:47:56 +08:00
@tooltip-opacity: 0.9;
2015-06-09 16:40:16 +08:00
//** Tooltip arrow width
@tooltip-arrow-width: 5px;
2015-06-17 16:58:13 +08:00
//** Tooltip distance with trigger
2015-08-20 16:55:42 +08:00
@tooltip-distance: @tooltip-arrow-width + 4;
2015-06-10 13:47:56 +08:00
//** Tooltip arrow color
2015-06-09 16:40:16 +08:00
@tooltip-arrow-color: @tooltip-bg;
// 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-06-09 17:58:28 +08:00
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-06-10 13:47:56 +08:00
&-placement-top { padding: @tooltip-arrow-width 0 @tooltip-distance 0; }
&-placement-right { padding: 0 @tooltip-arrow-width 0 @tooltip-distance; }
&-placement-bottom { padding: @tooltip-distance 0 @tooltip-arrow-width 0; }
&-placement-left { 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-07-23 14:56:14 +08:00
box-shadow: @overlay-shadow;
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-06-09 16:40:16 +08:00
&-placement-top &-arrow {
2015-06-10 13:47:56 +08:00
bottom: @tooltip-distance - @tooltip-arrow-width;
2015-06-09 16:40:16 +08:00
left: 50%;
margin-left: -@tooltip-arrow-width;
border-width: @tooltip-arrow-width @tooltip-arrow-width 0;
border-top-color: @tooltip-arrow-color;
}
&-placement-right &-arrow {
top: 50%;
2015-06-10 13:47:56 +08:00
left: @tooltip-distance - @tooltip-arrow-width;
2015-06-09 16:40:16 +08:00
margin-top: -@tooltip-arrow-width;
border-width: @tooltip-arrow-width @tooltip-arrow-width @tooltip-arrow-width 0;
border-right-color: @tooltip-arrow-color;
}
&-placement-left &-arrow {
top: 50%;
2015-06-10 13:47:56 +08:00
right: @tooltip-distance - @tooltip-arrow-width;
2015-06-09 16:40:16 +08:00
margin-top: -@tooltip-arrow-width;
border-width: @tooltip-arrow-width 0 @tooltip-arrow-width @tooltip-arrow-width;
border-left-color: @tooltip-arrow-color;
}
&-placement-bottom &-arrow {
2015-06-10 13:47:56 +08:00
top: @tooltip-distance - @tooltip-arrow-width;
2015-06-09 16:40:16 +08:00
left: 50%;
margin-left: -@tooltip-arrow-width;
border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;
border-bottom-color: @tooltip-arrow-color;
}
}