asb_cloud_front/src/styles/d3.less

44 lines
911 B
Plaintext
Raw Normal View History

.asb-d3-chart {
& .tooltip {
@color: white;
@bg-color: rgba(0, 0, 0, .75);
@arrow-size: 8px;
width: 100%;
height: 100% - @arrow-size;
color: @color;
position: absolute;
padding: 5px;
border: none;
border-radius: 2px;
background-color: @bg-color;
transition: opacity .1s ease-out;
&::after {
content: ' ';
position: absolute;
width: 0;
height: 0;
border: @arrow-size solid transparent;
}
&.bottom::after {
border-top-color: @bg-color;
top: 100%;
left: 50%;
margin-left: -@arrow-size;
}
}
& .chart-empty {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
}
}