word-games-theme 3.2.7 → 3.2.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_includes/wordgames/advanced-filter/advanced-filter.html +14 -15
- data/_layouts/wordgames-home.html +3 -2
- data/assets/css/wordfinder-result.css +5 -5
- data/assets/css/wordgames-home.css +3 -2
- data/assets/css/wordgames-result.css +1 -1
- data/assets/css/wordgames-variables.css +13 -0
- data/assets/css/wordle-solver.css +2 -2
- data/assets/js/wordleSolver-worker.js +5 -1
- data/assets/js/wordleSolver.js +1 -1
- 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: 42128aeac1e46ea92da9f8f0d890969f2cfa85b543ea57efd62abdfbe8f23cc8
|
4
|
+
data.tar.gz: e001da4c674b41c1dcb9ec3eee63c1a81c563a90aa317e39f9563d675c2271ec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3d5a37adabc56a9354a80d077993c01c6559bbec890adecdf78b28e50a05bec469553a9ec21dad8c6b2e2c958757e967f72914b632c23123412ea49a2928b0f0
|
7
|
+
data.tar.gz: 1eeb1fa0e01f5a8b4d6fc18e0756b4e7262c248a3e8f4c4e80a03a38b50b5459ac95f4cdc2eaaccb7368e23a7403b2301132645c910682a401b0a1ecbf39e3c7
|
@@ -20,7 +20,8 @@
|
|
20
20
|
z-index: 1;
|
21
21
|
max-height: 300px;
|
22
22
|
height: auto;
|
23
|
-
overflow-y:
|
23
|
+
overflow-y: hidden;
|
24
|
+
overflow-x: auto;
|
24
25
|
border-radius: 8px;
|
25
26
|
}
|
26
27
|
|
@@ -360,20 +361,18 @@
|
|
360
361
|
item.addEventListener('click', handleItemClick);
|
361
362
|
});
|
362
363
|
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
// }
|
376
|
-
// }
|
364
|
+
window.onclick = function(event) {
|
365
|
+
if (!event.target.matches('.filter_val')) {
|
366
|
+
const dropdowns = document.getElementsByClassName("dropdown-content");
|
367
|
+
for (let i = 0; i < dropdowns.length; i++) {
|
368
|
+
dropdowns[i].style.display = "none";
|
369
|
+
}
|
370
|
+
const arrowDown = document.getElementsByClassName("arrow-down");
|
371
|
+
for (let i = 0; i < arrowDown.length; i++) {
|
372
|
+
arrowDown[i].style.display = "none";
|
373
|
+
}
|
374
|
+
}
|
375
|
+
}
|
377
376
|
|
378
377
|
|
379
378
|
|
@@ -18,7 +18,7 @@
|
|
18
18
|
<style>
|
19
19
|
.main-header {
|
20
20
|
margin: 0px !important;
|
21
|
-
background-image: radial-gradient(#e4e4f4 2px, transparent 2px);
|
21
|
+
/* background-image: radial-gradient(#e4e4f4 2px, transparent 2px); */
|
22
22
|
background-size: 25px 25px;
|
23
23
|
background-color: unset !important;
|
24
24
|
}
|
@@ -26,8 +26,9 @@
|
|
26
26
|
{%- else -%}
|
27
27
|
<style>
|
28
28
|
.main-header {
|
29
|
+
padding-bottom: 35vh;
|
29
30
|
margin: 0px !important;
|
30
|
-
background-image: radial-gradient(#e4e4f4 2px, transparent 2px);
|
31
|
+
/* background-image: radial-gradient(#e4e4f4 2px, transparent 2px); */
|
31
32
|
background-size: 25px 25px;
|
32
33
|
background-color: unset !important;
|
33
34
|
}
|
@@ -321,7 +321,7 @@
|
|
321
321
|
padding: 10px;
|
322
322
|
text-align: left;
|
323
323
|
color: #1c1107;
|
324
|
-
font-size:
|
324
|
+
font-size: 1.5rem;
|
325
325
|
font-weight: 600;
|
326
326
|
font-stretch: normal;
|
327
327
|
font-style: normal;
|
@@ -338,7 +338,7 @@
|
|
338
338
|
padding: 10px;
|
339
339
|
text-align: left;
|
340
340
|
color: #1c1107;
|
341
|
-
font-size:
|
341
|
+
font-size: 1.5rem;
|
342
342
|
font-weight: 600;
|
343
343
|
font-stretch: normal;
|
344
344
|
font-style: normal;
|
@@ -357,7 +357,7 @@
|
|
357
357
|
|
358
358
|
.wordCount {
|
359
359
|
/* text-indent: 10px; */
|
360
|
-
font-size:
|
360
|
+
font-size: 2rem;
|
361
361
|
}
|
362
362
|
|
363
363
|
.filterSortedIcons {
|
@@ -408,7 +408,7 @@
|
|
408
408
|
}
|
409
409
|
.fillterWrapper input{
|
410
410
|
padding: 10px !important;
|
411
|
-
font-size:
|
411
|
+
font-size: 1.5rem;
|
412
412
|
width: 140px;
|
413
413
|
}
|
414
414
|
.fillterWrapper .filter-tooltip img{
|
@@ -429,7 +429,7 @@
|
|
429
429
|
|
430
430
|
.wordList .anchor__style {
|
431
431
|
color: #000 !important;
|
432
|
-
font-size:
|
432
|
+
font-size: 2rem;
|
433
433
|
text-decoration: none !important;
|
434
434
|
font-weight: 600;
|
435
435
|
list-style: none;
|
@@ -104,13 +104,14 @@ input[type="number"] {
|
|
104
104
|
}
|
105
105
|
|
106
106
|
.serachSection .serachBox .txtBox {
|
107
|
+
text-transform: uppercase;
|
107
108
|
height: 80px;
|
108
109
|
border: solid 3px #313131;
|
109
110
|
border-radius: 74px;
|
110
111
|
background: #fff;
|
111
112
|
padding: 2rem;
|
112
113
|
width: 100%;
|
113
|
-
font-size:
|
114
|
+
font-size: 16px;
|
114
115
|
font-weight: 700;
|
115
116
|
font-style: normal;
|
116
117
|
letter-spacing: normal;
|
@@ -185,7 +186,7 @@ input[type="number"] {
|
|
185
186
|
height: 80px;
|
186
187
|
position: absolute;
|
187
188
|
top: 0px;
|
188
|
-
font-size:
|
189
|
+
font-size: 16px;
|
189
190
|
width: 142px;
|
190
191
|
overflow: hidden;
|
191
192
|
object-fit: cover;
|
@@ -19,3 +19,16 @@
|
|
19
19
|
--tooltip-border-style: 0.5rem;
|
20
20
|
}
|
21
21
|
|
22
|
+
|
23
|
+
/*
|
24
|
+
|
25
|
+
h1 - 48px
|
26
|
+
h2 - 20px
|
27
|
+
feature heading - 18px
|
28
|
+
feature desc - 16px
|
29
|
+
how-to-list-item - 16px
|
30
|
+
.faq-question - 20px
|
31
|
+
.faq-answer - 16px
|
32
|
+
|
33
|
+
|
34
|
+
.feature-highlight-title, .howto, .infographics-title, .related_post_heading - 48px */
|
@@ -124,12 +124,12 @@
|
|
124
124
|
|
125
125
|
.wordList .anchor__style {
|
126
126
|
color: #000!important;
|
127
|
-
font-size:
|
127
|
+
font-size: 2rem;
|
128
128
|
text-decoration: none!important;
|
129
129
|
font-weight: 600;
|
130
130
|
}
|
131
131
|
#wordleWordCount {
|
132
|
-
font-size:
|
132
|
+
font-size: 2rem;
|
133
133
|
/* width: 75%; */
|
134
134
|
margin: 10px auto;
|
135
135
|
}
|
@@ -31,7 +31,11 @@ self.onmessage = async (event) => {
|
|
31
31
|
sum += ScrabbleLetterScore[item[i]] || 0 // for unknown characters
|
32
32
|
}
|
33
33
|
return `
|
34
|
-
<a
|
34
|
+
<a style='color: #000!important;
|
35
|
+
font-size: 2rem;
|
36
|
+
text-decoration: none!important;
|
37
|
+
font-weight: 600;'
|
38
|
+
class="anchor__style" title="Lookup ${item} in Dictionary" target="_blank" href="/word-meaning?search=${item.toLowerCase()}">
|
35
39
|
<li>
|
36
40
|
${item.toLowerCase()}
|
37
41
|
<span class="points" value="${sum}" style="position:relative; top:4px; font-size:12px"> ${sum}</span>
|
data/assets/js/wordleSolver.js
CHANGED
@@ -214,7 +214,7 @@ const wordleSolver = async (value, value2, value3, greenWithIndex) => {
|
|
214
214
|
|
215
215
|
worker.postMessage({
|
216
216
|
type: "api",
|
217
|
-
endpoint: `/.netlify/functions/wordleSolver
|
217
|
+
endpoint: `/.netlify/functions/wordleSolver`,
|
218
218
|
greenLetters: value,
|
219
219
|
yellowLetters: value2,
|
220
220
|
greyLetters: value3,
|
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.2.
|
4
|
+
version: 3.2.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- manpreet-appscms
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-03-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|