@ezuikit/player-theme 3.0.0-beta.5 → 3.0.2-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/constant.js +2 -2
- package/dist/index.cjs +25 -5
- package/dist/index.esm.js +25 -5
- package/dist/index.umd.js +25 -5
- package/dist/style.css +3 -3
- package/dist/style.js +2 -2
- package/package.json +1 -1
package/dist/constant.js
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* @ezuikit/player-theme v3.0.
|
|
3
|
-
* Copyright (c) 2026-05-
|
|
2
|
+
* @ezuikit/player-theme v3.0.2-beta.1
|
|
3
|
+
* Copyright (c) 2026-05-15 Ezviz-OpenBiz
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
6
6
|
'use strict';
|
|
@@ -3263,6 +3263,12 @@ var en = {
|
|
|
3263
3263
|
defaultActive: 0,
|
|
3264
3264
|
isrender: 1
|
|
3265
3265
|
},
|
|
3266
|
+
{
|
|
3267
|
+
iconId: 'zoom',
|
|
3268
|
+
part: 'left',
|
|
3269
|
+
defaultActive: 0,
|
|
3270
|
+
isrender: 1
|
|
3271
|
+
},
|
|
3266
3272
|
{
|
|
3267
3273
|
iconId: 'fullscreen',
|
|
3268
3274
|
part: 'right',
|
|
@@ -8700,6 +8706,7 @@ function _renderTheme(theme, data) {
|
|
|
8700
8706
|
_needTimeLine = list.some(function(item) {
|
|
8701
8707
|
return REC_GROUP.includes(item.iconId);
|
|
8702
8708
|
});
|
|
8709
|
+
theme.$container.classList.remove("" + PREFIX_CLASS + "-has-time-line");
|
|
8703
8710
|
// PC 单独渲染timeLine
|
|
8704
8711
|
if (!Utils.isMobile && !(theme.options.timeLineOptions === null || theme.options.disabledTimeLine) && _needTimeLine) {
|
|
8705
8712
|
theme._recFooter = new RecFooter(theme.$container, {
|
|
@@ -8709,6 +8716,7 @@ function _renderTheme(theme, data) {
|
|
|
8709
8716
|
_renderTimeLine(theme, theme._recFooter.$timeLineContainer, props);
|
|
8710
8717
|
if (theme._footer) {
|
|
8711
8718
|
theme._footer.$container.style.cssText += "bottom: 36px;";
|
|
8719
|
+
theme.$container.classList.add("" + PREFIX_CLASS + "-has-time-line");
|
|
8712
8720
|
}
|
|
8713
8721
|
if (theme.options.dateOptions !== null) {
|
|
8714
8722
|
_renderDatePicker(theme, theme._recFooter.$datePickerContainer, props);
|
|
@@ -9546,8 +9554,13 @@ var THEME_DEFAULT_OPTIONS = {
|
|
|
9546
9554
|
// 这里不要使用 $containerWarp.getBoundingClientRect() 获取宽和高 因为会出现小数导致两次(设置后的值和设置后再次获取的值)的宽高不一致 (因为缩放后取整设置,再次获取还有可能是带小数的然后取整 对比两次不一致,一般在屏幕缩放百分比变化和浏览器页面缩放时出现),致使一直触发 resize 事件
|
|
9547
9555
|
var width = Math.floor(_this.$container.clientWidth);
|
|
9548
9556
|
var height = Math.floor(_this.$container.clientHeight);
|
|
9549
|
-
if (width >
|
|
9557
|
+
if (width > 280 && width <= 375) {
|
|
9550
9558
|
_this.$container.classList.add("" + PREFIX_CLASS + "-medium-width");
|
|
9559
|
+
_this.$container.classList.remove("" + PREFIX_CLASS + "-small-width");
|
|
9560
|
+
_this.$container.classList.remove("" + PREFIX_CLASS + "-mini-width");
|
|
9561
|
+
} else if (width > 200 && width <= 280) {
|
|
9562
|
+
_this.$container.classList.add("" + PREFIX_CLASS + "-small-width");
|
|
9563
|
+
_this.$container.classList.remove("" + PREFIX_CLASS + "-medium-width");
|
|
9551
9564
|
_this.$container.classList.remove("" + PREFIX_CLASS + "-mini-width");
|
|
9552
9565
|
} else {
|
|
9553
9566
|
if (width <= 200) {
|
|
@@ -9555,10 +9568,16 @@ var THEME_DEFAULT_OPTIONS = {
|
|
|
9555
9568
|
} else {
|
|
9556
9569
|
_this.$container.classList.remove("" + PREFIX_CLASS + "-mini-width");
|
|
9557
9570
|
}
|
|
9571
|
+
_this.$container.classList.remove("" + PREFIX_CLASS + "-small-width");
|
|
9558
9572
|
_this.$container.classList.remove("" + PREFIX_CLASS + "-medium-width");
|
|
9559
9573
|
}
|
|
9560
|
-
if (height >
|
|
9574
|
+
if (height > 280 && height <= 375) {
|
|
9561
9575
|
_this.$container.classList.add("" + PREFIX_CLASS + "-medium-height");
|
|
9576
|
+
_this.$container.classList.remove("" + PREFIX_CLASS + "-small-height");
|
|
9577
|
+
_this.$container.classList.remove("" + PREFIX_CLASS + "-mini-height");
|
|
9578
|
+
} else if (height > 200 && height <= 280) {
|
|
9579
|
+
_this.$container.classList.add("" + PREFIX_CLASS + "-small-height");
|
|
9580
|
+
_this.$container.classList.remove("" + PREFIX_CLASS + "-medium-height");
|
|
9562
9581
|
_this.$container.classList.remove("" + PREFIX_CLASS + "-mini-height");
|
|
9563
9582
|
} else {
|
|
9564
9583
|
if (height <= 200) {
|
|
@@ -9566,6 +9585,7 @@ var THEME_DEFAULT_OPTIONS = {
|
|
|
9566
9585
|
} else {
|
|
9567
9586
|
_this.$container.classList.remove("" + PREFIX_CLASS + "-mini-height");
|
|
9568
9587
|
}
|
|
9588
|
+
_this.$container.classList.remove("" + PREFIX_CLASS + "-small-height");
|
|
9569
9589
|
_this.$container.classList.remove("" + PREFIX_CLASS + "-medium-height");
|
|
9570
9590
|
}
|
|
9571
9591
|
//
|
|
@@ -10335,7 +10355,7 @@ var THEME_DEFAULT_OPTIONS = {
|
|
|
10335
10355
|
zh: zh,
|
|
10336
10356
|
en: en
|
|
10337
10357
|
};
|
|
10338
|
-
/** 版本号 @since 0.0.1 */ Theme.THEME_VERSION = '3.0.
|
|
10358
|
+
/** 版本号 @since 0.0.1 */ Theme.THEME_VERSION = '3.0.2-beta.1';
|
|
10339
10359
|
|
|
10340
10360
|
exports.Control = Control;
|
|
10341
10361
|
exports.EVENTS = EVENTS;
|
package/dist/index.esm.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* @ezuikit/player-theme v3.0.
|
|
3
|
-
* Copyright (c) 2026-05-
|
|
2
|
+
* @ezuikit/player-theme v3.0.2-beta.1
|
|
3
|
+
* Copyright (c) 2026-05-15 Ezviz-OpenBiz
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
6
6
|
import EventEmitter from 'eventemitter3';
|
|
@@ -3261,6 +3261,12 @@ var en = {
|
|
|
3261
3261
|
defaultActive: 0,
|
|
3262
3262
|
isrender: 1
|
|
3263
3263
|
},
|
|
3264
|
+
{
|
|
3265
|
+
iconId: 'zoom',
|
|
3266
|
+
part: 'left',
|
|
3267
|
+
defaultActive: 0,
|
|
3268
|
+
isrender: 1
|
|
3269
|
+
},
|
|
3264
3270
|
{
|
|
3265
3271
|
iconId: 'fullscreen',
|
|
3266
3272
|
part: 'right',
|
|
@@ -8698,6 +8704,7 @@ function _renderTheme(theme, data) {
|
|
|
8698
8704
|
_needTimeLine = list.some(function(item) {
|
|
8699
8705
|
return REC_GROUP.includes(item.iconId);
|
|
8700
8706
|
});
|
|
8707
|
+
theme.$container.classList.remove("" + PREFIX_CLASS + "-has-time-line");
|
|
8701
8708
|
// PC 单独渲染timeLine
|
|
8702
8709
|
if (!Utils.isMobile && !(theme.options.timeLineOptions === null || theme.options.disabledTimeLine) && _needTimeLine) {
|
|
8703
8710
|
theme._recFooter = new RecFooter(theme.$container, {
|
|
@@ -8707,6 +8714,7 @@ function _renderTheme(theme, data) {
|
|
|
8707
8714
|
_renderTimeLine(theme, theme._recFooter.$timeLineContainer, props);
|
|
8708
8715
|
if (theme._footer) {
|
|
8709
8716
|
theme._footer.$container.style.cssText += "bottom: 36px;";
|
|
8717
|
+
theme.$container.classList.add("" + PREFIX_CLASS + "-has-time-line");
|
|
8710
8718
|
}
|
|
8711
8719
|
if (theme.options.dateOptions !== null) {
|
|
8712
8720
|
_renderDatePicker(theme, theme._recFooter.$datePickerContainer, props);
|
|
@@ -9544,8 +9552,13 @@ var THEME_DEFAULT_OPTIONS = {
|
|
|
9544
9552
|
// 这里不要使用 $containerWarp.getBoundingClientRect() 获取宽和高 因为会出现小数导致两次(设置后的值和设置后再次获取的值)的宽高不一致 (因为缩放后取整设置,再次获取还有可能是带小数的然后取整 对比两次不一致,一般在屏幕缩放百分比变化和浏览器页面缩放时出现),致使一直触发 resize 事件
|
|
9545
9553
|
var width = Math.floor(_this.$container.clientWidth);
|
|
9546
9554
|
var height = Math.floor(_this.$container.clientHeight);
|
|
9547
|
-
if (width >
|
|
9555
|
+
if (width > 280 && width <= 375) {
|
|
9548
9556
|
_this.$container.classList.add("" + PREFIX_CLASS + "-medium-width");
|
|
9557
|
+
_this.$container.classList.remove("" + PREFIX_CLASS + "-small-width");
|
|
9558
|
+
_this.$container.classList.remove("" + PREFIX_CLASS + "-mini-width");
|
|
9559
|
+
} else if (width > 200 && width <= 280) {
|
|
9560
|
+
_this.$container.classList.add("" + PREFIX_CLASS + "-small-width");
|
|
9561
|
+
_this.$container.classList.remove("" + PREFIX_CLASS + "-medium-width");
|
|
9549
9562
|
_this.$container.classList.remove("" + PREFIX_CLASS + "-mini-width");
|
|
9550
9563
|
} else {
|
|
9551
9564
|
if (width <= 200) {
|
|
@@ -9553,10 +9566,16 @@ var THEME_DEFAULT_OPTIONS = {
|
|
|
9553
9566
|
} else {
|
|
9554
9567
|
_this.$container.classList.remove("" + PREFIX_CLASS + "-mini-width");
|
|
9555
9568
|
}
|
|
9569
|
+
_this.$container.classList.remove("" + PREFIX_CLASS + "-small-width");
|
|
9556
9570
|
_this.$container.classList.remove("" + PREFIX_CLASS + "-medium-width");
|
|
9557
9571
|
}
|
|
9558
|
-
if (height >
|
|
9572
|
+
if (height > 280 && height <= 375) {
|
|
9559
9573
|
_this.$container.classList.add("" + PREFIX_CLASS + "-medium-height");
|
|
9574
|
+
_this.$container.classList.remove("" + PREFIX_CLASS + "-small-height");
|
|
9575
|
+
_this.$container.classList.remove("" + PREFIX_CLASS + "-mini-height");
|
|
9576
|
+
} else if (height > 200 && height <= 280) {
|
|
9577
|
+
_this.$container.classList.add("" + PREFIX_CLASS + "-small-height");
|
|
9578
|
+
_this.$container.classList.remove("" + PREFIX_CLASS + "-medium-height");
|
|
9560
9579
|
_this.$container.classList.remove("" + PREFIX_CLASS + "-mini-height");
|
|
9561
9580
|
} else {
|
|
9562
9581
|
if (height <= 200) {
|
|
@@ -9564,6 +9583,7 @@ var THEME_DEFAULT_OPTIONS = {
|
|
|
9564
9583
|
} else {
|
|
9565
9584
|
_this.$container.classList.remove("" + PREFIX_CLASS + "-mini-height");
|
|
9566
9585
|
}
|
|
9586
|
+
_this.$container.classList.remove("" + PREFIX_CLASS + "-small-height");
|
|
9567
9587
|
_this.$container.classList.remove("" + PREFIX_CLASS + "-medium-height");
|
|
9568
9588
|
}
|
|
9569
9589
|
//
|
|
@@ -10333,6 +10353,6 @@ var THEME_DEFAULT_OPTIONS = {
|
|
|
10333
10353
|
zh: zh,
|
|
10334
10354
|
en: en
|
|
10335
10355
|
};
|
|
10336
|
-
/** 版本号 @since 0.0.1 */ Theme.THEME_VERSION = '3.0.
|
|
10356
|
+
/** 版本号 @since 0.0.1 */ Theme.THEME_VERSION = '3.0.2-beta.1';
|
|
10337
10357
|
|
|
10338
10358
|
export { Control, EVENTS, Fullscreen, Loading, Message, Play, Poster, Rec, Theme, Utils, Volume };
|
package/dist/index.umd.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* @ezuikit/player-theme v3.0.
|
|
3
|
-
* Copyright (c) 2026-05-
|
|
2
|
+
* @ezuikit/player-theme v3.0.2-beta.1
|
|
3
|
+
* Copyright (c) 2026-05-15 Ezviz-OpenBiz
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
6
6
|
(function (global, factory) {
|
|
@@ -4752,6 +4752,12 @@
|
|
|
4752
4752
|
defaultActive: 0,
|
|
4753
4753
|
isrender: 1
|
|
4754
4754
|
},
|
|
4755
|
+
{
|
|
4756
|
+
iconId: 'zoom',
|
|
4757
|
+
part: 'left',
|
|
4758
|
+
defaultActive: 0,
|
|
4759
|
+
isrender: 1
|
|
4760
|
+
},
|
|
4755
4761
|
{
|
|
4756
4762
|
iconId: 'fullscreen',
|
|
4757
4763
|
part: 'right',
|
|
@@ -10759,6 +10765,7 @@
|
|
|
10759
10765
|
_needTimeLine = list.some(function(item) {
|
|
10760
10766
|
return REC_GROUP.includes(item.iconId);
|
|
10761
10767
|
});
|
|
10768
|
+
theme.$container.classList.remove("" + PREFIX_CLASS + "-has-time-line");
|
|
10762
10769
|
// PC 单独渲染timeLine
|
|
10763
10770
|
if (!Utils.isMobile && !(theme.options.timeLineOptions === null || theme.options.disabledTimeLine) && _needTimeLine) {
|
|
10764
10771
|
theme._recFooter = new RecFooter(theme.$container, {
|
|
@@ -10768,6 +10775,7 @@
|
|
|
10768
10775
|
_renderTimeLine(theme, theme._recFooter.$timeLineContainer, props);
|
|
10769
10776
|
if (theme._footer) {
|
|
10770
10777
|
theme._footer.$container.style.cssText += "bottom: 36px;";
|
|
10778
|
+
theme.$container.classList.add("" + PREFIX_CLASS + "-has-time-line");
|
|
10771
10779
|
}
|
|
10772
10780
|
if (theme.options.dateOptions !== null) {
|
|
10773
10781
|
_renderDatePicker(theme, theme._recFooter.$datePickerContainer, props);
|
|
@@ -11605,8 +11613,13 @@
|
|
|
11605
11613
|
// 这里不要使用 $containerWarp.getBoundingClientRect() 获取宽和高 因为会出现小数导致两次(设置后的值和设置后再次获取的值)的宽高不一致 (因为缩放后取整设置,再次获取还有可能是带小数的然后取整 对比两次不一致,一般在屏幕缩放百分比变化和浏览器页面缩放时出现),致使一直触发 resize 事件
|
|
11606
11614
|
var width = Math.floor(_this.$container.clientWidth);
|
|
11607
11615
|
var height = Math.floor(_this.$container.clientHeight);
|
|
11608
|
-
if (width >
|
|
11616
|
+
if (width > 280 && width <= 375) {
|
|
11609
11617
|
_this.$container.classList.add("" + PREFIX_CLASS + "-medium-width");
|
|
11618
|
+
_this.$container.classList.remove("" + PREFIX_CLASS + "-small-width");
|
|
11619
|
+
_this.$container.classList.remove("" + PREFIX_CLASS + "-mini-width");
|
|
11620
|
+
} else if (width > 200 && width <= 280) {
|
|
11621
|
+
_this.$container.classList.add("" + PREFIX_CLASS + "-small-width");
|
|
11622
|
+
_this.$container.classList.remove("" + PREFIX_CLASS + "-medium-width");
|
|
11610
11623
|
_this.$container.classList.remove("" + PREFIX_CLASS + "-mini-width");
|
|
11611
11624
|
} else {
|
|
11612
11625
|
if (width <= 200) {
|
|
@@ -11614,10 +11627,16 @@
|
|
|
11614
11627
|
} else {
|
|
11615
11628
|
_this.$container.classList.remove("" + PREFIX_CLASS + "-mini-width");
|
|
11616
11629
|
}
|
|
11630
|
+
_this.$container.classList.remove("" + PREFIX_CLASS + "-small-width");
|
|
11617
11631
|
_this.$container.classList.remove("" + PREFIX_CLASS + "-medium-width");
|
|
11618
11632
|
}
|
|
11619
|
-
if (height >
|
|
11633
|
+
if (height > 280 && height <= 375) {
|
|
11620
11634
|
_this.$container.classList.add("" + PREFIX_CLASS + "-medium-height");
|
|
11635
|
+
_this.$container.classList.remove("" + PREFIX_CLASS + "-small-height");
|
|
11636
|
+
_this.$container.classList.remove("" + PREFIX_CLASS + "-mini-height");
|
|
11637
|
+
} else if (height > 200 && height <= 280) {
|
|
11638
|
+
_this.$container.classList.add("" + PREFIX_CLASS + "-small-height");
|
|
11639
|
+
_this.$container.classList.remove("" + PREFIX_CLASS + "-medium-height");
|
|
11621
11640
|
_this.$container.classList.remove("" + PREFIX_CLASS + "-mini-height");
|
|
11622
11641
|
} else {
|
|
11623
11642
|
if (height <= 200) {
|
|
@@ -11625,6 +11644,7 @@
|
|
|
11625
11644
|
} else {
|
|
11626
11645
|
_this.$container.classList.remove("" + PREFIX_CLASS + "-mini-height");
|
|
11627
11646
|
}
|
|
11647
|
+
_this.$container.classList.remove("" + PREFIX_CLASS + "-small-height");
|
|
11628
11648
|
_this.$container.classList.remove("" + PREFIX_CLASS + "-medium-height");
|
|
11629
11649
|
}
|
|
11630
11650
|
//
|
|
@@ -12394,7 +12414,7 @@
|
|
|
12394
12414
|
zh: zh,
|
|
12395
12415
|
en: en
|
|
12396
12416
|
};
|
|
12397
|
-
/** 版本号 @since 0.0.1 */ Theme.THEME_VERSION = '3.0.
|
|
12417
|
+
/** 版本号 @since 0.0.1 */ Theme.THEME_VERSION = '3.0.2-beta.1';
|
|
12398
12418
|
|
|
12399
12419
|
// 不要动这里的代码, 这个出口是为了编译成 umd 规范的文件
|
|
12400
12420
|
|
package/dist/style.css
CHANGED
|
@@ -13,7 +13,7 @@ body.ezplayer-body-mobile-noscroll{background-color:#000!important;height:100vh;
|
|
|
13
13
|
.ecalendar{box-sizing:border-box;cursor:unset;line-height:normal;margin:0;padding-left:0;text-align:left}.ecalendar-panel{border:1px solid var(--edate-border-color,rgba(5,5,5,.06));box-sizing:border-box;display:flex;flex-direction:column;width:100%}.ecalendar-body{box-sizing:border-box;color:var(--edate-default-color,rgba(0,0,0,.88));flex:1 1 auto;padding:6px 10px}.ecalendar-content{box-sizing:border-box;width:100%}.ecalendar-content th{height:30px}.ecalendar-content tr td{padding:3px 0}.ecalendar-content tr td:before{content:"";display:block;height:var(--edate-calendar-cell-height,24px);position:absolute;width:100%}.ecalendar-cell{box-sizing:border-box;color:rgba(0,0,0,.25);cursor:pointer;padding:0;position:relative;text-align:center}.ecalendar-cell:not(.edate-disabled):hover .ecalendar-cell-inner{background-color:var(--edate-hover-bg-color,rgba(0,0,0,.04))}.ecalendar-cell-in-view{color:var(--edate-default-color,rgba(0,0,0,.88))}.ecalendar-cell-in-view.ecalendar-cell-selected:not(.edate-disabled) .ecalendar-cell-inner{background-color:var(--edate-primary-color,#1677ff)!important;color:#fff}.ecalendar-cell-in-view.ecalendar-cell-selected:not(.edate-disabled) .ecalendar-badge{background-color:#fff}.ecalendar-cell-in-view.ecalendar-cell-selected.edate-disabled .ecalendar-cell-inner{background-color:var(--edate-disabled-bg-color,rgba(0,0,0,.25))}.ecalendar-cell-in-view.ecalendar-cell-today .ecalendar-cell-inner{border-color:var(--edate-primary-color,#1677ff)}.ecalendar-cell-in-view.ecalendar-cell-today.edate-disabled .ecalendar-cell-inner{border-color:var(--edate-disabled-bg-color,rgba(0,0,0,.25))}.ecalendar-cell-inner{align-items:center;border:1px solid transparent;border-radius:var(--edate-calendar-border-radius,2px);display:inline-flex;height:var(--edate-calendar-cell-height,26px);inset-inline-end:0;inset-inline-start:0;justify-content:center;line-height:var(--edate-calendar-cell-height,26px);padding:0;position:relative;transition:background .2s,border .2s;width:var(--edate-calendar-cell-width,26px);z-index:2}.ecalendar-cell .ecalendar-badge{background-color:var(--edate-primary-color,#1677ff);border-radius:50%;height:3px;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(8px);width:3px;z-index:3}.ecalendar-cell.edate-disabled .ecalendar-badge{background-color:var(--edate-disabled-color,rgba(0,0,0,.25))}.epicker-mobile .ecalendar-content tr td{padding:8px 0}
|
|
14
14
|
.emonth{cursor:unset;line-height:normal}.emonth-panel{background-color:#fff;border:1px solid var(--edate-border-color,rgba(5,5,5,.06));display:flex;flex-direction:column}.emonth-panel .emonth-body{padding:1px 8px}.emonth-panel table{width:100%}.emonth-panel .emonth-cell{height:52px}.emonth-panel .emonth-cell-inner{padding:0 8px}.emonth-body{color:var(--edate-default-color,rgba(0,0,0,.88));padding:0 10px}.emonth-content{width:100%}.emonth-cell{box-sizing:border-box;color:rgba(0,0,0,.25);cursor:pointer;padding:0;position:relative;text-align:center}.emonth-cell:not(.edate-disabled):hover .emonth-cell-inner{background-color:var(--edate-hover-bg-color,rgba(0,0,0,.04))}.emonth-cell:before{content:"";height:22px;inset-inline-end:0;inset-inline-start:0;position:absolute;top:50%;transform:translateY(-50%);transition:all .3s;z-index:1}.emonth-cell-in-view{color:var(--edate-default-color,rgba(0,0,0,.88))}.emonth-cell-in-view.emonth-cell-selected:not(.edate-disabled) .emonth-cell-inner{background-color:var(--edate-primary-color,#1677ff)!important;color:#fff}.emonth-cell-in-view.emonth-cell-selected.edate-disabled .emonth-cell-inner{background-color:var(--edate-disabled-bg-color,rgba(0,0,0,.04))!important}.emonth-cell-inner{border-radius:var(--edate-border-radius,2px);display:inline-block;height:22px;line-height:22px;min-width:22px;position:relative;transition:background .2s,border .2s;z-index:2}
|
|
15
15
|
.eyear{cursor:unset;line-height:normal}.eyear-layout{align-items:stretch;display:flex;flex-wrap:nowrap}.eyear-panel{background-color:#fff;border:1px solid var(--edate-border-color,rgba(5,5,5,.06));display:flex;flex-direction:column}.eyear-panel .eyear-body{padding:1px 8px}.eyear-panel table{width:100%}.eyear-panel .eyear-cell{height:52px}.eyear-panel .eyear-cell-inner{padding:0 8px}.eyear-body{padding:0 10px}.eyear-cell{box-sizing:border-box;color:rgba(0,0,0,.25);cursor:pointer;padding:0;position:relative;text-align:center}.eyear-cell:not(.edate-disabled):hover .eyear-cell-inner{background-color:var(--edate-hover-bg-color,rgba(0,0,0,.04))}.eyear-cell:before{content:"";height:22px;inset-inline-end:0;inset-inline-start:0;position:absolute;top:50%;transform:translateY(-50%);transition:all .3s;z-index:1}.eyear-cell-in-view{color:var(--edate-default-color,rgba(0,0,0,.88))}.eyear-cell-in-view.eyear-cell-selected:not(.edate-disabled) .eyear-cell-inner{background-color:var(--edate-primary-color,#1677ff);color:#fff}.eyear-cell-in-view.eyear-cell-selected.edate-disabled .eyear-cell-inner{background-color:var(--edate-disabled-bg-color,rgba(0,0,0,.04))}.eyear-cell-inner{border-radius:var(--data-picker-border-radius,2px);display:inline-block;height:22px;line-height:22px;min-width:22px;position:relative;transition:background .2s,border .2s;z-index:2}
|
|
16
|
-
.ezplayer .ezplayer-progress{align-items:center;background-color:var(--ezplayer-panel-bg-color,rgba(0,0,0,.7));border-radius:var(--ezplayer-border-radius,8px);box-sizing:border-box;cursor:default;display:flex;flex-direction:column;justify-content:center;padding:
|
|
16
|
+
.ezplayer .ezplayer-progress{align-items:center;background-color:var(--ezplayer-panel-bg-color,rgba(0,0,0,.7));border-radius:var(--ezplayer-border-radius,8px);box-sizing:border-box;cursor:default;display:flex;flex-direction:column;justify-content:center;padding:30px 9px 11px;position:relative;width:38px}.ezplayer .ezplayer-progress,.ezplayer .ezplayer-progress-text{-webkit-user-select:none;-moz-user-select:none;user-select:none}.ezplayer .ezplayer-progress-text{font-size:12px;height:17px;left:0;line-height:17px;position:absolute;text-align:center;top:8px;width:100%}.ezplayer .ezplayer-progress-minus,.ezplayer .ezplayer-progress-plus{display:flex;height:25px;justify-content:center}.ezplayer .ezplayer-progress-minus .ezplayer-icon,.ezplayer .ezplayer-progress-plus .ezplayer-icon{color:#fff;cursor:pointer;display:inline-block;font-size:20px;height:20px;text-align:center;transition:color .3s ease,border-color .3s ease;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:20px}.ezplayer .ezplayer-progress-minus .ezplayer-icon:active,.ezplayer .ezplayer-progress-plus .ezplayer-icon:active{color:var(--ezplayer-primary-color,#407aff)}@media (hover:hover){.ezplayer .ezplayer-progress-minus .ezplayer-icon:hover,.ezplayer .ezplayer-progress-plus .ezplayer-icon:hover{color:var(--ezplayer-primary-color,#407aff)}}.ezplayer .ezplayer-progress-plus{padding-bottom:5px}.ezplayer .ezplayer-progress-minus{padding-top:5px}.ezplayer .ezplayer-progress-slider{background-color:hsla(0,0%,100%,.75);border-radius:2px;cursor:pointer;flex:1 1 auto;position:relative;width:4px}.ezplayer .ezplayer-progress-slider-fill{background-color:var(--ezplayer-primary-color,#407aff);border-radius:4px;bottom:0;height:0;left:0;position:absolute;width:100%}.ezplayer .ezplayer-progress-slider-handle{align-items:center;background-color:var(--ezplayer-primary-color,#407aff);border-radius:50%;cursor:pointer;display:inline-flex;height:12px;justify-content:center;left:50%;position:absolute;top:0;transform:translate(-50%,-50%);width:12px}.ezplayer .ezplayer-progress-slider-handle:hover{box-shadow:0 0 2px var(--ezplayer-primary-color,#407aff)}.ezplayer .ezplayer-progress-slider-handle:before{background-color:#fff;border-radius:50%;content:"";display:inline;height:6px;width:6px}
|
|
17
17
|
.ezplayer-icon{align-items:center;color:inherit;display:inline-flex;font-size:var(--ezplayer-icon-font-size,24px);font-style:normal;line-height:0;text-align:center;text-rendering:optimizeLegibility;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
|
|
18
18
|
.ezplayer-select-panel{background-color:var(--ezplayer-panel-bg-color,rgba(0,0,0,.7));border-radius:var(--ezplayer-border-radius,8px);color:var(--ezplayer-default-color,#fff);display:flex;flex-direction:column;overflow-x:hidden;overflow-y:auto;position:relative}.ezplayer-select-btn{width:50px}.ezplayer-select-btn span{display:inline-block;font-size:12px;font-size:calc(var(--ezplayer-font-size, 14px) - 2px);line-height:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ezplayer-select-list{align-items:center;display:flex;flex-direction:column;font-size:var(--ezplayer-font-size,14px);list-style:none;margin:0;padding:12px 0!important;width:100%}.ezplayer-select-option{box-sizing:border-box;cursor:pointer;display:inline-flex;height:28px;justify-content:center;line-height:18px;list-style:none;padding:5px 20px!important;transition:color .3s ease;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:100%}.ezplayer-select-option span{display:inline-block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ezplayer-select-option:hover{color:var(--ezplayer-active-color)}.ezplayer-select-cancel,.ezplayer-select-close{display:none}.ezplayer-select-cancel{font-size:var(--ezplayer-font-size,14px)}.ezplayer-mobile .epicker-mobile.ezplayer-select-picker .ezplayer-select-panel{background-color:transparent;max-width:400px;padding-bottom:calc(54px + env(safe-area-inset-bottom));width:90%}.ezplayer-mobile .epicker-mobile.ezplayer-select-picker .ezplayer-select-list{align-items:center;background-color:#fff;border-radius:var(--ezplayer-border-radius,8px);display:flex;flex-direction:column;font-size:var(--ezplayer-font-size,14px);max-height:70vh;max-height:calc(90vh - 108px);overflow-x:hidden;overflow-y:auto;padding:20px 0!important}.ezplayer-mobile .epicker-mobile.ezplayer-select-picker .ezplayer-select-cancel,.ezplayer-mobile .epicker-mobile.ezplayer-select-picker .ezplayer-select-option{align-items:center;box-sizing:border-box;color:#2c2c2c;display:inline-flex;height:36px;justify-content:center;line-height:26px;padding:5px 20px!important}.ezplayer-mobile .epicker-mobile.ezplayer-select-picker .ezplayer-select-option{--webkit-tap-highlight-color:transparent!important}.ezplayer-mobile .epicker-mobile.ezplayer-select-picker .ezplayer-select-option:hover{color:#2c2c2c}.ezplayer-mobile .epicker-mobile.ezplayer-select-picker .ezplayer-select-option:active{background-color:#f8f8f8}.ezplayer-mobile .epicker-mobile.ezplayer-select-picker .ezplayer-select-cancel{background-color:#fff;border-radius:var(--ezplayer-border-radius,8px);display:flex;height:54px;margin-top:8px}.ezplayer-mobile .epicker-mobile.ezplayer-select-picker .ezplayer-select-cancel:active{color:var(--ezplayer-active-color)}.ezplayer-mobile.ezplayer-fullscreen .epicker-mobile.ezplayer-select-picker .epicker-body{bottom:0;left:unset;right:0;top:0;width:240px}.ezplayer-mobile.ezplayer-fullscreen .epicker-mobile.ezplayer-select-picker .ezplayer-select-panel{align-items:center;background-color:var(--ezplayer-panel-bg-color,rgba(0,0,0,.7));border-bottom-right-radius:0;border-top-right-radius:0;height:100%;justify-content:center;padding-bottom:env(safe-area-inset-bottom);width:100%}.ezplayer-mobile.ezplayer-fullscreen .epicker-mobile.ezplayer-select-picker .ezplayer-select-list{background-color:transparent;border-radius:0;color:#fff;height:auto;margin:0;max-height:100%;width:100%}.ezplayer-mobile.ezplayer-fullscreen .epicker-mobile.ezplayer-select-picker .ezplayer-select-option,.ezplayer-mobile.ezplayer-fullscreen .epicker-mobile.ezplayer-select-picker .ezplayer-select-option:hover{color:#fff}.ezplayer-mobile.ezplayer-fullscreen .epicker-mobile.ezplayer-select-picker .ezplayer-select-option:active{background-color:transparent;color:var(--ezplayer-active-color)}.ezplayer-mobile.ezplayer-fullscreen .epicker-mobile.ezplayer-select-picker .ezplayer-select-cancel{display:none}.ezplayer-mobile.ezplayer-fullscreen .epicker-mobile.ezplayer-select-picker .ezplayer-select-close{display:inline-flex;left:10px;position:absolute;top:10px}.ezplayer-mobile.ezplayer-fullscreen .epicker-mobile.ezplayer-select-picker .ezplayer-select-close:active{color:var(--ezplayer-active-color)}
|
|
19
19
|
.ezplayer-control-fullscreen .ezplayer-icon-exit-fullscreen,.ezplayer-control-global-fullscreen .ezplayer-icon-exit-global-fullscreen{display:none}.ezplayer-fullscreen .ezplayer-icon-exit-fullscreen{display:inline-flex}.ezplayer-fullscreen .ezplayer-icon-fullscreen{display:none}.ezplayer-global-fullscreen .ezplayer-icon-exit-global-fullscreen{display:inline-flex}.ezplayer-global-fullscreen .ezplayer-icon-global-fullscreen{display:none}
|
|
@@ -23,7 +23,7 @@ body.ezplayer-body-mobile-noscroll{background-color:#000!important;height:100vh;
|
|
|
23
23
|
.ezplayer-icon-volume{position:relative}.ezplayer-icon-volume svg .ezplayer-icon-volume-high,.ezplayer-icon-volume svg .ezplayer-icon-volume-low,.ezplayer-icon-volume svg .ezplayer-icon-volume-muted{display:none}.ezplayer-icon-volume.ezplayer-icon-volume-high svg .ezplayer-icon-volume-high,.ezplayer-icon-volume.ezplayer-icon-volume-high svg .ezplayer-icon-volume-low,.ezplayer-icon-volume.ezplayer-icon-volume-low svg .ezplayer-icon-volume-low,.ezplayer-icon-volume.ezplayer-icon-volume-muted svg .ezplayer-icon-volume-muted,.ezplayer-icon-volume.ezplayer-icon-volume-zero svg .ezplayer-icon-volume-muted{display:inline}.ezplayer-volume-progress{height:126px}
|
|
24
24
|
.ezplayer-control-rec{box-sizing:border-box;display:inline-flex;flex-direction:row}.ezplayer-control-rec .ezplayer-icon-cloud-rec,.ezplayer-control-rec .ezplayer-icon-cloud-record,.ezplayer-control-rec .ezplayer-icon-sdk{color:#d4d7dd;cursor:pointer;margin-left:5px}.ezplayer-mobile-extend .ezplayer-control-rec{background-color:#f4f6fc;border:1px solid #ededed;border-radius:18px;height:30px}.ezplayer-mobile-extend .ezplayer-icon-cloud-rec,.ezplayer-mobile-extend .ezplayer-icon-cloud-record,.ezplayer-mobile-extend .ezplayer-icon-sdk{cursor:pointer;font-size:20px;margin-left:1px;padding:2px 7px}.ezplayer-mobile-extend .ezplayer-icon-cloud-rec.ezplayer-active,.ezplayer-mobile-extend .ezplayer-icon-cloud-record.ezplayer-active,.ezplayer-mobile-extend .ezplayer-icon-sdk.ezplayer-active{background-color:#fff;border-radius:12px;box-shadow:0 1px 4px 0 hsla(0,0%,68%,.2)}.ezplayer-mobile .ezplayer-icon-cloud-rec,.ezplayer-mobile .ezplayer-icon-cloud-record,.ezplayer-mobile .ezplayer-icon-sdk{margin-left:10px}
|
|
25
25
|
.ezplayer-more-panel{align-items:center;background-color:var(--ezplayer-panel-bg-color,rgba(0,0,0,.7));border-radius:var(--ezplayer-border-radius,8px);cursor:default;display:flex;flex-direction:row;padding:8px 10px}.ezplayer-more .ezplayer-control{margin-left:10px}.ezplayer-more .ezplayer-control:first-child{margin-right:0}
|
|
26
|
-
.ezplayer-
|
|
26
|
+
.ezplayer-zoom-panel{bottom:0;display:inline-flex;flex-direction:column;height:100%;justify-content:flex-end;left:20px;padding-bottom:calc(var(--ezplayer-footer-height, 80px) + 20px);pointer-events:none;position:absolute;top:0;z-index:23}.ezplayer-zoom-panel .ezplayer-progress{height:200px;max-height:95%;pointer-events:auto}.ezplayer-mini-height .ezplayer-progress-minus,.ezplayer-mini-height .ezplayer-progress-plus,.ezplayer-small-height .ezplayer-progress-minus,.ezplayer-small-height .ezplayer-progress-plus{display:none}.ezplayer-small-height .ezplayer-zoom-panel{min-height:auto;padding-bottom:calc(var(--ezplayer-footer-height, 80px))}.ezplayer-small-height .ezplayer-zoom-panel .ezplayer-progress{height:150px;max-height:95%;pointer-events:auto}.ezplayer-mini-height .ezplayer-zoom-panel{min-height:auto;padding-bottom:calc(var(--ezplayer-footer-height, 80px) - 10px);padding-top:0}.ezplayer-pc.ezplayer-has-time-line.ezplayer-medium-height .ezplayer-zoom-panel{padding-bottom:calc(var(--ezplayer-footer-height, 80px) + 31px)}.ezplayer-pc.ezplayer-has-time-line.ezplayer-mini-height .ezplayer-zoom-panel,.ezplayer-pc.ezplayer-has-time-line.ezplayer-small-height .ezplayer-zoom-panel{padding-bottom:calc(var(--ezplayer-footer-height, 80px) + 16px)}.ezplayer-mobile .ezplayer-zoom-panel{padding-bottom:calc(var(--ezplayer-mobile-footer-height, 54px) + 10px)!important}.ezplayer-mobile.ezplayer-fullscreen .ezplayer-zoom-panel{padding-bottom:var(--ezplayer-mobile-fullscreen-footer-height,110px)!important;padding-top:var(--ezplayer-mobile-fullscreen-header-height,75px)!important}
|
|
27
27
|
.ezplayer-icon-talk-growth-dot1,.ezplayer-icon-talk-growth-dot2,.ezplayer-icon-talk-growth-dot3,.ezplayer-icon-talk-growth-dot4{color:var(--ezplayer-default-color,#fff)}.ezplayer-control-talk.ezplayer-active.ezplayer-talk-gain-deafening .ezplayer-icon-talk-growth-dot1,.ezplayer-control-talk.ezplayer-active.ezplayer-talk-gain-deafening .ezplayer-icon-talk-growth-dot2,.ezplayer-control-talk.ezplayer-active.ezplayer-talk-gain-deafening .ezplayer-icon-talk-growth-dot3,.ezplayer-control-talk.ezplayer-active.ezplayer-talk-gain-deafening .ezplayer-icon-talk-growth-dot4,.ezplayer-control-talk.ezplayer-active.ezplayer-talk-gain-high .ezplayer-icon-talk-growth-dot2,.ezplayer-control-talk.ezplayer-active.ezplayer-talk-gain-high .ezplayer-icon-talk-growth-dot3,.ezplayer-control-talk.ezplayer-active.ezplayer-talk-gain-high .ezplayer-icon-talk-growth-dot4,.ezplayer-control-talk.ezplayer-active.ezplayer-talk-gain-low .ezplayer-icon-talk-growth-dot4,.ezplayer-control-talk.ezplayer-active.ezplayer-talk-gain-normal .ezplayer-icon-talk-growth-dot3,.ezplayer-control-talk.ezplayer-active.ezplayer-talk-gain-normal .ezplayer-icon-talk-growth-dot4{color:var(--ezplayer-active-color,#407aff)}
|
|
28
28
|
.ezplayer-control-broadcast.ezplayer-active .ezplayer-icon-record-circle{color:var(--ezplayer-active-color,#407aff)}
|
|
29
29
|
.ezplayer-control-aichat.ezplayer-active .ezplayer-icon-aichat{color:var(--ezplayer-active-color,#407aff)}
|
|
@@ -32,7 +32,7 @@ body.ezplayer-body-mobile-noscroll{background-color:#000!important;height:100vh;
|
|
|
32
32
|
|
|
33
33
|
.ezplayer-control-device{width:100%}.ezplayer-control-device span{display:inline;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
|
|
34
34
|
.ezplayer-pause{bottom:0;color:#fff!important;cursor:pointer!important;height:100%;left:0;overflow:hidden;position:absolute;right:0;top:0;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:100%;z-index:3}.ezplayer-pause-circle{align-items:center;background-color:rgba(0,0,0,.4);border-radius:50%;cursor:pointer;display:flex;font-size:20px;height:50px;justify-content:center;transition:transform .3s ease,opacity 1s ease;width:50px}.ezplayer-pause-circle:hover{opacity:.85}.ezplayer-pause-circle .ezplayer-icon-pause,.ezplayer-pause-circle .ezplayer-icon-play{font-size:32px}.ezplayer-pause-transform .ezplayer-pause-circle{opacity:0;transform:scale(1.1)}
|
|
35
|
-
.ezplayer-medium-height .ezplayer-ptz-panel,.ezplayer-mini-height .ezplayer-ptz-panel{padding-bottom:0;padding-top:0;right:0;z-index:22}.ezplayer-medium-height .ezplayer-ptz-panel .ezplayer-ptz-turntable,.ezplayer-mini-height .ezplayer-ptz-panel .ezplayer-ptz-turntable{border-bottom-right-radius:0;border-top-right-radius:0;max-height:none}.ezplayer-mini-height .ez-ptz-btn-container,.ezplayer-mini-height .ez-ptz-speed-container{display:none!important}.ezplayer-ptz-panel{box-sizing:border-box;flex-direction:column;max-width:70%;padding-bottom:var(--ezplayer-footer-height,80px);padding-top:var(--ezplayer-header-height,46px);pointer-events:none;position:absolute;right:10px;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:150px;z-index:3}.ezplayer-ptz-panel,.ezplayer-ptz-panel .ezplayer-ptz-turntable{align-items:center;display:flex;height:100%;justify-content:center}.ezplayer-ptz-panel .ezplayer-ptz-turntable{background-color:var(--ezplayer-panel-bg-color,rgba(0,0,0,.7));border-radius:var(--ezplayer-border-radius,8px);flex:1 1 auto;max-height:283px;padding:20px;pointer-events:auto;width:100%}.ezplayer-mobile .ezplayer-control-ptz,.ezplayer-mobile .ezplayer-ptz-panel{display:none}.ezplayer-mobile.ezplayer-fullscreen .ezplayer-control-ptz,.ezplayer-mobile.ezplayer-fullscreen .ezplayer-ptz-panel{display:inline-flex}.ezplayer-mobile.ezplayer-fullscreen .ezplayer-ptz-panel{padding-bottom:calc(var(--ezplayer-mobile-fullscreen-footer-height, 110px) - 20px);padding-top:var(--ezplayer-mobile-fullscreen-header-height,75px)}.ezplayer-mobile.ezplayer-fullscreen.ezplayer-medium-height .ezplayer-ptz-panel,.ezplayer-mobile.ezplayer-fullscreen.ezplayer-mini-height .ezplayer-ptz-panel{padding-bottom:0;padding-top:0}
|
|
35
|
+
.ezplayer-medium-height .ezplayer-ptz-panel,.ezplayer-mini-height .ezplayer-ptz-panel,.ezplayer-small-height .ezplayer-ptz-panel{padding-bottom:0;padding-top:0;right:0;z-index:22}.ezplayer-medium-height .ezplayer-ptz-panel .ezplayer-ptz-turntable,.ezplayer-mini-height .ezplayer-ptz-panel .ezplayer-ptz-turntable,.ezplayer-small-height .ezplayer-ptz-panel .ezplayer-ptz-turntable{border-bottom-right-radius:0;border-top-right-radius:0;max-height:none}.ezplayer-mini-height .ez-ptz-btn-container,.ezplayer-mini-height .ez-ptz-speed-container,.ezplayer-small-height .ez-ptz-btn-container,.ezplayer-small-height .ez-ptz-speed-container{display:none!important}.ezplayer-ptz-panel{box-sizing:border-box;flex-direction:column;max-width:70%;padding-bottom:var(--ezplayer-footer-height,80px);padding-top:var(--ezplayer-header-height,46px);pointer-events:none;position:absolute;right:10px;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:150px;z-index:3}.ezplayer-ptz-panel,.ezplayer-ptz-panel .ezplayer-ptz-turntable{align-items:center;display:flex;height:100%;justify-content:center}.ezplayer-ptz-panel .ezplayer-ptz-turntable{background-color:var(--ezplayer-panel-bg-color,rgba(0,0,0,.7));border-radius:var(--ezplayer-border-radius,8px);flex:1 1 auto;max-height:283px;padding:20px;pointer-events:auto;width:100%}.ezplayer-mobile .ezplayer-control-ptz,.ezplayer-mobile .ezplayer-ptz-panel{display:none}.ezplayer-mobile.ezplayer-fullscreen .ezplayer-control-ptz,.ezplayer-mobile.ezplayer-fullscreen .ezplayer-ptz-panel{display:inline-flex}.ezplayer-mobile.ezplayer-fullscreen .ezplayer-ptz-panel{padding-bottom:calc(var(--ezplayer-mobile-fullscreen-footer-height, 110px) - 20px);padding-top:var(--ezplayer-mobile-fullscreen-header-height,75px)}.ezplayer-mobile.ezplayer-fullscreen.ezplayer-medium-height .ezplayer-ptz-panel,.ezplayer-mobile.ezplayer-fullscreen.ezplayer-mini-height .ezplayer-ptz-panel,.ezplayer-mobile.ezplayer-fullscreen.ezplayer-small-height .ezplayer-ptz-panel{padding-bottom:0;padding-top:0}
|
|
36
36
|
|
|
37
37
|
.ezplayer-mobile-extend .ezplayer-mobile-date-filter{align-items:center;background:#f4f6fc;border:1px solid #ededed;border-radius:8px;box-sizing:border-box;color:#2c2c2c;display:inline-flex;font-family:PingFang SC;font-size:16px;font-weight:500;height:36px;justify-content:center;letter-spacing:0;line-height:20px;padding:6px 10px}.ezplayer-mobile-extend .ezplayer-mobile-date-filter-value{margin-right:5px}.ezplayer-mobile-extend .ezplayer-icon-filter{font-size:20px}
|
|
38
38
|
.ezplayer-control-time-line{overflow:hidden;padding-right:40px;position:relative}.ezplayer-control-time-line .ezplayer-time-line-scale-add,.ezplayer-control-time-line .ezplayer-time-line-scale-sub{align-items:center;background-color:#333;border-radius:2px;color:var(--ezplayer-default-color,#fff);cursor:pointer;display:inline-flex;height:14px;justify-content:center;overflow:hidden;position:absolute;right:0;transition:color .3s ease;width:14px}.ezplayer-control-time-line .ezplayer-icon-add,.ezplayer-control-time-line .ezplayer-icon-reduce{font-size:12px;font-weight:500}.ezplayer-control-time-line .ezplayer-icon-add:hover,.ezplayer-control-time-line .ezplayer-icon-reduce:hover{color:var(--ezplayer-primary-color,#407aff)}.ezplayer-control-time-line .ezplayer-time-line-scale-add{top:2px}.ezplayer-control-time-line .ezplayer-time-line-scale-sub{bottom:2px}.ezplayer-mobile-extend .ezplayer-control-time-line{display:block;height:300px;margin-top:10px;padding-right:0}
|
package/dist/style.js
CHANGED