mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
Fix styles on watchlater page
This commit is contained in:
parent
cbf8cbdef9
commit
eb767a311e
@ -35,6 +35,7 @@ export const entry: ComponentEntry = async ({ metadata: { name } }) => {
|
|||||||
'https://www.bilibili.com/opus',
|
'https://www.bilibili.com/opus',
|
||||||
'https://www.bilibili.com/account/history',
|
'https://www.bilibili.com/account/history',
|
||||||
'https://www.bilibili.com/v/topic/detail',
|
'https://www.bilibili.com/v/topic/detail',
|
||||||
|
'https://www.bilibili.com/watchlater/list',
|
||||||
]
|
]
|
||||||
if (!globalFixedExclude.some(p => matchUrlPattern(p))) {
|
if (!globalFixedExclude.some(p => matchUrlPattern(p))) {
|
||||||
addComponentListener(
|
addComponentListener(
|
||||||
|
|||||||
@ -40,7 +40,7 @@
|
|||||||
<div v-if="card.percent" class="progress" :style="{ width: card.percent * 100 + '%' }" />
|
<div v-if="card.percent" class="progress" :style="{ width: card.percent * 100 + '%' }" />
|
||||||
</a>
|
</a>
|
||||||
<a class="title" target="_blank" :href="card.href" :title="card.title">{{ card.title }}</a>
|
<a class="title" target="_blank" :href="card.href" :title="card.title">{{ card.title }}</a>
|
||||||
<div class="info">
|
<div class="info-row">
|
||||||
<a
|
<a
|
||||||
class="up"
|
class="up"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
@ -352,7 +352,7 @@ export default Vue.extend({
|
|||||||
color: var(--theme-color) !important;
|
color: var(--theme-color) !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.info {
|
.info-row {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: flex-end;
|
align-items: flex-end;
|
||||||
|
|||||||
@ -619,7 +619,7 @@ html {
|
|||||||
&:not(.iframe) {
|
&:not(.iframe) {
|
||||||
&,
|
&,
|
||||||
body {
|
body {
|
||||||
@include background-color('2');
|
background-color: var(--bg1, #222) !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,6 +1,9 @@
|
|||||||
@import 'common';
|
@import 'common';
|
||||||
@mixin markdown {
|
@mixin markdown {
|
||||||
line-height: normal;
|
line-height: normal;
|
||||||
|
> * {
|
||||||
|
font-size: inherit;
|
||||||
|
}
|
||||||
h1,
|
h1,
|
||||||
h2,
|
h2,
|
||||||
h3,
|
h3,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user