mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
Support for new player UI (#2615)
This commit is contained in:
parent
8b43755e2f
commit
b02daaf6ba
@ -1,11 +1,6 @@
|
||||
<template>
|
||||
<span
|
||||
title="稍后再看"
|
||||
class="watchlater"
|
||||
:class="{ on }"
|
||||
@click="toggle()"
|
||||
>
|
||||
<VIcon :size="28" icon="mdi-timetable"></VIcon>
|
||||
<span title="稍后再看" class="watchlater" :class="{ on }" @click="toggle()">
|
||||
<VIcon class="icon" :size="28" icon="mdi-timetable"></VIcon>
|
||||
<span class="text">稍后再看</span>
|
||||
<div class="tip" :class="{ show: tipShowing }">{{ tipText }}</div>
|
||||
</span>
|
||||
@ -56,13 +51,16 @@ export default Vue.extend({
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.video-toolbar .ops {
|
||||
.video-toolbar .ops,
|
||||
.video-toolbar-v1 .toolbar-left {
|
||||
.watchlater {
|
||||
font-size: 14px;
|
||||
font-weight: normal;
|
||||
margin-right: 28px !important;
|
||||
position: relative;
|
||||
width: auto !important;
|
||||
@media screen and (max-width: 1320px), (max-height: 750px) {
|
||||
margin-right: max(calc(min(11vw, 11vh) - 117.2px),6px) !important;
|
||||
margin-right: max(calc(min(11vw, 11vh) - 117.2px), 6px) !important;
|
||||
.text {
|
||||
display: none;
|
||||
}
|
||||
@ -90,7 +88,13 @@ export default Vue.extend({
|
||||
}
|
||||
}
|
||||
}
|
||||
.more-ops-list > ul > li:nth-child(2) {
|
||||
display: none !important;
|
||||
.video-toolbar-v1 .watchlater .be-icon {
|
||||
transform: translateY(1px);
|
||||
}
|
||||
.more-ops-list > ul,
|
||||
.van-popover .more_dropdown {
|
||||
> li:nth-child(2) {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
@ -21,7 +21,7 @@ const entry: ComponentEntry<typeof options> = async ({ settings }) => {
|
||||
return
|
||||
}
|
||||
await playerReady()
|
||||
const favoriteButton = dq('.video-toolbar .ops .collect') as HTMLElement
|
||||
const favoriteButton = dq('.video-toolbar .ops .collect, .video-toolbar-v1 .toolbar-left .collect') as HTMLElement
|
||||
if (!favoriteButton) {
|
||||
return
|
||||
}
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
@click.right.prevent.self="listShowing = !listShowing"
|
||||
>
|
||||
<i
|
||||
class="quick-favorite-icon"
|
||||
class="quick-favorite-icon icon"
|
||||
@click.left="toggle()"
|
||||
@click.right.prevent="listShowing = !listShowing"
|
||||
></i>
|
||||
@ -19,8 +19,8 @@
|
||||
快速收藏
|
||||
</div>
|
||||
<div ref="selectList" class="select-list" :class="{ show: listShowing }">
|
||||
选择快速收藏夹:
|
||||
<div class="lists">
|
||||
选择快速收藏夹:
|
||||
<VDropdown
|
||||
v-model="selectedFavorite"
|
||||
:items="lists.map(it => it.title)"
|
||||
@ -31,9 +31,9 @@
|
||||
</template>
|
||||
</VDropdown>
|
||||
</div>
|
||||
</div>
|
||||
<div class="lists-tip" :class="{ show: listShowing }">
|
||||
右键点击快速收藏可再次打开
|
||||
<div class="lists-tip" :class="{ show: listShowing }">
|
||||
右键点击快速收藏可再次打开
|
||||
</div>
|
||||
</div>
|
||||
<div class="tip" :class="{ show: tipShowing }">{{ tipText }}</div>
|
||||
</span>
|
||||
@ -168,95 +168,76 @@ export default Vue.extend({
|
||||
},
|
||||
})
|
||||
</script>
|
||||
<style lang="scss">
|
||||
@import "./font";
|
||||
<style lang="scss" scoped>
|
||||
@import 'common';
|
||||
@import './font';
|
||||
|
||||
.video-toolbar .ops {
|
||||
.quick-favorite {
|
||||
margin-right: 28px !important;
|
||||
position: relative;
|
||||
font-size: 0;
|
||||
font-size: 14px;
|
||||
width: auto !important;
|
||||
.quick-favorite {
|
||||
margin-right: 28px !important;
|
||||
position: relative;
|
||||
font-size: 14px;
|
||||
font-weight: normal;
|
||||
width: auto !important;
|
||||
.text {
|
||||
display: inline;
|
||||
}
|
||||
@media screen and (max-width: 1320px), (max-height: 750px) {
|
||||
margin-right: max(calc(min(11vw, 11vh) - 117.2px), 6px) !important;
|
||||
.text {
|
||||
display: inline;
|
||||
display: none;
|
||||
}
|
||||
@media screen and (max-width: 1320px), (max-height: 750px) {
|
||||
margin-right: max(calc(min(11vw, 11vh) - 117.2px),6px) !important;
|
||||
.text {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
&-icon {
|
||||
font-family: 'quick-favorite' !important;
|
||||
font-size: 28px;
|
||||
display: inline-block;
|
||||
font-style: normal;
|
||||
text-align: center;
|
||||
text-transform: none;
|
||||
line-height: 1;
|
||||
text-rendering: optimizeLegibility;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
&:after {
|
||||
content: '\ea01';
|
||||
}
|
||||
&-icon {
|
||||
font-family: "quick-favorite" !important;
|
||||
display: inline-block;
|
||||
font-style: normal;
|
||||
text-align: center;
|
||||
text-transform: none;
|
||||
line-height: 1;
|
||||
text-rendering: optimizeLegibility;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
&:after {
|
||||
content: "\ea01";
|
||||
}
|
||||
.video-toolbar-v1 & {
|
||||
transform: translateY(1px);
|
||||
}
|
||||
.tip,
|
||||
.select-list,
|
||||
.lists-tip {
|
||||
line-height: normal;
|
||||
position: absolute;
|
||||
top: calc(100% + 8px);
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
z-index: 1000;
|
||||
background: #000d;
|
||||
padding: 4px 8px;
|
||||
border-radius: 4px;
|
||||
color: #eee;
|
||||
transition: all 0.2s ease-out;
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
&.show {
|
||||
opacity: 1;
|
||||
pointer-events: initial;
|
||||
}
|
||||
}
|
||||
.tip,
|
||||
.select-list {
|
||||
line-height: normal;
|
||||
position: absolute;
|
||||
top: calc(100% + 8px);
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
z-index: 1000;
|
||||
background: #000d;
|
||||
padding: 8px;
|
||||
border-radius: 4px;
|
||||
color: #eee;
|
||||
transition: all 0.2s ease-out;
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
&.show {
|
||||
opacity: 1;
|
||||
pointer-events: initial;
|
||||
}
|
||||
.tip {
|
||||
padding: 8px;
|
||||
}
|
||||
.select-list {
|
||||
@include v-center(8px);
|
||||
> * {
|
||||
white-space: nowrap;
|
||||
}
|
||||
.lists-loading {
|
||||
padding: 4px 32px;
|
||||
}
|
||||
.lists {
|
||||
@include h-center(8px);
|
||||
}
|
||||
.lists-tip {
|
||||
top: calc(100% + 8px + 42px);
|
||||
color: #ccc;
|
||||
color: #aaa;
|
||||
font-size: 12px;
|
||||
z-index: 100;
|
||||
}
|
||||
.select-list {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
> * {
|
||||
white-space: nowrap;
|
||||
}
|
||||
.lists-loading {
|
||||
padding: 4px 32px;
|
||||
}
|
||||
.lists {
|
||||
margin-left: 8px;
|
||||
}
|
||||
// .v-dropdown {
|
||||
// color: black;
|
||||
// body.dark & {
|
||||
// color: #eee;
|
||||
// }
|
||||
// .mdi-chevron-down {
|
||||
// color: inherit !important;
|
||||
// margin: 0 !important;
|
||||
// transition: 0.2s ease-out;
|
||||
// display: flex;
|
||||
// align-items: center;
|
||||
// justify-content: center;
|
||||
// font-size: 16pt !important;
|
||||
// }
|
||||
// }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -29,7 +29,7 @@ const entry: ComponentEntry<typeof options> = async ({ settings }) => {
|
||||
}
|
||||
|
||||
await playerReady()
|
||||
const favoriteButton = dq('.video-toolbar .ops .collect')
|
||||
const favoriteButton = dq('.video-toolbar .ops .collect, .video-toolbar-v1 .toolbar-left .collect')
|
||||
if (!favoriteButton) {
|
||||
return
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user