word-games-theme 2.3.2 → 2.3.3
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0d1aa37e1b56599c5ddf7b82726c06478589ab8915f9413c66fecf5cee5058b0
|
4
|
+
data.tar.gz: 6b3c720de507d4901041908f0b1ff208c3cbff2467b7bc663652a5c30742e61d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 468b14ff0618716f34cbea76bbc3c82f5260fc41957934b2550c32bb5fa7d66a330c2405c88b3429b18b45a4db767c3aeb18f9fab747e86b957b504ca16cddcd
|
7
|
+
data.tar.gz: c429661317eeaf9a38c28bbe3399bde286f08e3ae50e19481da3cebe83889094b574cb5937e7e01101a4cf4b69d8b5d7ce4b9d4b2c812a17e7273046d5ac4e74
|
@@ -6,6 +6,12 @@
|
|
6
6
|
|
7
7
|
{%- assign CustomColor = site.data.theme.colors -%}
|
8
8
|
|
9
|
+
<style>
|
10
|
+
.nav_menu_bar{
|
11
|
+
z-index: 99;
|
12
|
+
cursor: pointer;
|
13
|
+
}
|
14
|
+
</style>
|
9
15
|
<nav class="result_navbar_section navbar-expand-lg navbar-dark" style="background-color: #fff;">
|
10
16
|
<a class="nav_menu_bar" href="/" title="{{dataToShow.tooltip}}" style="position: absolute; top:5px">
|
11
17
|
<img src="/assets/images/wordfinder-result-logo.svg" alt="{{site.name}}" width="90%" height="90%">
|
@@ -32,11 +32,15 @@
|
|
32
32
|
</div>
|
33
33
|
</div>
|
34
34
|
<div class="wrapper_dropDown mt-3 d-flex justify-content-end" style="gap:10px;">
|
35
|
+
|
36
|
+
{%- if page.letter == nil -%}
|
35
37
|
<div class="letter-length">
|
36
38
|
<select class="form-select length-select">
|
37
39
|
<option selected="true" hidden>Letter Length</option>
|
38
40
|
</select>
|
39
41
|
</div>
|
42
|
+
{%- endif -%}
|
43
|
+
|
40
44
|
<div id="sort-select">
|
41
45
|
<select class="form-select sort-select" id="select_dropDown">
|
42
46
|
<option selected="true" hidden id="alpha" value="alpha">Sort by</option>
|
@@ -281,7 +281,8 @@ if (lengthValue === "1") {
|
|
281
281
|
// getWords function define...
|
282
282
|
function getWords(data) {
|
283
283
|
main.innerHTML = "";
|
284
|
-
tab_container.innerHTML = "";
|
284
|
+
// tab_container.innerHTML = "";
|
285
|
+
lengthSelect.innerHTML = ""
|
285
286
|
if (typeof data === "string") {
|
286
287
|
errorMsg.innerHTML = "no words found";
|
287
288
|
wordCount.innerHTML = `<strong>Found 0 words with letters ${serachValue.split(
|