Skip to content

Commit

Permalink
Merge pull request #81 from festoney8/dev
Browse files Browse the repository at this point in the history
merge dev to main, v3.6.4
  • Loading branch information
festoney8 authored Jun 5, 2024
2 parents bffcca3 + 2ddc401 commit 352d7a5
Show file tree
Hide file tree
Showing 24 changed files with 1,630 additions and 493 deletions.
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

0 comments on commit 352d7a5

Please sign in to comment.