custom/plugins/BlurElysiumSlider/src/Resources/views/storefront/component/blur-elysium-slide/media.html.twig line 1

Open in your IDE?
  1. {% block cms_element_blur_elysium_slide_css_media_query %}
  2.     {% if media.thumbnails.elements %}
  3.         
  4.         {# sort array by thumbnail width so that the media query order is correct #}
  5.         {% for thumbnail in media.thumbnails.elements|sort((a, b) => a.width <=> b.width ) %}
  6.             @media screen{% if orientation is defined %} and (orientation: {{ orientation }} ){% endif %} {% if loop.first is same as(false) %} and (min-width: {{ thumbnail.width ~ 'px' }}){% endif %} {
  7.                 [data-elysium-slide-id="{{ slideId }}"] {
  8.                     background-image: url( "{{ thumbnail.url }}" );
  9.                 }
  10.             }
  11.         {% endfor %}
  12.     {% else %}
  13.         {# fallback if no thumbnails are available #}
  14.         @media screen{% if orientation is defined %} and (orientation: {{ orientation }} ){% endif %} {
  15.             [data-elysium-slide-id="{{ slideId }}"] {
  16.                 background-image: url( "{{ media.url }}" );
  17.             }
  18.         }
  19.     {% endif %}
  20. {% endblock %}