Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
class="btn ibexa-btn ibexa-btn--secondary ibexa-btn--small ibexa-btn--add-matrix-entry"
{{ readonly ? 'disabled' }}
>
<svg class="ibexa-icon ibexa-icon--small ibexa-icon--edit">
<svg class="ibexa-icon ibexa-icon--small-medium ibexa-icon--edit">
<use xlink:href="{{ ibexa_icon_path('create') }}"></use>
</svg>
<span class="ibexa-btn__label">{{ 'ibexa_matrix.add'|trans|desc('Add') }}</span>
Expand All @@ -47,7 +47,7 @@
class="btn ibexa-btn ibexa-btn--ghost ibexa-btn--small ibexa-btn--bulk-remove-matrix"
{{ readonly ? 'disabled' }}
>
<svg class="ibexa-icon ibexa-icon--small ibexa-icon--edit">
<svg class="ibexa-icon ibexa-icon--small-medium ibexa-icon--edit">
<use xlink:href="{{ ibexa_icon_path('trash') }}"></use>
</svg>
<span class="ibexa-btn__label">{{ 'ibexa_matrix.remove'|trans|desc('Delete') }}</span>
Expand Down Expand Up @@ -77,7 +77,7 @@
class="btn ibexa-btn ibexa-btn--ghost ibexa-btn--no-text ibexa-btn--remove-matrix-entry"
{{ readonly ? 'disabled' }}
>
<svg class="ibexa-icon ibexa-icon--small ibexa-icon--edit">
<svg class="ibexa-icon ibexa-icon--small-medium ibexa-icon--edit">
<use xlink:href="{{ ibexa_icon_path('trash') }}"></use>
</svg>
</button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@
{% trans_default_domain 'ibexa_matrix_fieldtype' %}
{% block actions %}
<button type="button" class="btn ibexa-btn ibexa-btn--tertiary ibexa-btn--small ibexa-btn--add-column">
<svg class="ibexa-icon ibexa-icon--small ibexa-icon--create">
<svg class="ibexa-icon ibexa-icon--small-medium ibexa-icon--create">
<use xlink:href="{{ ibexa_icon_path('create') }}"></use>
</svg>
<span class="ibexa-btn__label">
{{ 'field.column.add_new'|trans|desc('Add') }}
</span>
</button>
<button type="button" class="btn ibexa-btn ibexa-btn--ghost ibexa-btn--small ibexa-btn--remove-column">
<svg class="ibexa-icon ibexa-icon--small ibexa-icon--trash">
<svg class="ibexa-icon ibexa-icon--small-medium ibexa-icon--trash">
<use xlink:href="{{ ibexa_icon_path('trash') }}"></use>
</svg>
<span class="ibexa-btn__label">
Expand Down
Loading