table hover and striped

This commit is contained in:
Stef Kariotidis 2016-11-19 13:13:31 +02:00
parent 89bb11b0ea
commit 04f8a49195
3 changed files with 3 additions and 3 deletions

View File

@ -28,7 +28,7 @@ do_action( 'woocommerce_before_cart' ); ?>
<?php do_action( 'woocommerce_before_cart_table' ); ?>
<table class="shop_table shop_table_responsive cart" cellspacing="0">
<table class="shop_table shop_table_responsive cart table-hover table-striped" cellspacing="0">
<thead>
<tr>
<th class="product-remove">&nbsp;</th>

View File

@ -29,7 +29,7 @@ if ( $customer_orders ) : ?>
<h2><?php echo apply_filters( 'woocommerce_my_account_my_orders_title', __( 'Recent Orders', 'woocommerce' ) ); ?></h2>
<table class="shop_table shop_table_responsive my_account_orders">
<table class="shop_table shop_table_responsive my_account_orders table-hover table-striped">
<thead>
<tr>

View File

@ -26,7 +26,7 @@ do_action( 'woocommerce_before_account_orders', $has_orders ); ?>
<?php if ( $has_orders ) : ?>
<table class="woocommerce-MyAccount-orders shop_table shop_table_responsive my_account_orders account-orders-table">
<table class="woocommerce-MyAccount-orders shop_table shop_table_responsive my_account_orders account-orders-table table-hover table-striped">
<thead>
<tr>
<?php foreach ( wc_get_account_orders_columns() as $column_id => $column_name ) : ?>