Add hideLivePlayerBlur (#4634)

This commit is contained in:
the1812 2024-10-14 22:33:16 +08:00
parent 43349db0fc
commit c6fe03cb71
3 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,3 @@
#web-player-module-area-mask-panel {
z-index: -100 !important;
}

View File

@ -0,0 +1 @@
移除直播画面中的马赛克区域.

View File

@ -0,0 +1,11 @@
import { defineComponentMetadata } from '@/components/define'
import { liveUrls } from '@/core/utils/urls'
export const component = defineComponentMetadata({
name: 'hideLivePlayerBlur',
displayName: '隐藏直播马赛克',
entry: none,
tags: [componentsTags.live, componentsTags.style],
urlInclude: [...liveUrls],
instantStyles: [{ name: 'hideLivePlayerBlur', style: () => import('./hide-player-blur.scss') }],
})