Issue #2407733 by mortendk, rteijeiro, sivaji@knackforge.com: Remove classes from system templates i*.html.twig
parent
0bc927f20a
commit
a00b10d9d4
|
@ -12,9 +12,4 @@
|
||||||
* @ingroup themeable
|
* @ingroup themeable
|
||||||
*/
|
*/
|
||||||
#}
|
#}
|
||||||
{%
|
<img{{ attributes }} />
|
||||||
set classes = [
|
|
||||||
style_name ? 'image-style-' ~ style_name|clean_class,
|
|
||||||
]
|
|
||||||
%}
|
|
||||||
<img{{ attributes.addClass(classes) }} />
|
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
*/
|
*/
|
||||||
#}
|
#}
|
||||||
{%- if items or empty -%}
|
{%- if items or empty -%}
|
||||||
<div class="item-list">
|
<div>
|
||||||
{%- if title is not empty -%}
|
{%- if title is not empty -%}
|
||||||
<h3>{{ title }}</h3>
|
<h3>{{ title }}</h3>
|
||||||
{%- endif -%}
|
{%- endif -%}
|
||||||
|
|
|
@ -1,20 +0,0 @@
|
||||||
{#
|
|
||||||
/**
|
|
||||||
* @file
|
|
||||||
* Default theme implementation for a set of indentation divs.
|
|
||||||
*
|
|
||||||
* These <div> tags are used for drag and drop tables.
|
|
||||||
*
|
|
||||||
* Available variables:
|
|
||||||
* - size: Optional. The number of indentations to create.
|
|
||||||
*
|
|
||||||
* @ingroup themeable
|
|
||||||
*/
|
|
||||||
#}
|
|
||||||
<!--
|
|
||||||
THIS FILE IS NOT USED AND IS HERE AS A STARTING POINT FOR CUSTOMIZATION ONLY.
|
|
||||||
See https://api.drupal.org/api/function/theme_indentation/8 for details.
|
|
||||||
After copying this file to your theme's folder and customizing it, remove this
|
|
||||||
HTML comment.
|
|
||||||
-->
|
|
||||||
{% for i in 1..size if size > 0 %}<div class="indentation"> </div>{% endfor %}
|
|
Loading…
Reference in New Issue