Add refresh button to admin > video list (#4753)
* feat(client/video-list): add refresh btn * CSS styling Co-authored-by: Chocobozzz <me@florianbigard.com>
This commit is contained in:
parent
a2caee9f51
commit
038e1f3de5
|
@ -21,8 +21,12 @@
|
|||
</my-action-dropdown>
|
||||
</div>
|
||||
|
||||
<div class="ml-auto">
|
||||
<div class="ml-auto right-form">
|
||||
<my-advanced-input-filter [filters]="inputFilters" (search)="onSearch($event)"></my-advanced-input-filter>
|
||||
|
||||
<div class="button-filter-block">
|
||||
<my-button i18n-label label="Refresh" icon="refresh" (click)="reloadData()"></my-button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
|
|
@ -19,3 +19,12 @@ my-embed {
|
|||
.loading {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.right-form {
|
||||
display: flex;
|
||||
|
||||
> *:not(:last-child) {
|
||||
@include margin-right(10px);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue