This commit is contained in:
Coulomb 2019-04-10 11:12:18 +08:00
parent 56d4aa98c8
commit 550be35464
6 changed files with 17 additions and 13 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

File diff suppressed because one or more lines are too long

View File

@ -361,7 +361,7 @@
.cube .meta .icon,
.album-card .info .view-count .icon-view,
.album-card .info .like-num .icon-like,
.col-full .meta .icon
.section-block .col-full .meta .icon
{
filter: brightness(0) invert(.7) !important;
}
@ -369,7 +369,8 @@
#page-fav .fav-main .search-input .icon-search:hover,
.error-body .error-container .error-panel .error-msg .error-img,
.register-agree .checkbox-bwxr.active,
.answer-list .key-list li.active:before
.answer-list .key-list li.active:before,
.self-icon-vote-create-btn.active
{
filter: var(--blue-image-filter) !important;
}
@ -521,7 +522,8 @@
.text-article-wrp .article-card .meta-status .status,
.text-article-wrp .article-card .meta-view .menu-list .menu-item:hover,
.col-1 .article-wrap .article-con a:hover,
.pgc-space-follow-item .pgc-item-info .pgc-item-state .publish-state.is-new
.pgc-space-follow-item .pgc-item-info .pgc-item-state .publish-state.is-new,
.article-content-ctnr .supporting-info .category:hover
{
color: var(--theme-color) !important;
}

View File

@ -69,6 +69,7 @@ export const map = new Map([
[`我的关注`, `私のフォロー`],
[`我的粉丝`, `私のファン`],
[`我的消息`, `DM`],
[`我的收藏`,`私のお気に入り`],
[`系统通知`, `システム`],
[`网游`, `オンライン`],
[`手游`, `モバイル`],
@ -312,7 +313,7 @@ export const map = new Map([
[`按热度排序`, `人気順に並べ替え`],
[`全部评论`,`すべてのコメント`],
[`发消息`, `DMを送る`],
[`点赞`, `好き`],
[`点赞`, `いいね`],
[`发表评论`, `コメント`],
[`*`, [
/* CSS translation here */
@ -322,7 +323,7 @@ export const map = new Map([
export const regex = new Map([
[/浏览:([0-9\.a-z])/, `閲覧:$1`],
[/收藏:([0-9\.a-z])/, `お気に入り:$1`],
[/支持:([0-9\.a-z])/, `好き$1`],
[/支持:([0-9\.a-z])/, `いいね$1`],
[/共([\d]+)页/,`全部で $1 ページ`],
[/小视频 ([\d])/,`短いビデオ $1`],
[/相簿 ([\d])/,`アルバム $1`],
@ -332,6 +333,7 @@ export const regex = new Map([
[/([\d\.万]+)播放/, `$1再生`],
[/([\d\.万]+)弹幕/, `$1弾幕`],
[/([\+]?[ ]?)关注/, `$1フォロー`],
[/上传时间:([\d])/, `アップロード時間:$1`],
]);
export default {
export: { map, regex },