|
15 | 15 | <ul class="details__list"> |
16 | 16 | {block name='product_manufacturer'} |
17 | 17 | {if isset($product_manufacturer->id)} |
18 | | - <li class="details__item"> |
| 18 | + <li class="details__item details__item--manufacturer"> |
19 | 19 | <div class="details__left"> |
20 | 20 | <span class="details__title">{l s='Brand' d='Shop.Theme.Catalog'}</span> |
21 | 21 | </div> |
|
42 | 42 |
|
43 | 43 | {block name='product_reference'} |
44 | 44 | {if !empty($product.reference_to_display)} |
45 | | - <li class="details__item"> |
| 45 | + <li class="details__item details__item--reference"> |
46 | 46 | <div class="details__left"> |
47 | 47 | <span class="details__title">{l s='Reference' d='Shop.Theme.Catalog'}</span> |
48 | 48 | </div> |
|
56 | 56 |
|
57 | 57 | {block name='product_quantities'} |
58 | 58 | {if $product.show_quantities} |
59 | | - <li class="details__item"> |
| 59 | + <li class="details__item details__item--quantities"> |
60 | 60 | <div class="details__left"> |
61 | 61 | <span class="details__title">{l s='In stock' d='Shop.Theme.Catalog'}</span> |
62 | 62 | </div> |
|
70 | 70 |
|
71 | 71 | {block name='product_availability_date'} |
72 | 72 | {if $product.availability_date} |
73 | | - <li class="details__item"> |
| 73 | + <li class="details__item details__item--availability-date"> |
74 | 74 | <div class="details__left"> |
75 | 75 | <span class="details__title">{l s='Availability date' d='Shop.Theme.Catalog'}</span> |
76 | 76 | </div> |
|
85 | 85 | {* if product have specific references, a table will be added to product details section *} |
86 | 86 | {block name='product_condition'} |
87 | 87 | {if $product.condition} |
88 | | - <li class="details__item"> |
| 88 | + <li class="details__item details__item--condition"> |
89 | 89 | <div class="details__left"> |
90 | 90 | <span class="details__title">{l s='Condition' d='Shop.Theme.Catalog'}</span> |
91 | 91 | </div> |
|
100 | 100 | {block name='product_specific_references'} |
101 | 101 | {if !empty($product.specific_references)} |
102 | 102 | {foreach from=$product.specific_references item=reference key=key} |
103 | | - <li class="details__item"> |
| 103 | + <li class="details__item details__item--{$key|classname}"> |
104 | 104 | <div class="details__left"> |
105 | 105 | <span class="details__title">{$key}</span> |
106 | 106 | </div> |
|
130 | 130 | <div class="accordion-body"> |
131 | 131 | <ul class="details__list"> |
132 | 132 | {foreach from=$product.grouped_features item=feature} |
133 | | - <li class="details__item"> |
| 133 | + <li class="details__item details__item--feature"> |
134 | 134 | <div class="details__left"> |
135 | 135 | <span class="details__title">{$feature.name}</span> |
136 | 136 | </div> |
|
0 commit comments