word-games-theme 1.8.9 → 1.9.1

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: e1a4e979be768122a782d711bdf985f3f33142654261be5b2f0497640447e12f
4
- data.tar.gz: 11a0f95aa4e80751a05e5b107183d8b6b5d59dd767d2aed6b65ad9e1a8b1ff85
3
+ metadata.gz: b2fbdfa8a01398bb8ecc6b37036011c10f602a2695131f09cb8f3373c0dd8dc3
4
+ data.tar.gz: 98c33469651d336a760c4345c448944c6d4db75137283ad5a9b16203fe91a797
5
5
  SHA512:
6
- metadata.gz: 50bb44025259457658e050d5dcb91deb7ea34b5774a692eac004a3f96d43045fa9f64d4b347c81d66d993f5766abcc0236d1e1ae7db09a0937c644f7a977a644
7
- data.tar.gz: 8767bc0aee57d39741d6be9d47d693739489bee285ded2bac30c34570e17d6eb3f72fc507c4b33675baf63742842e0f5739ce43b07d8a1116ab4c213286dd285
6
+ metadata.gz: a267865476ce47d94c93ccee9d67e2db84602e0f112346fa639c3c71c1eb3e02ff1c5aaddc83c4674a7608013cc96d87b32a66e57b9205f9c7e1ecaa83cdb088
7
+ data.tar.gz: 0fd0fadb204d38e3c12523d9c7240a1e5d07b9a42dab5bfd97010254ad46b76f0522ce5060149bf25389bc96f94b7eb0dcd3f9609d910ea960647e5ea3138ac3
@@ -1,3 +1,14 @@
1
+ <style>
2
+ .greenLetters{
3
+ border-color: green !important;
4
+ }
5
+ .yellowLetters{
6
+ border-color: #C59E28 !important;
7
+ }
8
+ .greyLetters{
9
+ border-color: gray !important;
10
+ }
11
+ </style>
1
12
  <div class="container wordleSolver-container">
2
13
  <div class="row">
3
14
  <div class="col-md-10 mx-auto ws">
@@ -184,22 +195,32 @@
184
195
  </div>
185
196
  </div>
186
197
  </div>
187
- <script src="https://code.jquery.com/jquery-3.6.0.min.js"
188
- integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
189
198
  <script>
190
- $(document).on('keypress', 'input', function (e) {
191
- if (e.which === 32) {
192
- e.preventDefault();
193
- var $next = $('[tabIndex=' + (+this.tabIndex + 1) + ']');
194
-
195
- if (!$next.length) {
196
- $next = $('[tabIndex=1]');
199
+ let inputs = document.querySelectorAll('input');
200
+ for (let ws of inputs) {
201
+ ws.addEventListener('keypress', function (e) {
202
+ let target = e.srcElement;
203
+ let idx = parseInt(target.getAttribute('tabIndex'));
204
+ if (e.which === 32) {
205
+ e.preventDefault();
206
+ idx += idx < inputs.length - 1 ? 1 : 0;
207
+ inputs[idx].focus();
197
208
  }
198
- $next.focus().click();
199
- }
200
- });
201
-
202
-
209
+ })
210
+ ws.addEventListener('keydown', function (e) {
211
+ var target = e.srcElement;
212
+ let idx = parseInt(target.getAttribute('tabIndex'));
213
+ if (e.keyCode === 8 || e.keyCode === 9) {
214
+ switch (e.keyCode) {
215
+ case 8:
216
+ idx -= idx > 0 ? 1 : 0;
217
+ this.value = '';
218
+ inputs[idx].focus();
219
+ break;
220
+ }
221
+ }
222
+ });
223
+ }
203
224
  function move(first, last) {
204
225
  if (first.value.length) {
205
226
  document.getElementById(last).focus()
data/_layouts/blog.html CHANGED
@@ -38,20 +38,19 @@
38
38
  <div class="card-footer bg-white">
39
39
  <div class="wrapfooter">
40
40
  {% if post.author %}
41
- <span class="meta-footer-thumb">
42
- <img class="author-thumb" loading="lazy" height="35px" width="35px"
43
- src="{{ image }}" alt="{{ authorName }}">
44
- </span>
41
+ <a target="_blank" href="/author/{{authorName | downcase | replace: ' ' , '-' }}" class="meta-footer-thumb">
42
+ <img class="author-thumb" loading="lazy" src="{{ image }}"
43
+ alt="{{ authorName }}" {%- if site.crossorigin -%}
44
+ crossorigin="anonymous" {%- endif -%}>
45
+ </a>
45
46
  {% endif %}
46
47
 
47
48
  <span class="author-meta">
48
49
  <span class="post-name">
49
- <a target="_blank" href="/blog">{{authorName}}</a>
50
+ <a target="_blank" href="/author/{{authorName | downcase | replace: ' ' , '-' }}">{{authorName}}</a>
50
51
  </span><br>
51
52
  <span class="post-date">{{post.date | date_to_string }}</span>
52
53
  </span>
53
- <!-- <span class="post-read-more "><a class="text-dark" href="{{ post.url }}"
54
- title="Read Story">Read More</a></span> -->
55
54
  </div>
56
55
  </div>
57
56
  </div>
data/assets/css/style.css CHANGED
@@ -95,6 +95,10 @@ header {
95
95
  top: 50px !important;
96
96
  }
97
97
 
98
+ .show{
99
+ display: grid ;
100
+ padding: 15px;
101
+ }
98
102
  .dropdown-menu.show {
99
103
  padding: 3.5rem;
100
104
  display: grid;
@@ -294,9 +298,8 @@ header {
294
298
  font-style: normal;
295
299
  outline: none;
296
300
  }
297
-
298
- .serachSection .serachBox .advancedFilter .angle-arrow2 {
299
- background: url(/assets/images/angle-arrow-down.svg) no-repeat;
301
+ .angle-arrow2 {
302
+ background: url(/assets/images/angle-arrow-down.svg) no-repeat center center;
300
303
  background-size: contain;
301
304
  object-fit: cover;
302
305
  width: 10px;
@@ -39,7 +39,7 @@
39
39
 
40
40
  .forms_data .wordleSolver-field:focus {
41
41
  box-shadow: unset !important;
42
- border-color: #ced4da !important;
42
+ /* border-color: #ced4da !important; */
43
43
  }
44
44
 
45
45
  #addMore {
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: 1.8.9
4
+ version: 1.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - manpreet-appscms
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-04-25 00:00:00.000000000 Z
11
+ date: 2023-04-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll