updates for styles and tabindex issues
authorSteve Sutton <steve@gaslightmedia.com>
Fri, 15 Jan 2016 14:36:06 +0000 (09:36 -0500)
committerSteve Sutton <steve@gaslightmedia.com>
Fri, 15 Jan 2016 14:36:06 +0000 (09:36 -0500)
css/app.css
functions.php
scss/plugins/_woocommerce.scss

index ce2894c..b363083 100644 (file)
@@ -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 {
index b3df3f3..e029a88 100644 (file)
@@ -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' );
 ?>
index bf32728..11ff18a 100644 (file)
@@ -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;
     }
 }