This commit is contained in:
Coulomb_G 2019-08-31 00:35:34 +08:00
parent dd784cbdf6
commit a1d312ce33
6 changed files with 20 additions and 30 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

2
min/dark.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -113,7 +113,8 @@ li.danmaku-info-row.bpui-selecting,
.user-item .attention-btn.followed,
.user-item .attention-btn.followed:hover,
.flow-loader .activity-item .info .type,
.bangumi-item .right-info .headline .bangumi-label
.bangumi-item .right-info .headline .bangumi-label,
.bili-search .user-item .attention-btn
{
background-color: #444 !important;
}
@ -227,7 +228,9 @@ li.danmaku-info-row.bpui-selecting,
.article-card .r-con .count,
#all-list .user-item .up-info>span,
.bangumi-item .right-info .intros .label,
.bangumi-item .right-info .intros .value
.bangumi-item .right-info .intros .value,
.user-item .up-info>span,
.user-item .up-videos .ptime
{
color: #aaa !important;
}
@ -394,7 +397,9 @@ li.danmaku-info-row.bpui-selecting,
.user-item .attention-btn.followed:hover,
.flow-loader .activity-item .info .type,
.bangumi-item .right-info .headline .title,
.bangumi-item .right-info .headline .bangumi-label
.bangumi-item .right-info .headline .bangumi-label,
.bili-search .user-item .title,
.bili-search .user-item .attention-btn
{
color: #eee !important;
}
@ -683,7 +688,8 @@ li.danmaku-info-row.bpui-selecting,
.vip-m .bubble-traditional .renew-btn button:hover,
.round-corner .out-container .tab-item.active,
.container .tab-item--active,
.container .more-btn:hover
.container .more-btn:hover,
.bili-search .user-item .attention-btn:hover
{
background-color: var(--theme-color) !important;
}
@ -774,7 +780,8 @@ li.danmaku-info-row.bpui-selecting,
.user-item .up-videos .video-item .video-desc:hover,
.video-item.matrix .title:hover,
.user-item .up-videos .video-more:hover,
.bangumi-item .right-info .headline .title:hover
.bangumi-item .right-info .headline .title:hover,
.bili-search .user-item .title:hover
{
color: var(--theme-color) !important;
}

View File

@ -1,17 +0,0 @@
export default {
props: ['items', 'value'],
data() {
return {
dropdownOpen: false
}
},
methods: {
toggleDropdown() {
this.dropdownOpen = !this.dropdownOpen
},
select(item: string) {
this.$emit('update:value', item)
this.$emit('change', item)
}
}
}