Browse Source

Font-size total des produits augmentée

prodstable
Guillaume Bourgeois 6 years ago
parent
commit
2f0309abdd
3 changed files with 15 additions and 5 deletions
  1. +1
    -1
      producer/views/order/order.php
  2. +8
    -4
      producer/web/css/screen.css
  3. +6
    -0
      producer/web/sass/order/_order.scss

+ 1
- 1
producer/views/order/order.php View File

{{ formatPrice(product.price * product.quantity_form) }} {{ formatPrice(product.price * product.quantity_form) }}
</td> </td>
</tr> </tr>
<tr>
<tr class="total">
<td colspan="3"></td> <td colspan="3"></td>
<td class="price-total">{{ priceTotal() }}</td> <td class="price-total">{{ priceTotal() }}</td>
</tr> </tr>

+ 8
- 4
producer/web/css/screen.css View File

.order-order #app-order-order table#products .td-quantity input.quantity { .order-order #app-order-order table#products .td-quantity input.quantity {
text-align: center; text-align: center;
} }
/* line 213, ../sass/order/_order.scss */
/* line 212, ../sass/order/_order.scss */
.order-order #app-order-order table#products tr.total .price-total {
font-size: 23px;
}
/* line 219, ../sass/order/_order.scss */
.order-order #app-order-order #content-step-payment .credit { .order-order #app-order-order #content-step-payment .credit {
margin-top: 20px; margin-top: 20px;
} }
/* line 216, ../sass/order/_order.scss */
/* line 222, ../sass/order/_order.scss */
.order-order #app-order-order #content-step-payment .credit .info { .order-order #app-order-order #content-step-payment .credit .info {
margin-left: 20px; margin-left: 20px;
color: gray; color: gray;
} }
/* line 223, ../sass/order/_order.scss */
/* line 229, ../sass/order/_order.scss */
.order-order #app-order-order #infos { .order-order #app-order-order #infos {
margin-top: 30px; margin-top: 30px;
} }
/* line 225, ../sass/order/_order.scss */
/* line 231, ../sass/order/_order.scss */
.order-order #app-order-order #infos .panel-body { .order-order #app-order-order #infos .panel-body {
padding-top: 0px; padding-top: 0px;
white-space: pre-line; white-space: pre-line;

+ 6
- 0
producer/web/sass/order/_order.scss View File

text-align: center ; text-align: center ;
} }
} }
tr.total {
.price-total {
font-size: 23px ;
}
}
} }
#content-step-payment { #content-step-payment {

Loading…
Cancel
Save