4632614ced
Co-authored-by: fengshuo <fengshuo@bilibili.com>
57 lines
1.6 KiB
SCSS
57 lines
1.6 KiB
SCSS
// --------------------------------------------------------------
|
|
// Markers
|
|
// --------------------------------------------------------------
|
|
.plyr__marker__points {
|
|
width: $plyr-range-track-height;
|
|
height: $plyr-range-track-height;
|
|
border-radius: $plyr-range-track-height;
|
|
background-color: #fff;
|
|
position: absolute;
|
|
top: 50%;
|
|
margin-top: calc((#{$plyr-range-track-height} / 2) * -1);
|
|
margin-left: calc((#{$plyr-range-track-height} / 2) * -1);
|
|
z-index: 3;
|
|
}
|
|
|
|
.plyr__marker__tip {
|
|
background: $plyr-markers-background;
|
|
border-radius: $plyr-markers-radius;
|
|
bottom: 100%;
|
|
box-shadow: $plyr-markers-shadow;
|
|
color: $plyr-markers-color;
|
|
font-size: $plyr-font-size-small;
|
|
font-weight: $plyr-font-weight-regular;
|
|
left: 50%;
|
|
line-height: 1.3;
|
|
margin-bottom: calc(#{$plyr-markers-padding} * 2);
|
|
opacity: 0;
|
|
padding: $plyr-markers-padding calc(#{$plyr-markers-padding} * 1.5);
|
|
pointer-events: none;
|
|
position: absolute;
|
|
transform: translate(-50%, 10px) scale(0.8);
|
|
transform-origin: 50% 100%;
|
|
transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
|
|
white-space: nowrap;
|
|
z-index: 2;
|
|
|
|
// The background triangle
|
|
&::before {
|
|
border-left: $plyr-markers-arrow-size solid transparent;
|
|
border-right: $plyr-markers-arrow-size solid transparent;
|
|
border-top: $plyr-markers-arrow-size solid $plyr-markers-background;
|
|
bottom: calc(#{$plyr-markers-arrow-size} * -1);
|
|
content: '';
|
|
height: 0;
|
|
left: 50%;
|
|
position: absolute;
|
|
transform: translateX(-50%);
|
|
width: 0;
|
|
z-index: 2;
|
|
}
|
|
}
|
|
|
|
.plyr__marker__tip--visible {
|
|
opacity: 1;
|
|
transform: translate(-50%, 0) scale(1);
|
|
z-index: 3;
|
|
} |