word-games-theme 3.1.9 → 3.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/wordgames/advanced-filter/advanced-filter.html +1 -1
- data/_includes/wordgames/headings/headings.html +1 -1
- data/_layouts/wordgames-home.html +1 -5
- data/assets/css/wordgames-home.css +9 -7
- data/assets/css/wordgames-result.css +3 -4
- data/assets/js/wordfinder-home.js +2 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6b1bb294719ebcca78e2f1c7768889b6ea4dd1e8d155e13695e6e0c0ee6955c8
|
4
|
+
data.tar.gz: 930a14edb611cde3f8544412b0ad4652c66b8c5f71f2effff4f545e3f89fa279
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 577706afda122de800e7444e7ba5db4518e4cadbfca19d82d13bd1066064352144135d2d5f06b44dfa513217f9073a76c7de60671f6790818c73d8625011ecd9
|
7
|
+
data.tar.gz: faed5fd30d75d28693e2fd3b2621c840a9652830609e1147c802e337dde78ee99577aa812bd2f3c0310ef189e351ec370b9cb6ad4b0bebb17a3a43f3d95ff39e
|
@@ -349,7 +349,7 @@
|
|
349
349
|
console.log(selectedValue.toLowerCase());
|
350
350
|
const dropdownId = event.target.closest('.dropdown-content').id;
|
351
351
|
const inputId = dropdownId.replace('Dropdown', '');
|
352
|
-
document.getElementById(inputId).value = selectedValue
|
352
|
+
document.getElementById(inputId).value = selectedValue
|
353
353
|
document.getElementById(dropdownId).classList.remove('show');
|
354
354
|
document.getElementById(dropdownId).style.display = "none"
|
355
355
|
let arrow = document.getElementById(inputId).parentElement.querySelector('.arrow-down');
|
@@ -17,10 +17,7 @@
|
|
17
17
|
|
18
18
|
<style>
|
19
19
|
.main-header {
|
20
|
-
padding-top: 12vh;
|
21
20
|
margin: 0px !important;
|
22
|
-
height: auto;
|
23
|
-
/* padding-bottom: 50vh; */
|
24
21
|
background-image: radial-gradient(#e4e4f4 2px, transparent 2px);
|
25
22
|
background-size: 25px 25px;
|
26
23
|
background-color: unset !important;
|
@@ -30,8 +27,6 @@
|
|
30
27
|
<style>
|
31
28
|
.main-header {
|
32
29
|
margin: 0px !important;
|
33
|
-
height: 70vh;
|
34
|
-
/* padding-bottom: 50vh; */
|
35
30
|
background-image: radial-gradient(#e4e4f4 2px, transparent 2px);
|
36
31
|
background-size: 25px 25px;
|
37
32
|
background-color: unset !important;
|
@@ -111,6 +106,7 @@
|
|
111
106
|
|
112
107
|
|
113
108
|
<script data-lang="{{page.lang}}" defer src="/assets/js/theme.js"></script>
|
109
|
+
|
114
110
|
{%- if site.noResultPage -%}
|
115
111
|
<script data-url="{{site.url}}" data-blanktilerange="{{page.blanktilerange}}" defer
|
116
112
|
src="/assets/js/wordfinder-home.js"></script>
|
@@ -836,6 +836,13 @@ summary::-webkit-details-marker {
|
|
836
836
|
|
837
837
|
@media (max-width: 768px) {
|
838
838
|
|
839
|
+
.main-header {
|
840
|
+
padding-top: 0rem !important;
|
841
|
+
margin-bottom: 0vh;
|
842
|
+
padding-bottom: 3rem;
|
843
|
+
background: var(--primary-color);
|
844
|
+
height: auto !important;
|
845
|
+
}
|
839
846
|
.top_tool_bar {
|
840
847
|
display: block !important;
|
841
848
|
}
|
@@ -874,6 +881,7 @@ summary::-webkit-details-marker {
|
|
874
881
|
|
875
882
|
.advancedFilterOptions {
|
876
883
|
display: block;
|
884
|
+
margin-top: 5px;
|
877
885
|
}
|
878
886
|
|
879
887
|
.filterShow {
|
@@ -1152,13 +1160,7 @@ summary::-webkit-details-marker {
|
|
1152
1160
|
display: none;
|
1153
1161
|
}
|
1154
1162
|
|
1155
|
-
|
1156
|
-
padding-top: 0rem !important;
|
1157
|
-
margin-bottom: 0vh;
|
1158
|
-
padding-bottom: 3rem;
|
1159
|
-
background: var(--primary-color);
|
1160
|
-
height: auto !important;
|
1161
|
-
}
|
1163
|
+
|
1162
1164
|
|
1163
1165
|
}
|
1164
1166
|
|
@@ -177,14 +177,13 @@ input:-webkit-autofill:active {
|
|
177
177
|
}
|
178
178
|
|
179
179
|
.serachSection {
|
180
|
-
height: auto;
|
180
|
+
/* height: auto;
|
181
181
|
position: sticky;
|
182
182
|
top: 68px;
|
183
|
-
z-index: 99;
|
183
|
+
z-index: 99; */
|
184
184
|
box-shadow: 0px 0px 30px #ffffff;
|
185
|
-
background: white;
|
185
|
+
/* background: white; */
|
186
186
|
padding: 4px;
|
187
|
-
|
188
187
|
}
|
189
188
|
|
190
189
|
|
@@ -110,7 +110,6 @@ Array.from(filterInputs).forEach((item) => {
|
|
110
110
|
tooltipElement.style.setProperty('--tooltip-border-style', 'soild');
|
111
111
|
})
|
112
112
|
})
|
113
|
-
|
114
113
|
sortup.addEventListener("click", () => {
|
115
114
|
if (bool) {
|
116
115
|
theSelect.size = 0;
|
@@ -354,9 +353,9 @@ const getData = async (serachValue) => {
|
|
354
353
|
home_page_search_result = document.querySelector("#home_page_search_result")
|
355
354
|
homePageSearchResult = `/?search=${serachValue}&dictionary=Dictionary&prefix=&contains=&suffix=&exculde=&inculde=&length=`;
|
356
355
|
}
|
357
|
-
document.querySelector(".main-header").style.height = "auto"
|
356
|
+
// document.querySelector(".main-header").style.height = "auto"
|
358
357
|
document.querySelector(".main-header").style.background = "#fff"
|
359
|
-
document.querySelector(".heading-h2").
|
358
|
+
// document.querySelector(".heading-h2").remove()
|
360
359
|
document.querySelector(".sortingFilters").style.display = "none"
|
361
360
|
errorMsg.innerHTML = "";
|
362
361
|
wordCount.innerHTML = "";
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: word-games-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- manpreet-appscms
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-09
|
11
|
+
date: 2024-10-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|