From 3801e06ee13a1da999c2fe9941538e92d33e03fc Mon Sep 17 00:00:00 2001 From: jloeve Date: Tue, 5 Jan 2021 13:40:16 +0800 Subject: [PATCH 01/13] =?UTF-8?q?feat(return-begin):=20=E5=AE=9E=E7=8E=B0?= =?UTF-8?q?=E5=BF=AB=E6=8D=B7=E9=94=AE=E6=93=8D=E4=BD=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit re #1411 --- src/video/keymap/keymap.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/video/keymap/keymap.ts b/src/video/keymap/keymap.ts index ea02813f9..40b819f9e 100644 --- a/src/video/keymap/keymap.ts +++ b/src/video/keymap/keymap.ts @@ -201,6 +201,12 @@ if (supportedUrls.some(url => document.URL.startsWith(url))) { takeScreenshot: clickElement('.video-take-screenshot'), previousFrame: clickElement('.prev-frame'), nextFrame: clickElement('.next-frame'), + returnBegin: () => { + if (unsafeWindow.player) { + unsafeWindow.player.play() + setTimeout(() => unsafeWindow.player.seek(0)) + } + }, } const defaultBindings: { [action in keyof typeof actions]: string } = { fullscreen: 'f', @@ -224,6 +230,7 @@ if (supportedUrls.some(url => document.URL.startsWith(url))) { takeScreenshot: 'ctrl alt c', previousFrame: 'shift arrowLeft', nextFrame: 'shift arrowRight', + returnBegin: '0' } const parseBindings = (bindings: { [action: string]: string }) => { return Object.entries(bindings).map(([actionName, keyString]) => { From 5164d69c90c50773855d732cb941d16fde6bee12 Mon Sep 17 00:00:00 2001 From: JLoeve Date: Fri, 8 Jan 2021 20:23:06 +0800 Subject: [PATCH 02/13] =?UTF-8?q?fix(return-begin):=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=20toast=20=E6=97=B6=E9=97=B4=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/video/keymap/keymap.ts | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/src/video/keymap/keymap.ts b/src/video/keymap/keymap.ts index 40b819f9e..3a5d5b2b5 100644 --- a/src/video/keymap/keymap.ts +++ b/src/video/keymap/keymap.ts @@ -202,10 +202,17 @@ if (supportedUrls.some(url => document.URL.startsWith(url))) { previousFrame: clickElement('.prev-frame'), nextFrame: clickElement('.next-frame'), returnBegin: () => { - if (unsafeWindow.player) { - unsafeWindow.player.play() - setTimeout(() => unsafeWindow.player.seek(0)) + if (!unsafeWindow.player) { + return } + unsafeWindow.player.play() + setTimeout(() => { + unsafeWindow.player.seek(0) + const toastText = dq(".bilibili-player-video-toast-bottom .bilibili-player-video-toast-item:first-child .bilibili-player-video-toast-item-text span:nth-child(2)") + if (toastText) { + toastText.textContent = " 00:00" + } + }) }, } const defaultBindings: { [action in keyof typeof actions]: string } = { @@ -243,11 +250,11 @@ if (supportedUrls.some(url => document.URL.startsWith(url))) { } ;(async () => { - const { loadKeyBindings } = await import('./key-bindings') - config = loadKeyBindings(parseBindings( - { ...defaultBindings, ...settings.customKeyBindings } - )) - })() + const { loadKeyBindings } = await import('./key-bindings') + config = loadKeyBindings(parseBindings( + { ...defaultBindings, ...settings.customKeyBindings } + )) + })() } export default { From c14e8b770118e55aaac9b69ca6c0aafa56764eb6 Mon Sep 17 00:00:00 2001 From: JLoeve Date: Fri, 8 Jan 2021 20:40:44 +0800 Subject: [PATCH 03/13] style(return-begin): returnBegin -> seekBegin --- src/video/keymap/keymap.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/video/keymap/keymap.ts b/src/video/keymap/keymap.ts index 3a5d5b2b5..5a89f4ac7 100644 --- a/src/video/keymap/keymap.ts +++ b/src/video/keymap/keymap.ts @@ -201,7 +201,7 @@ if (supportedUrls.some(url => document.URL.startsWith(url))) { takeScreenshot: clickElement('.video-take-screenshot'), previousFrame: clickElement('.prev-frame'), nextFrame: clickElement('.next-frame'), - returnBegin: () => { + seekBegin: () => { if (!unsafeWindow.player) { return } @@ -237,7 +237,7 @@ if (supportedUrls.some(url => document.URL.startsWith(url))) { takeScreenshot: 'ctrl alt c', previousFrame: 'shift arrowLeft', nextFrame: 'shift arrowRight', - returnBegin: '0' + seekBegin: '0' } const parseBindings = (bindings: { [action: string]: string }) => { return Object.entries(bindings).map(([actionName, keyString]) => { From 9a820a7145fbd8c04ae3ba975ce80b3e7e6d6e7d Mon Sep 17 00:00:00 2001 From: JLoeve Date: Fri, 8 Jan 2021 21:06:54 +0800 Subject: [PATCH 04/13] =?UTF-8?q?style(return-begin):=20=E5=89=8D=E5=AF=BC?= =?UTF-8?q?=E7=A9=BA=E6=A0=BC=EF=BC=8C=E8=A1=A5=E5=85=85=E9=80=97=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/video/keymap/keymap.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/video/keymap/keymap.ts b/src/video/keymap/keymap.ts index 5a89f4ac7..4ad38fdf7 100644 --- a/src/video/keymap/keymap.ts +++ b/src/video/keymap/keymap.ts @@ -237,7 +237,7 @@ if (supportedUrls.some(url => document.URL.startsWith(url))) { takeScreenshot: 'ctrl alt c', previousFrame: 'shift arrowLeft', nextFrame: 'shift arrowRight', - seekBegin: '0' + seekBegin: '0', } const parseBindings = (bindings: { [action: string]: string }) => { return Object.entries(bindings).map(([actionName, keyString]) => { @@ -250,11 +250,11 @@ if (supportedUrls.some(url => document.URL.startsWith(url))) { } ;(async () => { - const { loadKeyBindings } = await import('./key-bindings') - config = loadKeyBindings(parseBindings( - { ...defaultBindings, ...settings.customKeyBindings } - )) - })() + const { loadKeyBindings } = await import('./key-bindings') + config = loadKeyBindings(parseBindings( + { ...defaultBindings, ...settings.customKeyBindings } + )) + })() } export default { From a3b7286ec95843a43943df6bd72b8f35e8fc3d9a Mon Sep 17 00:00:00 2001 From: FoundTheWOUT Date: Sun, 10 Jan 2021 14:30:42 +0800 Subject: [PATCH 05/13] fix #1383 --- src/video/download-video/batch-download.ts | 15 ++++++++++++++- src/video/download-video/get-number.ts | 16 +++++++++++++++- 2 files changed, 29 insertions(+), 2 deletions(-) diff --git a/src/video/download-video/batch-download.ts b/src/video/download-video/batch-download.ts index 9482b5bb7..f48fa7f52 100644 --- a/src/video/download-video/batch-download.ts +++ b/src/video/download-video/batch-download.ts @@ -31,6 +31,13 @@ abstract class Batch { itemList: BatchItem[] = [] abstract async getItemList(): Promise abstract async collectData(quality: number | string): Promise + /** + * Returns formated Title. + * + * @param parameters - TYPE: BatchTitleParameter + * @returns escapeFilename + * + */ static formatTitle(parameters: BatchTitleParameter | undefined) { const format = settings.batchFilenameFormat const title = formatTitle(format, true, parameters) @@ -207,6 +214,12 @@ class BangumiBatch extends Batch { static async test() { return document.URL.includes('/www.bilibili.com/bangumi') } + /** + * Get bangumi from api + * + * @returns a json list of multiple part bangumi + * + */ async getItemList() { if (this.itemList.length > 0) { return this.itemList @@ -236,7 +249,7 @@ class BangumiBatch extends Batch { title: `${n} - ${title}`, // title: it.long_title ? `${it.title} - ${it.long_title}` : `${index + 1} - ${it.title}`, titleParameters: { - n: getNumber(parseInt(n), this.itemList.length), + n: getNumber(parseFloat(n), this.itemList.length, it.title), ep: title, }, } as BatchItem diff --git a/src/video/download-video/get-number.ts b/src/video/download-video/get-number.ts index 85f0d140a..7a8437491 100644 --- a/src/video/download-video/get-number.ts +++ b/src/video/download-video/get-number.ts @@ -1,5 +1,19 @@ -export const getNumber = (n: number, count: number) => { +/** + * count item + * + * @param n - current index + * @param count - the end of the count + * @param raw - default title + * @returns expected number + */ +export const getNumber = (n: number, count: number, raw?: string) => { const finalCount = Math.max(2, Math.trunc(Math.log10(count) + 1)) + + // n is not a Number + if (Number.isNaN(n) && raw) { + return raw + } + return n.toString().padStart(finalCount, '0') } export default { From bb73413b3d7a83e75cf3d4ce70620d3b96ec0f88 Mon Sep 17 00:00:00 2001 From: JLoeve Date: Sun, 10 Jan 2021 19:21:20 +0800 Subject: [PATCH 06/13] =?UTF-8?q?fix(dark=20style):=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E5=9C=A8=2047681db=20=E4=B8=AD=E5=BC=95=E5=85=A5=E7=9A=84=20BU?= =?UTF-8?q?G?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在以下页面通过测试: - https://www.bilibili.com/audio/au1 - https://www.bilibili.com/video/av3327066 - https://www.bilibili.com/video/av74751637 - https://www.bilibili.com/medialist/play/ml338926432/BV1TJ411C7An/p1 --- src/style/dark/dark-slice-13.scss | 3 --- src/style/dark/dark-slice-3.css | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/style/dark/dark-slice-13.scss b/src/style/dark/dark-slice-13.scss index f0b151695..3293a9749 100644 --- a/src/style/dark/dark-slice-13.scss +++ b/src/style/dark/dark-slice-13.scss @@ -954,9 +954,6 @@ html { @include theme-background-color(); } } -.error-body .error-msg .error-img { - @include to-theme("blue"); -} .article-action .more .more-ops-list ul li:hover { @include theme-color(); } diff --git a/src/style/dark/dark-slice-3.css b/src/style/dark/dark-slice-3.css index f7cb8e25e..687b11d04 100644 --- a/src/style/dark/dark-slice-3.css +++ b/src/style/dark/dark-slice-3.css @@ -655,7 +655,7 @@ i.settings-category-arrow::after, .mainmenu ul.grid li.hover a.lbzx, .carousel .indicator .indicator-btn-holder .indicator-btn.on, #page-channel-detail .watch-later-btn:hover, -.error-container .error-panel img, +.error-body .error-msg .error-img, .leaveMsgUpload .btnarea .btnareaIcon, .coin-operated-m .like-checkbox input[type=checkbox]:checked+i, .video-list .vl-hd .display-tab li.on, From 33b6df8f345699e58d9532202685b6d6a8543461 Mon Sep 17 00:00:00 2001 From: JLoeve Date: Sun, 10 Jan 2021 20:02:24 +0800 Subject: [PATCH 07/13] =?UTF-8?q?fix(dark=20style):=20=E9=A6=96=E9=A1=B5?= =?UTF-8?q?=E8=A7=86=E9=A2=91=E6=8E=A8=E8=8D=90=E6=9D=BF=E5=9D=97=E7=9A=84?= =?UTF-8?q?=E3=80=8C=E6=8D=A2=E4=B8=80=E6=8D=A2=E3=80=8D=E6=8C=89=E9=92=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/style/dark/dark-slice-13.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/style/dark/dark-slice-13.scss b/src/style/dark/dark-slice-13.scss index 3293a9749..7afbf07b2 100644 --- a/src/style/dark/dark-slice-13.scss +++ b/src/style/dark/dark-slice-13.scss @@ -966,3 +966,11 @@ html { @include to-theme("blue"); } } +.international-home .rcmd-box-wrap .change-btn { + @include border-color(); + @include color("e"); + @include background-color("4"); + &:hover { + @include theme-background-color(); + } +} From b0ee6ccfe5eca71e0efce7a5678b5036ffd21337 Mon Sep 17 00:00:00 2001 From: JLoeve Date: Sun, 10 Jan 2021 20:19:31 +0800 Subject: [PATCH 08/13] =?UTF-8?q?fix(dark=20style):=20=E6=81=A2=E5=A4=8D?= =?UTF-8?q?=E7=95=AA=E5=89=A7=E7=B4=A2=E5=BC=95=E9=A1=B5=E3=80=81=E7=95=AA?= =?UTF-8?q?=E5=89=A7=E6=92=AD=E6=94=BE=E9=A1=B5=E7=B3=BB=E5=88=97=E5=B0=81?= =?UTF-8?q?=E9=9D=A2=20badge=20=E7=9A=84=E4=BC=9A=E5=91=98=E9=99=90?= =?UTF-8?q?=E5=AE=9A=E8=89=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit re #1289, https://github.com/the1812/Bilibili-Evolved/issues/1289#issuecomment-754714635 --- src/style/dark/dark-slice-4.css | 1 - src/style/dark/dark-slice-6.css | 1 - 2 files changed, 2 deletions(-) diff --git a/src/style/dark/dark-slice-4.css b/src/style/dark/dark-slice-4.css index b810ff54f..21273524e 100644 --- a/src/style/dark/dark-slice-4.css +++ b/src/style/dark/dark-slice-4.css @@ -922,7 +922,6 @@ body #app .marquee, .nav-bar .nav-wrapper .slide-block, ul.navigation li:after, .link-panigation .panigation.selected, -.bangumi-item .cover-wrapper .corner-tag.badge_0, .comment-manage-wrap .content .check-box.checked, .btn-sponsor-wrapper a.sponsor-btn, .main-container .sponsor-wrapper .sponsor-right-area .sponsor-btn, diff --git a/src/style/dark/dark-slice-6.css b/src/style/dark/dark-slice-6.css index eb466c1de..2957f2b5d 100644 --- a/src/style/dark/dark-slice-6.css +++ b/src/style/dark/dark-slice-6.css @@ -1031,7 +1031,6 @@ input[type="radio"]:checked + .custom-radio, .main-container .entry-old .feedback .btn, .main-container .entry-old .feedback .btn:hover, .main-container .entry-old .btn-old:hover, -.main-container .season-list .ss-list-wrapper .ss-item .ss-cover .ss-badge.pink, .main-container .pay-bar .sponsor .btn-pay:hover, .main-container .sponsor-module .sponsor-info .btn-sponsor, .bilibili-player-feedback-content From f55ed2cddacb501fdb8a7f4572f3bde3889a048c Mon Sep 17 00:00:00 2001 From: JLoeve Date: Sun, 10 Jan 2021 21:20:13 +0800 Subject: [PATCH 09/13] =?UTF-8?q?fix(dark=20style):=20=E5=8F=91=E8=A1=A8?= =?UTF-8?q?=E5=AF=B9=E8=AF=9D=E6=A1=86=E4=B8=8B=E6=96=B9=E7=9A=84=E5=B7=A5?= =?UTF-8?q?=E5=85=B7=E6=A0=8F=E6=8E=A7=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在适配 at-popup 的同时,统一了参与话题的 popup 的样式效果 re #1289, https://github.com/the1812/Bilibili-Evolved/issues/1289#issuecomment-754714635 --- src/style/dark/dark-slice-10.scss | 150 ++++++++++++++++++------------ src/style/dark/dark-slice-3.css | 3 - src/style/dark/dark-slice-5.css | 1 - 3 files changed, 92 insertions(+), 62 deletions(-) diff --git a/src/style/dark/dark-slice-10.scss b/src/style/dark/dark-slice-10.scss index a2410bdda..43090b7c7 100644 --- a/src/style/dark/dark-slice-10.scss +++ b/src/style/dark/dark-slice-10.scss @@ -612,83 +612,117 @@ @include foreground-color(); } } -.home-page { - .publish-panel { - .core-style { - @include background-color(); +.publish-panel { + .core-style { + @include background-color(); + @include color("e"); + @include border-color(); + &:hover, + &:focus-within, + &:active { + @include theme-border-color(); + } + } + .editor .placeholder-shown::before { + @include color("8"); + } + .schedule-bar { + @include background-color("3"); + .s-label, + .dp-label { + @include color("e"); + } + .scroll-input .s-input { + @include background-color("2"); @include color("e"); @include border-color(); - &:hover, - &:focus-within, - &:active { - @include theme-border-color(); - } } - .editor .placeholder-shown::before { - @include color("8"); - } - .schedule-bar { - @include background-color("3"); - .s-label, - .dp-label { + .s-panel { + @include background-color("2"); + @include border-color(); + .s-item { @include color("e"); - } - .scroll-input .s-input { - @include background-color("2"); - @include color("e"); - @include border-color(); - } - .s-panel { - @include background-color("2"); - @include border-color(); - .s-item { - @include color("e"); - &:hover { - @include theme-color(); - } + &:hover { + @include theme-color(); } } } - .toolbar { - .static-popup { + } + .toolbar { + .static-popup { + @include background-color("2"); + @include border-color(); + .title { + @include color("e"); + } + .upload-image .upload-btn:hover { + @include theme-color(); + @include theme-border-color(); + } + } + .bp-vote-container { + .create-vote { @include background-color("2"); + @include color("e"); @include border-color(); .title { @include color("e"); } - .upload-image .upload-btn:hover { - @include theme-color(); - @include theme-border-color(); + .bp-button:nth-child(2) { + @include theme-background(); + @include foreground-color(); } } - .bp-vote-container { - .create-vote { + } + .publish-launcher { + .indicator { + @include color("a"); + &::after { + @include color("a"); + } + } + .publish-btn { + @include theme-background-color(); + @include foreground-color(); + &.disabled { @include background-color("2"); @include color("e"); - @include border-color(); - .title { - @include color("e"); - } - .bp-button:nth-child(2) { - @include theme-background(); - @include foreground-color(); - } } } - .publish-launcher { - .indicator { - @include color("a"); - &::after { - @include color("a"); - } + } + .hash-popup { + @include background-color("2"); + @include border-color(); + .hint { + @include color("a"); + } + .topic-container .item { + @include color("e"); + &.is-selected { + @include background-color("3"); } - .publish-btn { - @include theme-background-color(); - @include foreground-color(); - &.disabled { - @include background-color("2"); - @include color("e"); - } + } + } + .bili-at-popup { + @include background-color("2"); + @include border-color(); + &__hint { + @include color("a"); + } + &__group { + &-name { + @include color("e"); + } + } + &__user { + &--selected { + @include background-color("3"); + } + &-name { + @include color("e"); + } + &-fans { + @include color("a"); } } } diff --git a/src/style/dark/dark-slice-3.css b/src/style/dark/dark-slice-3.css index 687b11d04..722b51127 100644 --- a/src/style/dark/dark-slice-3.css +++ b/src/style/dark/dark-slice-3.css @@ -515,8 +515,6 @@ body>div.to-top.on, .evaluate .situation span, .bilibili-live-player .bilibili-live-player-enter-tips, .nav-header-wrapper .nav-header .nav-header-search-bar-wrapper .suggestion-list, -.publish-panel .hash-popup, -.hash-popup .topic-container .item.is-selected, .article-holder .bangumi-card a .container, .article-action .ops .share-container .weixin-holder, .coin-wrap .coin-sure, @@ -743,7 +741,6 @@ body>.player #bilibiliPlayer .mainBox .leaveMsg, .js-evaluateArea .evaluateDialog, .project-list .project-list-item:hover, -.publish-panel .hash-popup, #app .toolbar-wrapper, .article-action .ops .share-container .weixin-holder, #article-list-index, diff --git a/src/style/dark/dark-slice-5.css b/src/style/dark/dark-slice-5.css index 039c3097c..e2ab4f3ad 100644 --- a/src/style/dark/dark-slice-5.css +++ b/src/style/dark/dark-slice-5.css @@ -13,7 +13,6 @@ .comment-list-item .ci-action a:hover, .comment-manage-wrap .content .action-bar .dropdown .action-menu li:hover, .comment-manage-wrap .content .action-bar .dropdown .sort-menu li:hover, -.hash-popup .topic-container .item.is-selected, .fjw-kpi-wrap, .mobile-kpi-head h2, .mini-progress, From fd8f084922dcacc1374c47b12bce70d5b5a64686 Mon Sep 17 00:00:00 2001 From: JLoeve Date: Mon, 11 Jan 2021 00:22:10 +0800 Subject: [PATCH 10/13] docs: update settings-tooltips.zh-CN.ts --- src/utils/gui-settings/tooltip/settings-tooltip.zh-CN.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/utils/gui-settings/tooltip/settings-tooltip.zh-CN.ts b/src/utils/gui-settings/tooltip/settings-tooltip.zh-CN.ts index 756569007..33a0db6f4 100644 --- a/src/utils/gui-settings/tooltip/settings-tooltip.zh-CN.ts +++ b/src/utils/gui-settings/tooltip/settings-tooltip.zh-CN.ts @@ -157,7 +157,8 @@ export const toolTips = new Map([ - Shift + w 稍后再看 - Shift + s 快速收藏 - Shift + ↑/↓ / Shift + ,/. 播放速度调整 -- Shift + / 重置播放速度`], +- Shift + / 重置播放速度 +- 0 返回开头播放`], ['doubleClickFullscreen', /*html*/`允许双击播放器切换全屏, 请注意不能与播放器触摸支持-启用双击控制一同使用.`], ['ajaxHook', /*html*/`是否启用 Ajax Hook API, 其他插件或附加功能能够通过此 API 获取 Ajax 请求的信息.`], ['scriptLoadingMode', /*html*/`脚本功能的加载模式: From b8079a9eb207c0c41e2f83757c06ce4e64426509 Mon Sep 17 00:00:00 2001 From: JLoeve Date: Mon, 11 Jan 2021 14:29:12 +0800 Subject: [PATCH 11/13] fix(dark style): #1400 fix #1400 --- src/style/dark/dark-slice-13.scss | 16 ++++++++++++++-- src/style/dark/dark-slice-8.css | 3 --- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/src/style/dark/dark-slice-13.scss b/src/style/dark/dark-slice-13.scss index 7afbf07b2..f91c929a2 100644 --- a/src/style/dark/dark-slice-13.scss +++ b/src/style/dark/dark-slice-13.scss @@ -910,7 +910,7 @@ html { } } #control-panel-ctnr-box { - @include no-image + @include no-image; } .live-web-player-controller { .vertical-slider-wrap, @@ -926,7 +926,7 @@ html { .quality-wrap .quality-it.selected { @include theme-color(); } - input[type='radio']:checked+label::before { + input[type="radio"]:checked + label::before { @include theme-background-color(); @include theme-border-color(); } @@ -974,3 +974,15 @@ html { @include theme-background-color(); } } +.bangumi-options .opt-list li { + @include background-color("3"); + @include color("e"); + &:hover { + @include theme-color(); + @include background-color("4"); + } + &.disabled { + @include color("a"); + @include background-color(); + } +} diff --git a/src/style/dark/dark-slice-8.css b/src/style/dark/dark-slice-8.css index 919f1a549..ea9f71651 100644 --- a/src/style/dark/dark-slice-8.css +++ b/src/style/dark/dark-slice-8.css @@ -63,7 +63,6 @@ .news-dialog-Wrapper, .box .record-wrap, .box .content-wrap, -.bangumi-options .opt-list li:hover, .bui-collapse .bui-collapse-header, .bpui-selecting > span, .bpui-unselecting, @@ -307,8 +306,6 @@ li.danmaku-info-row.bpui-selecting, .empty-wrap .empty-text, .fjw-point .point-wrap .user-point .face .unfocus-btn, .sub-tabs .filter-content, -.bangumi-options .opt-list li:hover, -.bangumi-options .opt-list li, .h5share-container .text-area .text-content, .navbar-container .logo-part, .navbar-container .size-ruler .app-title, From 0e7f730bc31d5ccf46fccab8c88c8e3b78e8b71c Mon Sep 17 00:00:00 2001 From: JLoeve Date: Fri, 15 Jan 2021 19:59:57 +0800 Subject: [PATCH 12/13] =?UTF-8?q?fix(dark=20style):=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=20d0ef05f=20=E4=B8=AD=E5=BC=95=E5=85=A5=E7=9A=84=20BUG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit re #1289, https://github.com/the1812/Bilibili-Evolved/issues/1289#issuecomment-757654289 --- src/style/dark/dark-slice-13.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/style/dark/dark-slice-13.scss b/src/style/dark/dark-slice-13.scss index f91c929a2..4f2d1a4f8 100644 --- a/src/style/dark/dark-slice-13.scss +++ b/src/style/dark/dark-slice-13.scss @@ -173,7 +173,7 @@ @include color("e"); } &__tabs { - @include background-color("5"); + @include background-color("2"); .album-list__tab { &-name { @include color("e"); From c98eb7f8669c30c30973cbd9cfead0ee9a6e16f1 Mon Sep 17 00:00:00 2001 From: JLoeve Date: Sat, 16 Jan 2021 15:25:00 +0800 Subject: [PATCH 13/13] fix(dark style): #1474 --- src/style/dark/dark-slice-13.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/style/dark/dark-slice-13.scss b/src/style/dark/dark-slice-13.scss index 4f2d1a4f8..ad32d6fa6 100644 --- a/src/style/dark/dark-slice-13.scss +++ b/src/style/dark/dark-slice-13.scss @@ -986,3 +986,9 @@ html { @include background-color(); } } +.emoji-tab-slider { + .prev, + .next { + filter: invert(1); + } +}