结果数量统计
This commit is contained in:
parent
d88bcd3afe
commit
4cf55191a0
|
@ -315,6 +315,9 @@
|
||||||
.search-box .show-official-awoken-sorting-label::after{
|
.search-box .show-official-awoken-sorting-label::after{
|
||||||
content: "Use the official Awoken sorting";
|
content: "Use the official Awoken sorting";
|
||||||
}
|
}
|
||||||
|
.search-mon-list .search-list-length::before{
|
||||||
|
content: "Number of results:";
|
||||||
|
}
|
||||||
.search-box .sort-div::before{
|
.search-box .sort-div::before{
|
||||||
content: "Sort by:";
|
content: "Sort by:";
|
||||||
}
|
}
|
||||||
|
|
|
@ -307,6 +307,9 @@
|
||||||
.search-box .show-official-awoken-sorting-label::after{
|
.search-box .show-official-awoken-sorting-label::after{
|
||||||
content: "公式の覚醒ソートを使用";
|
content: "公式の覚醒ソートを使用";
|
||||||
}
|
}
|
||||||
|
.search-mon-list .search-list-length::before{
|
||||||
|
content: "結果の数:";
|
||||||
|
}
|
||||||
.search-box .sort-div::before{
|
.search-box .sort-div::before{
|
||||||
content: "並べ替え:";
|
content: "並べ替え:";
|
||||||
}
|
}
|
||||||
|
|
|
@ -304,6 +304,9 @@
|
||||||
.search-box .show-official-awoken-sorting-label::after{
|
.search-box .show-official-awoken-sorting-label::after{
|
||||||
content: "공식 각성 순서를 사용합니다";
|
content: "공식 각성 순서를 사용합니다";
|
||||||
}
|
}
|
||||||
|
.search-mon-list .search-list-length::before{
|
||||||
|
content: "결과 수:";
|
||||||
|
}
|
||||||
.search-box .sort-div::before{
|
.search-box .sort-div::before{
|
||||||
content: "정렬:";
|
content: "정렬:";
|
||||||
}
|
}
|
||||||
|
|
|
@ -310,6 +310,9 @@
|
||||||
.search-box .show-official-awoken-sorting-label::after{
|
.search-box .show-official-awoken-sorting-label::after{
|
||||||
content: "使用官方覺醒排序";
|
content: "使用官方覺醒排序";
|
||||||
}
|
}
|
||||||
|
.search-mon-list .search-list-length::before{
|
||||||
|
content: "結果數量:";
|
||||||
|
}
|
||||||
.search-box .sort-div::before{
|
.search-box .sort-div::before{
|
||||||
content: "排序:";
|
content: "排序:";
|
||||||
}
|
}
|
||||||
|
|
|
@ -310,6 +310,9 @@
|
||||||
.search-box .show-official-awoken-sorting-label::after{
|
.search-box .show-official-awoken-sorting-label::after{
|
||||||
content: "使用官方觉醒排序";
|
content: "使用官方觉醒排序";
|
||||||
}
|
}
|
||||||
|
.search-mon-list .search-list-length::before{
|
||||||
|
content: "结果数量:";
|
||||||
|
}
|
||||||
.search-box .sort-div::before{
|
.search-box .sort-div::before{
|
||||||
content: "排序:";
|
content: "排序:";
|
||||||
}
|
}
|
||||||
|
|
|
@ -1296,6 +1296,9 @@ function initialize() {
|
||||||
|
|
||||||
if (searchArr.length > 0) {
|
if (searchArr.length > 0) {
|
||||||
const fragment = document.createDocumentFragment(); //创建节点用的临时空间
|
const fragment = document.createDocumentFragment(); //创建节点用的临时空间
|
||||||
|
const listLength = fragment.appendChild(document.createElement("div"));
|
||||||
|
listLength.className = "search-list-length";
|
||||||
|
listLength.textContent = searchArr.length;
|
||||||
//获取原始排序的头像列表
|
//获取原始排序的头像列表
|
||||||
const additionalOption = { //搜索列表的额外选项
|
const additionalOption = { //搜索列表的额外选项
|
||||||
showAwoken: s_add_show_awoken.checked,
|
showAwoken: s_add_show_awoken.checked,
|
||||||
|
|
|
@ -1271,6 +1271,10 @@ ul{
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
background: grey;
|
background: grey;
|
||||||
}
|
}
|
||||||
|
.search-mon-list .search-list-length::before
|
||||||
|
{
|
||||||
|
margin-left:4px;
|
||||||
|
}
|
||||||
.guide-mod .search-box .search-mon-list{
|
.guide-mod .search-box .search-mon-list{
|
||||||
max-height: 790px;
|
max-height: 790px;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
|
Loading…
Reference in New Issue