localize library cdn, remove approve button from transaction page, fix all fitur running datatable as well, fixing sortable datatable using new cdn, fix modal approve, add note to receiver mutations
This commit is contained in:
@@ -48,6 +48,55 @@
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
@section('styles')
|
||||
<style>
|
||||
/* DataTables Sorting Icons */
|
||||
table.dataTable thead .sorting:before,
|
||||
table.dataTable thead .sorting:after,
|
||||
table.dataTable thead .sorting_asc:before,
|
||||
table.dataTable thead .sorting_asc:after,
|
||||
table.dataTable thead .sorting_desc:before,
|
||||
table.dataTable thead .sorting_desc:after {
|
||||
font-family: 'Font Awesome 5 Free';
|
||||
font-weight: 900;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
table.dataTable thead .sorting:before {
|
||||
content: "\f0dc";
|
||||
}
|
||||
|
||||
table.dataTable thead .sorting_asc:before {
|
||||
content: "\f0de";
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
table.dataTable thead .sorting_desc:before {
|
||||
content: "\f0dd";
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
table.dataTable thead .sorting:after,
|
||||
table.dataTable thead .sorting_asc:after,
|
||||
table.dataTable thead .sorting_desc:after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Ensure column headers are clickable */
|
||||
table.dataTable thead th {
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
table.dataTable thead th.sorting,
|
||||
table.dataTable thead th.sorting_asc,
|
||||
table.dataTable thead th.sorting_desc {
|
||||
cursor: pointer;
|
||||
}
|
||||
</style>
|
||||
@endsection
|
||||
|
||||
@section('javascripts')
|
||||
<script src="{{ mix('js/warehouse_management/mutations/index.js') }}"></script>
|
||||
@endsection
|
||||
Reference in New Issue
Block a user