From: Steve Sutton Date: Fri, 15 Jan 2016 14:36:06 +0000 (-0500) Subject: updates for styles and tabindex issues X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=91abc7236a4315460fe1cb716341d67c4f03cf75;p=WP-Themes%2Fglmthemes%2Fmountpleasant-theme.git updates for styles and tabindex issues --- diff --git a/css/app.css b/css/app.css index ce2894c..b363083 100644 --- a/css/app.css +++ b/css/app.css @@ -7100,7 +7100,7 @@ h2#slide-text { text-shadow: 0 3px 6px rgba(0, 0, 0, 0.45); } /* for mountpleasant */ -#content-wrapper div.woocommerce #customer_details input[type=text], #content-wrapper div.woocommerce #customer_details input[type=email], #content-wrapper div.woocommerce #customer_details select, #content-wrapper div.woocommerce #customer_details textarea { +#content-wrapper div.woocommerce #customer_details input[type=text], #content-wrapper div.woocommerce #customer_details input[type=email], #content-wrapper div.woocommerce #customer_details input[type=tel], #content-wrapper div.woocommerce #customer_details select, #content-wrapper div.woocommerce #customer_details textarea, #payment input[type=text], #payment input[type=email], #payment input[type=tel], #payment select, #payment textarea { font-size: 1rem !important; } .woocommerce-breadcrumb, .woocommerce-info, .create-account { diff --git a/functions.php b/functions.php index b3df3f3..e029a88 100644 --- a/functions.php +++ b/functions.php @@ -485,4 +485,5 @@ function mountpleasant_shop_order_button_text() return 'Make Payment'; } add_filter('woocommerce_order_button_text', 'mountpleasant_shop_order_button_text'); +add_filter( 'gform_tabindex', '__return_false' ); ?> diff --git a/scss/plugins/_woocommerce.scss b/scss/plugins/_woocommerce.scss index bf32728..11ff18a 100644 --- a/scss/plugins/_woocommerce.scss +++ b/scss/plugins/_woocommerce.scss @@ -1,6 +1,7 @@ /* for mountpleasant */ -#content-wrapper div.woocommerce #customer_details { - input[type=text], input[type=email], select, textarea { +#content-wrapper div.woocommerce #customer_details, +#payment { + input[type=text], input[type=email], input[type=tel], select, textarea { font-size: 1rem !important; } }