123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- @media only screen and (max-width: 768px) {
- table.shop_table_responsive {
- thead {
- display: none;
- }
- tbody {
- tr:first-child {
- td:first-child {
- border-top: 0;
- }
- }
- th {
- display: none;
- }
- }
- tr {
- display: block;
- td {
- display: block;
- text-align: right !important; // Important to overwrite order status inline styling
- &.order-actions {
- text-align: left !important; // This must always align left on handheld
- }
- &::before {
- content: attr(data-title) ': ';
- font-weight: 700;
- float: left;
- }
- &.product-remove,
- &.actions {
- &::before {
- display: none;
- }
- }
- }
- &:nth-child( 2n ) {
- td {
- background-color: rgba(0, 0, 0, 0.025);
- }
- }
- }
- }
- table.my_account_orders {
- tr {
- td {
- &.order-actions {
- text-align: left;
- &::before {
- display: none;
- }
- .button {
- float: none;
- margin: 0.125em 0.25em 0.125em 0;
- }
- }
- }
- }
- }
- /**
- * General layout
- */
- .col2-set {
- .col-1,
- .col-2 {
- float: none;
- width: 100%;
- }
- }
- /**
- * Products
- */
- .woocommerce-page {
- &, &[class*='columns-'] {
- ul.products {
- li.product {
- width: 48%;
- float: left;
- clear: both;
- margin: 0 0 2.992em;
- &:nth-child( 2n ) {
- float: right;
- clear: none !important; // This should never clear.
- }
- }
- }
- }
- }
- /**
- * Product Details
- */
- div.product,
- #content div.product {
- div.images,
- div.summary {
- float: none;
- width: 100%;
- }
- }
- /**
- * Cart
- */
- table.cart,
- #content table.cart {
- .product-thumbnail {
- display: none;
- }
- td.actions {
- text-align: left;
- .coupon {
- float: none;
- @include clearfix();
- padding-bottom: 0.5em;
- input,
- .button,
- .input-text {
- width: 48%;
- box-sizing: border-box;
- }
- .input-text + .button,
- .button.alt {
- float: right;
- }
- }
- .button {
- display: block;
- width: 100%;
- }
- }
- }
- .cart-collaterals {
- .cart_totals,
- .shipping_calculator,
- .cross-sells {
- width: 100%;
- float: none;
- text-align: left;
- }
- }
- /**
- * Checkout
- */
- .woocommerce-checkout {
- form.login {
- .form-row {
- width: 100%;
- float: none;
- }
- }
- }
- #payment {
- .terms {
- text-align: left;
- padding: 0;
- }
- #place_order {
- float: none;
- width: 100%;
- box-sizing: border-box;
- margin-bottom: 1em;
- }
- }
- /**
- * Account
- */
- .lost_reset_password {
- .form-row-first,
- .form-row-last {
- width: 100%;
- float: none;
- margin-right: 0;
- }
- }
- .woocommerce-account {
- .woocommerce-MyAccount-navigation,
- .woocommerce-MyAccount-content {
- float: none;
- width: 100%;
- }
- }
- }
|