Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge dev to main, v3.6.4 #81

Merged
merged 5 commits into from
Jun 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## 3.6.4

- 新增:播放页展开完整视频标题
- 修复:交换播放器和标题位置后,宽屏模式遮盖UP主bug
- 优化:优化代码、优化功能细节

## 3.6.3

- 新增:修复字体支持动态详情页
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"prettier": "^3.2.5",
"sass": "^1.77.4",
"typescript": "^5.4.4",
"vite": "^4.5.3",
"vite-plugin-monkey": "^3.5.2"
Expand Down
99 changes: 89 additions & 10 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 25 additions & 0 deletions src/components/contextmenu.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#bili-cleaner-context-menu-container {
position: fixed;
background: white;
border-radius: 5px;
box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
user-select: none;
overflow: hidden;
z-index: 99999;
& ul {
margin-block-start: 0;
margin-block-end: 0;
margin-inline-start: 0px;
margin-inline-end: 0px;
padding-inline-start: 0;
}
& li {
padding: 5px 10px;
font-size: 1rem;
&:hover {
background: rgb(251, 114, 153);
font-weight: 500;
color: white;
}
}
}
Loading