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

Change button style for listview settings #9112

Merged
Merged
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 @@ -15,21 +15,19 @@
<i class="umb-list-view-settings__list-view-icon icon-list"></i>
<div>
<div class="umb-list-view-settings__name">
{{ dataType.name }}
{{dataType.name}}
<em ng-if="!customListViewCreated">(<localize key="general_default">default</localize>)</em>
</div>
<button
type="button"
class="btn-link umb-list-view-settings__create-new"
ng-if="!customListViewCreated"
ng-click="createCustomListViewDataType()">
<button type="button"
class="btn-link umb-list-view-settings__create-new"
ng-if="!customListViewCreated"
ng-click="createCustomListViewDataType()">
<localize key="editcontenttype_createListView">Create custom list view</localize>
</button>
<button
type="button"
class="btn-link umb-list-view-settings__remove-new"
ng-if="customListViewCreated"
ng-click="removeCustomListDataType()">
<button type="button"
class="btn-link umb-list-view-settings__remove-new"
ng-if="customListViewCreated"
ng-click="removeCustomListDataType()">
<localize key="editcontenttype_removeListView">Remove custom list view</localize>
</button>
</div>
Expand All @@ -39,7 +37,7 @@
<div class="umb-group-builder__property-actions">
<div class="umb-group-builder__property-action">
<button type="button"
class="btn-reset"
class="btn-icon"
ng-click="showSettingsOverlay()"
aria-label="Edit"
localize="title"
Expand Down