custom/plugins/UltraStoreSwitcher/src/Resources/views/storefront/layout/meta.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/layout/meta.html.twig' %}
  2. {% block layout_head_stylesheet %}
  3.     {{ parent() }}
  4.     {% block store_switcher_css %}
  5.     {% if shopware.config.UltraStoreSwitcher.config %} {% set UltraStoreSwitcher = shopware.config.UltraStoreSwitcher.config %} {% endif %}    
  6.     {% if UltraStoreSwitcher.activeKanal %}
  7.     <style>
  8.         
  9.     .ultra-top-bar-icon {
  10.         float: left;
  11.     }
  12.     
  13.     .ultra-top-bar-icon .icon {
  14.         height:14px;
  15.     }
  16.     
  17.     .ultra-top-bar-icon svg {
  18.         top:2px !important;
  19.     }
  20.     
  21.     .ultra-topbar-own-icon img {
  22.     height: 11px;
  23.     width: 14px;
  24.     vertical-align: inherit;
  25. }
  26. .ultra-topbar-own-icon { overflow:auto; }
  27.     
  28.     
  29.     </style>
  30.     {% endif %}
  31.     {% endblock %}
  32. {% endblock %}