Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IBX-5699: "Create company" form shouldnt be available if there are no customer groups #781

Merged
merged 1 commit into from
May 11, 2023
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
7 changes: 7 additions & 0 deletions src/bundle/Resources/public/scss/_tables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,13 @@
margin-bottom: calculateRem(16px);
}

&__empty-table-extra-actions {
.ibexa-icon {
transform: rotate(180deg);
margin-right: calculateRem(8px);
}
}

&__header-cell {
.table & {
font-size: $ibexa-text-font-size-small;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<div class="ibexa-table__empty-table-extra-actions">
{% block extra_action_link %}
<a href="{{ url }}" class="ibexa-table__empty-table-extra-actions-link">
{% block extra_action_content %}
<svg class="ibexa-icon ibexa-icon--small-medium">
<use xlink:href="{{ ibexa_icon_path('back') }}"></use>
</svg>
<span class="ibexa-table__empty-table-extra-actions-label">{{ label }}</span>
{% endblock %}
</a>
{% endblock %}
</div>