diff --git a/CHANGELOG.md b/CHANGELOG.md index e9739153f..9ad618ca5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ 包含 v2.5.2 的所有更新内容. - 优化 `简化评论区` 的时间样式. (#3541, PR #3791 by [Tinhone](https://github.com/Tinhone)) -- `下载视频` 支持选择备用下载地址. (#3798) +- `下载视频` 支持选择备用下载地址. (PR #3798 by [Seaward233](https://github.com/Seaward233)) - 优化 `自定义顶栏` 的弹窗逻辑, *有任意元素聚焦时* -> *仅在输入框聚焦时*显示弹窗. (#3756) - `删除广告` 支持屏蔽动态的商品推荐. (#3778) - 新增插件 `快捷键扩展 - 开关弹幕列表`, 默认为 Shift + D. (#3613) diff --git a/registry/lib/components/style/custom-navbar/hide-original.scss b/registry/lib/components/style/custom-navbar/hide-original.scss index 590cd2c9a..86a41cce6 100644 --- a/registry/lib/components/style/custom-navbar/hide-original.scss +++ b/registry/lib/components/style/custom-navbar/hide-original.scss @@ -32,7 +32,7 @@ li.nav-item[report-id="playpage_dynamic"] .i-frame, height: var(--navbar-height) !important; } #message-navbar, -.z-top-container { +.z-top-container:not(#biliMainHeader) { max-height: var(--navbar-height) !important; } .link-top-container#tab-container { diff --git a/registry/lib/components/style/dark-mode/dark-slice-16.scss b/registry/lib/components/style/dark-mode/dark-slice-16.scss index 86c140b6e..11e5e5e0d 100644 --- a/registry/lib/components/style/dark-mode/dark-slice-16.scss +++ b/registry/lib/components/style/dark-mode/dark-slice-16.scss @@ -217,6 +217,20 @@ @include no-shadow(); } } + .bili-dyn-card-music { + @include border-color(); + @include background-color('3'); + @include no-shadow(); + &__title { + @include color('e'); + &:hover { + @include theme-color(); + } + } + &__label { + @include color('a'); + } + } .bili-dyn-card-article, .bili-dyn-card-pgc, .bili-dyn-card-common, @@ -406,6 +420,27 @@ } } } + .dyn-match { + &__mark span { + @include color('a'); + } + &__wrap { + @include background-color('3'); + } + &__center__top, + &__center__bottom, + &__team__name, + &__title { + @include color('e'); + } + &__head { + @include border-color('5'); + } + &__action button { + @include theme-background-color(); + @include foreground-color(); + } + } .dyn-additional-common { &__mark span { @include color('a'); diff --git a/registry/lib/components/style/hide/video/top-mask/index.ts b/registry/lib/components/style/hide/video/top-mask/index.ts index 32e955a9f..b3d514dbe 100644 --- a/registry/lib/components/style/hide/video/top-mask/index.ts +++ b/registry/lib/components/style/hide/video/top-mask/index.ts @@ -12,7 +12,7 @@ export const component = defineComponentMetadata({ style: () => import('./top-mask.scss'), }, ], - tags: [componentsTags.style], + tags: [componentsTags.style, componentsTags.video], description: { 'zh-CN': '隐藏视频里鼠标经过时出现在右上角的覆盖层.', },