1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 21:22:58 +01:00
invoiceninja/resources/sass/components/datatables.scss
Benjamin Beganović 8f4fa5e80d
Client portal improvements (#3607)
* Remove Html\Builder dependency from controllers

* Remove: yajra/laravel-datatables-html

- yajra/laravel-datatables-oracle as main non-dev dependency

* Added sorting to tables
2020-04-09 12:18:07 +10:00

38 lines
709 B
SCSS
Vendored

.dataTables_wrapper.no-footer {
@apply bg-gray-50 #{!important};
}
.dataTables_wrapper select,
.dataTables_wrapper .dataTables_filter input {
@apply text-gray-700 px-4 py-2 #{!important};
}
.dataTables_length {
@apply p-3 #{!important};
}
.dataTables_filter {
@apply p-3 #{!important};
input {
@apply items-center border border-gray-300 rounded px-4 text-sm py-1 #{!important};
}
}
table.dataTable thead th,
table.dataTable thead td {
@apply border-b border-gray-200 #{!important};
}
.dataTables_info {
@apply p-3 text-sm #{!important};
}
.dataTables_paginate {
@apply text-sm #{!important};
}
.dataTable.no-footer {
@apply border-none #{!important};
}