结果数量统计

This commit is contained in:
枫谷剑仙 2020-11-21 21:30:47 +08:00
parent d88bcd3afe
commit 4cf55191a0
7 changed files with 22 additions and 0 deletions

View File

@ -315,6 +315,9 @@
.search-box .show-official-awoken-sorting-label::after{
content: "Use the official Awoken sorting";
}
.search-mon-list .search-list-length::before{
content: "Number of results:";
}
.search-box .sort-div::before{
content: "Sort by:";
}

View File

@ -307,6 +307,9 @@
.search-box .show-official-awoken-sorting-label::after{
content: "公式の覚醒ソートを使用";
}
.search-mon-list .search-list-length::before{
content: "結果の数:";
}
.search-box .sort-div::before{
content: "並べ替え:";
}

View File

@ -304,6 +304,9 @@
.search-box .show-official-awoken-sorting-label::after{
content: "공식 각성 순서를 사용합니다";
}
.search-mon-list .search-list-length::before{
content: "결과 수:";
}
.search-box .sort-div::before{
content: "정렬:";
}

View File

@ -310,6 +310,9 @@
.search-box .show-official-awoken-sorting-label::after{
content: "使用官方覺醒排序";
}
.search-mon-list .search-list-length::before{
content: "結果數量:";
}
.search-box .sort-div::before{
content: "排序:";
}

View File

@ -310,6 +310,9 @@
.search-box .show-official-awoken-sorting-label::after{
content: "使用官方觉醒排序";
}
.search-mon-list .search-list-length::before{
content: "结果数量:";
}
.search-box .sort-div::before{
content: "排序:";
}

View File

@ -1296,6 +1296,9 @@ function initialize() {
if (searchArr.length > 0) {
const fragment = document.createDocumentFragment(); //创建节点用的临时空间
const listLength = fragment.appendChild(document.createElement("div"));
listLength.className = "search-list-length";
listLength.textContent = searchArr.length;
//获取原始排序的头像列表
const additionalOption = { //搜索列表的额外选项
showAwoken: s_add_show_awoken.checked,

View File

@ -1271,6 +1271,10 @@ ul{
border-radius: 5px;
background: grey;
}
.search-mon-list .search-list-length::before
{
margin-left:4px;
}
.guide-mod .search-box .search-mon-list{
max-height: 790px;
overflow: auto;