Browse Source

结果数量统计

tags/v7.5.1
枫谷剑仙 5 years ago
parent
commit
0adf486cad
7 changed files with 22 additions and 0 deletions
  1. +3
    -0
      languages/en.css
  2. +3
    -0
      languages/ja.css
  3. +3
    -0
      languages/ko.css
  4. +3
    -0
      languages/zh-TW.css
  5. +3
    -0
      languages/zh.css
  6. +3
    -0
      script.js
  7. +4
    -0
      style.css

+ 3
- 0
languages/en.css 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:";
}


+ 3
- 0
languages/ja.css 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: "並べ替え:";
}


+ 3
- 0
languages/ko.css 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: "정렬:";
}


+ 3
- 0
languages/zh-TW.css 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: "排序:";
}


+ 3
- 0
languages/zh.css 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: "排序:";
}


+ 3
- 0
script.js 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,


+ 4
- 0
style.css 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;


Loading…
Cancel
Save