]> BookStack Code Mirror - bookstack/blob - resources/views/settings/sort-rules/parts/operation.blade.php
Sorting: Renamed sort set to sort rule
[bookstack] / resources / views / settings / sort-rules / parts / operation.blade.php
1 <li data-id="{{ $operation->value }}"
2     class="scroll-box-item items-center">
3     <div class="handle px-s">@icon('grip')</div>
4     <div class="text-small">{{ $operation->getLabel() }}</div>
5     <div class="buttons flex-container-row items-center ml-auto px-xxs py-xxs">
6         <button type="button" data-action="move_up" class="icon-button p-xxs"
7                 title="{{ trans('entities.books_sort_move_up') }}">@icon('chevron-up')</button>
8         <button type="button" data-action="move_down" class="icon-button p-xxs"
9                 title="{{ trans('entities.books_sort_move_down') }}">@icon('chevron-down')</button>
10         <button type="button" data-action="remove" class="icon-button p-xxs"
11                 title="{{ trans('common.remove') }}">@icon('remove')</button>
12         <button type="button" data-action="add" class="icon-button p-xxs"
13                 title="{{ trans('common.add') }}">@icon('add-small')</button>
14     </div>
15 </li>