fix(dark style): 播放器缓冲图标适配主题色

This commit is contained in:
JLoeve 2021-02-15 14:57:57 +08:00
parent 57dd8cf6b8
commit 6efd03fec5
2 changed files with 11 additions and 0 deletions

View File

@ -53,6 +53,9 @@
@mixin theme-fill($level: "") {
@include set-theme-color("fill", $level);
}
@mixin theme-stroke($level: "") {
@include set-theme-color("stroke", $level);
}
@mixin foreground-background-color($level: "") {
@include set-foreground-color("background-color", $level);

View File

@ -71,3 +71,11 @@
.b-info .balance-name {
@include theme-color();
}
.bilibili-player-video-state-buff-icon {
path[fill="rgb(0,161,214)"] {
@include theme-fill();
}
path[stroke="rgb(0,161,214)"] {
@include theme-stroke();
}
}