StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
StackGenVis/frontend/node_modules/vue-slider-component/lib/styles/dot.scss

52 lines
749 B

4 years ago
$tooltipGap: 10px;
.vue-slider-dot {
position: absolute;
transition: all 0s;
z-index: 5;
@at-root &-handle {
@at-root &-focus {
}
@at-root &-disabled {
}
}
}
.vue-slider-dot-tooltip {
position: absolute;
visibility: hidden;
@at-root .vue-slider-dot-hover:hover & {
visibility: visible;
}
&-show {
visibility: visible;
}
&-top {
top: -$tooltipGap;
left: 50%;
transform: translate(-50%, -100%);
}
&-bottom {
bottom: -$tooltipGap;
left: 50%;
transform: translate(-50%, 100%);
}
&-left {
left: -$tooltipGap;
top: 50%;
transform: translate(-100%, -50%);
}
&-right {
right: -$tooltipGap;
top: 50%;
transform: translate(100%, -50%);
}
}