From 6eb16e8b269826031ea5f832189d89705f6ca21f Mon Sep 17 00:00:00 2001 From: the1812 Date: Wed, 23 Nov 2022 08:21:12 +0800 Subject: [PATCH 1/4] Fix header height (fix #3833) --- registry/lib/components/style/custom-navbar/hide-original.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { From 1302624b9dbe1a122d4d4c6cf9c418f618b6f82e Mon Sep 17 00:00:00 2001 From: the1812 Date: Wed, 23 Nov 2022 08:26:23 +0800 Subject: [PATCH 2/4] Fix missing PR info --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) From 2d3922f17ff2af9749504866ad5f735689e2f92c Mon Sep 17 00:00:00 2001 From: the1812 Date: Sat, 26 Nov 2022 17:28:06 +0800 Subject: [PATCH 3/4] Update dark styles --- .../style/dark-mode/dark-slice-16.scss | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) 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'); From 4a87a363fcb9821b540871980a5f8722f448d7aa Mon Sep 17 00:00:00 2001 From: the1812 Date: Sat, 26 Nov 2022 18:56:00 +0800 Subject: [PATCH 4/4] Add video tag (#3839) --- registry/lib/components/style/hide/video/top-mask/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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': '隐藏视频里鼠标经过时出现在右上角的覆盖层.', },