mirror of
https://gitee.com/antv/g6.git
synced 2024-12-15 18:11:08 +08:00
24 lines
603 B
CSS
24 lines
603 B
CSS
|
.g6-tooltip {
|
||
|
position: absolute;
|
||
|
white-space: nowrap;
|
||
|
zIndex: 8;
|
||
|
transition: visibility 0.2s cubic-bezier(0.23, 1, 0.32, 1), left 0.4s cubic-bezier(0.23, 1, 0.32, 1), top 0.4s cubic-bezier(0.23, 1, 0.32, 1);
|
||
|
background-color: rgba(255, 255, 255, 0.9);
|
||
|
box-shadow: 0px 0px 10px #aeaeae;
|
||
|
border-radius: 3px;
|
||
|
color: rgb(87, 87, 87);
|
||
|
line-height: 20px;
|
||
|
padding: 10px 10px 6px 10px;
|
||
|
}
|
||
|
.g6-tooltip .g6-tooltip-title{
|
||
|
margin: 0;
|
||
|
}
|
||
|
.g6-tooltip .g6-tooltip-list{
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
margin-top: 4px;
|
||
|
}
|
||
|
.g6-tooltip .g6-tooltip-list li{
|
||
|
font-size: 12px;
|
||
|
list-style-type: none;
|
||
|
}
|