@sdk185/sip-phone-sdk26 0.2.7 → 0.2.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sdk185/sip-phone-sdk26",
3
- "version": "0.2.7",
3
+ "version": "0.2.9",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -1244,4 +1244,34 @@ export default {
1244
1244
  height: 80px;
1245
1245
  }
1246
1246
  }
1247
+ /* 隐藏整个控制栏背景 */
1248
+ video::-webkit-media-controls {
1249
+ opacity: 1 !important;
1250
+ height: 20px !important;
1251
+ }
1252
+
1253
+ /* 隐藏进度条(核心) */
1254
+ video::-webkit-media-controls-timeline {
1255
+ display: none !important;
1256
+ }
1257
+
1258
+ /* 隐藏当前时间 */
1259
+ video::-webkit-media-controls-current-time-display {
1260
+ display: none !important;
1261
+ }
1262
+
1263
+ /* 隐藏总时长 */
1264
+ video::-webkit-media-controls-time-remaining-display {
1265
+ display: none !important;
1266
+ }
1267
+
1268
+ /* 隐藏暂停按钮(保留播放按钮) */
1269
+ video::-webkit-media-controls-play-button {
1270
+ display: none !important;
1271
+ }
1272
+
1273
+ /* 隐藏音量按钮(可选) */
1274
+ video::-webkit-media-controls-volume-slider {
1275
+ display: none !important;
1276
+ }
1247
1277
  </style>