4dac68ca by Jeff Balicki

ff

1 parent 5c6660f8
...@@ -67,6 +67,12 @@ jQuery( document ).ready(function($) { ...@@ -67,6 +67,12 @@ jQuery( document ).ready(function($) {
67 } 67 }
68 }); 68 });
69 69
70 $( "#wpsl-search-btn" ).on( "keydown", function(event) {
71 if(event.which == 13){
72 $('#wpsl-s').show();
73 }
74 });
75
70 $( "#register-here" ).on( "keydown", function(event) { 76 $( "#register-here" ).on( "keydown", function(event) {
71 if(event.which == 13){ 77 if(event.which == 13){
72 $('.wp-block-group.register').toggle(); 78 $('.wp-block-group.register').toggle();
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
5 Author: the Understrap Contributors 5 Author: the Understrap Contributors
6 Author URI: https://github.com/understrap/understrap-child/graphs/contributors 6 Author URI: https://github.com/understrap/understrap-child/graphs/contributors
7 Template: understrap 7 Template: understrap
8 Version: 1.1.30374 8 Version: 1.1.30375
9 License: GNU General Public License v2 or later 9 License: GNU General Public License v2 or later
10 License URI: http://www.gnu.org/licenses/gpl-2.0.html 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html
11 Text Domain: understrap-child 11 Text Domain: understrap-child
......
...@@ -169,9 +169,7 @@ margin-top:-2px; ...@@ -169,9 +169,7 @@ margin-top:-2px;
169 169
170 170
171 171
172 #wpsl-search-btn { 172
173 display:none !important;
174 }
175 td, th { 173 td, th {
176 174
177 vertical-align: top; 175 vertical-align: top;
...@@ -257,8 +255,7 @@ td, th { ...@@ -257,8 +255,7 @@ td, th {
257 font-size:60px; 255 font-size:60px;
258 } 256 }
259 257
260 .wpsl-input:after { 258 #wpsl-search-btn{
261 content: "";
262 background-image: url("https://yournumbers.ca/wp-content/uploads/2022/01/search.png"); 259 background-image: url("https://yournumbers.ca/wp-content/uploads/2022/01/search.png");
263 height: 50px; 260 height: 50px;
264 width: 50px; 261 width: 50px;
...@@ -267,7 +264,12 @@ td, th { ...@@ -267,7 +264,12 @@ td, th {
267 background-size: contain; 264 background-size: contain;
268 float: right; 265 float: right;
269 margin-top: 10px; 266 margin-top: 10px;
267 border: 0px solid #d2d2d2 !important;
268 background-color: transparent;
269 box-shadow: 0 1px 2px #fff;
270 text-indent: -9999px;
270 } 271 }
272
271 .wpsl-dropdown .wpsl-selected-item, .wpsl-dropdown li, .wpsl-selected-item { 273 .wpsl-dropdown .wpsl-selected-item, .wpsl-dropdown li, .wpsl-selected-item {
272 list-style: none; 274 list-style: none;
273 padding: 6px 4px !important; 275 padding: 6px 4px !important;
......