app/Plugin/DesignTag4/Resource/template/tag_list_css.twig line 1

Open in your IDE?
  1. {# タグ #}
  2. <style>
  3.     .ec-shelfRole .ec-shelfRole__tags {
  4.         margin-top: 0;
  5.         margin-bottom: 0;
  6.         padding: 0;
  7.         padding-bottom: 16px;
  8.     }
  9.     .ec-shelfRole .ec-shelfRole__tag {
  10.         display: inline-block;
  11.         font-size: 80%;
  12.         list-style: none;
  13.         color: #525263;
  14.         border: solid 2px #d7dadd;
  15.         border-radius: 3px;
  16.         background-color: #f5f7f8;
  17.         padding: 2px 5px;
  18.     }
  19.     {% for Tag in DesignTags %}
  20.     {% if Tag.show_product_list_flg %}
  21.     .ec-shelfRole .ec-shelfRole__tag.tag_{{ Tag.id }}{
  22.     {% if Tag.text_color %}color: {{ Tag.text_color }};{% endif %}
  23.     {% if Tag.background_color %}background-color: {{ Tag.background_color }};{% endif %}
  24.     {% if Tag.border_color %}border-color: {{ Tag.border_color }};{% endif %}
  25.     }
  26.     {% endif %}
  27.     {% endfor %}
  28. </style>