4dac68ca by Jeff Balicki

ff

1 parent 5c6660f8
......@@ -67,6 +67,12 @@ jQuery( document ).ready(function($) {
}
});
$( "#wpsl-search-btn" ).on( "keydown", function(event) {
if(event.which == 13){
$('#wpsl-s').show();
}
});
$( "#register-here" ).on( "keydown", function(event) {
if(event.which == 13){
$('.wp-block-group.register').toggle();
......
......@@ -5,7 +5,7 @@
Author: the Understrap Contributors
Author URI: https://github.com/understrap/understrap-child/graphs/contributors
Template: understrap
Version: 1.1.30374
Version: 1.1.30375
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: understrap-child
......
......@@ -169,9 +169,7 @@ margin-top:-2px;
#wpsl-search-btn {
display:none !important;
}
td, th {
vertical-align: top;
......@@ -257,8 +255,7 @@ td, th {
font-size:60px;
}
.wpsl-input:after {
content: "";
#wpsl-search-btn{
background-image: url("https://yournumbers.ca/wp-content/uploads/2022/01/search.png");
height: 50px;
width: 50px;
......@@ -267,7 +264,12 @@ td, th {
background-size: contain;
float: right;
margin-top: 10px;
border: 0px solid #d2d2d2 !important;
background-color: transparent;
box-shadow: 0 1px 2px #fff;
text-indent: -9999px;
}
.wpsl-dropdown .wpsl-selected-item, .wpsl-dropdown li, .wpsl-selected-item {
list-style: none;
padding: 6px 4px !important;
......