app/template/default/Block/Sp/Item/lm_item_size_table.twig line 1

Open in your IDE?
  1. <style>
  2.     p.size_table_caption {
  3.         background: none;
  4.         border: none;
  5.         font-weight: bold;
  6.         width: 95%;
  7.         margin: 0 auto;
  8.     }
  9.     p.size_table_caption:before {
  10.         content: '⌵';
  11.     }
  12. </style>
  13. {% if goods.isGoodsSetPurchase %}
  14.     {% for child in item.goods.childrenAsGoodsSetPurchase %}
  15.         {{ showSizeTable(child.goodsChild) | raw }}
  16.     {% endfor %}
  17. {% else %}
  18.     {{ showSizeTable(goods) | raw }}
  19. {% endif %}