Skip to content

Commit

Permalink
fix: bangumi page player scrollable wrap height #136
Browse files Browse the repository at this point in the history
  • Loading branch information
festoney8 committed Sep 20, 2024
1 parent 7af0320 commit 298340c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 3.11.3

- 修复:番剧页 网页全屏/全屏滚动 视频位置bug

## 3.11.2

- 更新:播放页 评论区过滤
Expand Down
4 changes: 2 additions & 2 deletions src/rules/bangumi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ if (isPageBangumi()) {
padding-top: calc(100vh + 15px) !important;
}
body:has(#bilibili-player-wrap[class*='video_playerFullScreen']) .bpx-player-video-area {
flex: unset !important;
flex: 1 !important;
}
body:has(#bilibili-player-wrap[class*='video_playerFullScreen'])::-webkit-scrollbar {
display: none !important;
Expand Down Expand Up @@ -159,7 +159,7 @@ if (isPageBangumi()) {
padding-top: calc(100vh + 15px) !important;
}
body:has(#bilibili-player-wrap[class*='video_playerFullScreen']) .bpx-player-video-area {
flex: unset !important;
flex: 1 !important;
}
body:has(#bilibili-player-wrap[class*='video_playerFullScreen'])::-webkit-scrollbar {
display: none !important;
Expand Down
2 changes: 1 addition & 1 deletion src/rules/comment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ if (isPageBangumi() || isPageVideo() || isPageDynamic() || isPageSpace() || isPa
// 隐藏 评论编辑器内占位文字, 默认开启
new CheckboxItem({
itemID: 'video-page-hide-reply-box-textarea-placeholder',
description: '隐藏 评论编辑器内占位文字',
description: '隐藏 评论编辑器内占位文字\n同时会隐藏回复评论时文字提示',
defaultStatus: true,
itemCSS: `.main-reply-box .reply-box-textarea::placeholder {color: transparent !important; user-select: none;}
.fixed-reply-box .reply-box-textarea::placeholder {color: transparent !important; user-select: none;}`,
Expand Down
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default defineConfig({
userscript: {
name: 'bilibili 页面净化大师',
namespace: 'http://tampermonkey.net/',
version: '3.11.2',
version: '3.11.3',
description:
'净化 B站/哔哩哔哩 页面,支持「精简功能、播放器净化、过滤视频、过滤评论、全站黑白名单」,提供 300+ 功能,定制自己的 B 站',
author: 'festoney8',
Expand Down

0 comments on commit 298340c

Please sign in to comment.