50
50
cursor : default;
51
51
-webkit-app-region : drag;
52
52
overflow : hidden;
53
- animation : loading-animation 0.6 s 1 ;
53
+ animation : loading-animation 2 s 1 ;
54
54
}
55
55
56
56
@media screen and (max-width : 991px ) {
@@ -636,7 +636,7 @@ a:active {
636
636
.current-video-range .current-video-range-max-value ,
637
637
.current-video-range .current-video-range-value {
638
638
position : absolute;
639
- top : 0 ;
639
+ top : -4 px ;
640
640
margin : 0 ;
641
641
color : var (--c-primary );
642
642
}
@@ -652,38 +652,13 @@ a:active {
652
652
.player-range {
653
653
width : 100% ;
654
654
height : 16px ;
655
- margin-top : 3px ;
656
655
overflow : hidden;
657
656
cursor : pointer;
658
657
background : transparent;
659
658
-webkit-appearance : none;
660
659
outline : 0 ;
661
660
}
662
661
663
- .player-range ::-webkit-slider-runnable-track , .player-range ::-webkit-slider-thumb {
664
- -webkit-appearance : none;
665
- }
666
-
667
- .player-range ::-webkit-slider-runnable-track {
668
- width : 100% ;
669
- height : 3px ;
670
- background : var (--c-primary );
671
- }
672
-
673
- .player-range ::-webkit-slider-thumb {
674
- position : relative;
675
- height : 15px ;
676
- width : 15px ;
677
- margin-top : -6px ;
678
- background : var (--c-primary );
679
- border-radius : 50% ;
680
- transition : all 0.2s ease-out;
681
- }
682
-
683
- .player-range .inactive ::-webkit-slider-thumb {
684
- display : none;
685
- }
686
-
687
662
.volume-range-value {
688
663
color : var (--c-primary );
689
664
display : flex;
@@ -703,6 +678,47 @@ a:active {
703
678
visibility : hidden;
704
679
}
705
680
681
+ .duration-range-container {
682
+ position : relative;
683
+ height : 12px ;
684
+ background-color : var (--c-light-gray );
685
+ width : 100% ;
686
+ margin-top : 10px ;
687
+ margin-bottom : 10px ;
688
+ border-radius : 20px ;
689
+ overflow : hidden;
690
+ }
691
+
692
+ .duration-range-container .duration-input-shadow {
693
+ position : absolute;
694
+ top : 0 ;
695
+ left : 0 ;
696
+ height : 100% ;
697
+ border-radius : 0 ;
698
+ background-color : var (--c-primary );
699
+ transition : all 0.1s ease-out;
700
+ border-radius : 20px ;
701
+ }
702
+
703
+ .duration-range-container .player-range {
704
+ -webkit-appearance : none;
705
+ z-index : 1 ;
706
+ position : relative;
707
+ }
708
+
709
+ .duration-range-container .player-range ::-webkit-slider-runnable-track , .duration-range-container .player-range ::-webkit-slider-thumb {
710
+ background : transparent;
711
+ visibility : hidden;
712
+ }
713
+
714
+ .duration-range-container .player-range : hover + .duration-input-shadow {
715
+ background-color : var (--c-primary-active );
716
+ }
717
+
718
+ .duration-range-container .player-range : active + .duration-input-shadow {
719
+ background-color : var (--c-primary-active-focus );
720
+ }
721
+
706
722
.volume-input-container {
707
723
position : relative;
708
724
width : 80px ;
@@ -712,6 +728,20 @@ a:active {
712
728
overflow : hidden;
713
729
}
714
730
731
+ .volume-input-container .volume-input-shadow {
732
+ position : absolute;
733
+ top : 0 ;
734
+ left : 0 ;
735
+ height : 100% ;
736
+ border-radius : 20px ;
737
+ background-color : var (--c-primary );
738
+ transition : all 0.1s ease-out;
739
+ }
740
+
741
+ .volume-input-container .volume-input-shadow .inactive {
742
+ width : 0% !important ;
743
+ }
744
+
715
745
.volume-input-container .volume-input {
716
746
background : transparent;
717
747
cursor : pointer;
@@ -730,18 +760,12 @@ a:active {
730
760
visibility : hidden;
731
761
}
732
762
733
- .volume-input-container .volume-input-shadow {
734
- position : absolute;
735
- top : 0 ;
736
- left : 0 ;
737
- height : 100% ;
738
- border-radius : 20px ;
739
- background-color : var (--c-primary );
740
- transition : all 0.1s ease-out;
763
+ .volume-input-container .volume-input : hover + .volume-input-shadow {
764
+ background-color : var (--c-primary-active );
741
765
}
742
766
743
- .volume-input-container .volume-input- shadow . inactive {
744
- width : 0 % !important ;
767
+ .volume-input-container .volume-input : active + . volume-input- shadow {
768
+ background-color : var ( --c-primary-active-focus ) ;
745
769
}
746
770
747
771
select {
@@ -1210,18 +1234,20 @@ iframe {
1210
1234
1211
1235
.video-item-head-btn {
1212
1236
float : right;
1213
- background-color : var (--c-white );
1237
+ background-color : var (--c-black );
1238
+ border : 1px solid var (--c-primary );
1214
1239
cursor : pointer;
1215
- color : var (--c-primary-inverse );
1240
+ color : var (--c-primary );
1216
1241
border-radius : 3px ;
1217
- padding : 1 px 7 px ;
1242
+ padding : 2 px 8 px ;
1218
1243
margin-top : 2px ;
1219
1244
text-transform : uppercase;
1220
- font-size : 12 px ;
1245
+ font-size : 11 px ;
1221
1246
}
1222
1247
1223
1248
.video-item-head-btn : active {
1224
- background-color : var (--c-light-gray );
1249
+ background-color : var (--c-primary );
1250
+ color : var (--c-black );
1225
1251
user-select : none;
1226
1252
}
1227
1253
@@ -1539,6 +1565,11 @@ iframe {
1539
1565
# feed-video-list .grid-list .video-item .video-item-image {
1540
1566
margin : 0 ;
1541
1567
position : relative;
1568
+ width : 100% ;
1569
+ height : 180px ;
1570
+ background-size : cover;
1571
+ background-repeat : no-repeat;
1572
+ background-position : center center;
1542
1573
}
1543
1574
1544
1575
# feed-video-list .grid-list .video-item .video-item-content {
0 commit comments