word-games-theme 2.3.1 → 2.3.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9499a21d9a74ebe59be743a7acd3bc4b89c838b9b1594eeb42a632477ac7b91b
4
- data.tar.gz: 4028c3a58849303081121fe9757cd27ae6b913234b8f4a8415c571e24d37f04a
3
+ metadata.gz: 0d1aa37e1b56599c5ddf7b82726c06478589ab8915f9413c66fecf5cee5058b0
4
+ data.tar.gz: 6b3c720de507d4901041908f0b1ff208c3cbff2467b7bc663652a5c30742e61d
5
5
  SHA512:
6
- metadata.gz: e6f8b8947100e47caa4cb35319ac4e5bc2888166c322e89a25a02c7d10172f23e240a5d1441d4908e6293a7581f98c5690d5d3b3458ad40dd2085b843f926f36
7
- data.tar.gz: 83a7e80a2fcdde74613a815da4a881fcf29955fff39a09a68a74f8784b08031732751f622d4b0293bf8c068555ffc0523b478c58cdd50b7dfaeebd57f76251df
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>
@@ -95,27 +95,42 @@
95
95
  text-decoration: none;
96
96
  }
97
97
 
98
+ .allGroupWords {
99
+ background-color: #fff!important;
100
+ width: auto;
101
+ height: auto;
102
+ border-radius: 15px;
103
+ box-shadow: 0 0 2px rgba(0,0,0,.2);
104
+ margin: 10px 0;
105
+ border: 2px solid var(--black-color);
106
+ }
98
107
  .allfiveletterswords {
99
- background-color: white !important;
100
- width: 75%;
101
- margin: 10px auto;
108
+ background-color: #fff!important;
109
+ width: auto;
102
110
  height: auto;
103
- box-shadow: 0 0 2px rgb(0 0 0 / 20%);
104
- /* margin: 10px 0; */
105
111
  border-radius: 15px;
112
+ box-shadow: 0 0 2px rgba(0,0,0,.2);
113
+ margin: 10px 0;
114
+ border: 2px solid var(--black-color);
106
115
  }
107
116
 
108
117
  .allfiveletterswords>.wordListHeading {
109
- background: gray;
110
- padding: 10px 0px 5px 25px;
118
+ background: var(--black-color);
119
+ padding: 10px 0 5px 25px;
120
+ border-top-right-radius: 13px;
121
+ border-top-left-radius: 13px;
111
122
  color: #fff;
112
- border-top-right-radius: 15px;
113
- border-top-left-radius: 15px;
114
123
  }
115
124
 
125
+ .wordList .anchor__style {
126
+ color: #000!important;
127
+ font-size: 15px;
128
+ text-decoration: none!important;
129
+ font-weight: 600;
130
+ }
116
131
  #wordleWordCount {
117
132
  font-size: 18px;
118
- width: 75%;
133
+ /* width: 75%; */
119
134
  margin: 10px auto;
120
135
  }
121
136
 
@@ -133,6 +148,17 @@
133
148
  color: #fff !important;
134
149
  background-color: #3D3D3E !important;
135
150
  }
151
+ .wordList>ul li{
152
+ padding: 8px 0;
153
+ background: #f8f9fa;
154
+ border-radius: 5px;
155
+ margin: 6px 6px;
156
+ width: auto;
157
+ min-width: 100px;
158
+ text-align: center;
159
+ border: solid 1px var(--black-color) !important;
160
+ box-shadow: 2px 2px 1px 0 var(--black-color) !important;
161
+ }
136
162
 
137
163
  .related_post_heading {
138
164
  width: 100%;
@@ -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(
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: word-games-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.1
4
+ version: 2.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - manpreet-appscms