2019-06-28 18:14:06 +08:00
|
|
|
@import "./mixins/mixins.scss";
|
|
|
|
@import "./theme/default.scss";
|
2019-06-20 12:46:29 +08:00
|
|
|
|
|
|
|
@include b(tooltip) {
|
|
|
|
& {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.n-tooltip__popup.is-hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.n-tooltip__popup.has-emerged {
|
2019-06-28 18:14:06 +08:00
|
|
|
opacity: 0.5;
|
2019-06-20 19:10:53 +08:00
|
|
|
transform: translateX(-50%) translateY(4px);
|
2019-06-20 12:46:29 +08:00
|
|
|
}
|
|
|
|
.n-tooltip__popup {
|
|
|
|
z-index: 1;
|
|
|
|
position: absolute;
|
|
|
|
top: 100%;
|
|
|
|
left: 50%;
|
2019-06-20 19:10:53 +08:00
|
|
|
transform: translateX(-50%) translateY(0px);
|
2019-06-25 18:20:49 +08:00
|
|
|
padding-top: 4px;
|
2019-06-20 12:46:29 +08:00
|
|
|
opacity: 1;
|
2019-06-28 18:14:06 +08:00
|
|
|
transition: opacity 0.3s $default-cubic-bezier,
|
|
|
|
transform 0.3s $fast-in-cubic-bezier;
|
2019-06-20 12:46:29 +08:00
|
|
|
.n-tooltip-popup__content {
|
|
|
|
white-space: nowrap;
|
|
|
|
border-radius: 6px;
|
2019-06-28 18:14:06 +08:00
|
|
|
background-color: rgba(75, 81, 106, 1);
|
|
|
|
color: #ffffffe6;
|
2019-06-20 12:46:29 +08:00
|
|
|
padding: 8px 14px;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
}
|
2019-06-28 18:14:06 +08:00
|
|
|
.n-tooltip__popup.is-vanishing {
|
2019-06-20 12:46:29 +08:00
|
|
|
opacity: 0;
|
2019-06-28 18:14:06 +08:00
|
|
|
transition: opacity 0.3s $default-cubic-bezier,
|
|
|
|
transform 0.3s $slow-out-cubic-bezier !important;
|
2019-06-20 19:10:53 +08:00
|
|
|
transform: translateX(-50%) translateY(4px);
|
2019-06-20 12:46:29 +08:00
|
|
|
}
|
2019-06-28 18:14:06 +08:00
|
|
|
}
|