1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/resources/sass/components/datatables.scss
Benjamin Beganović b285067adb
Client portal improvements (1/2) (#3649)
- Fix for building dependencies
- Fixes for data table sorting
- Improved styling of tables
- Improved buttons padding, position
2020-04-21 08:26:25 +10:00

45 lines
810 B
SCSS
Vendored

.dataTables_length {
@screen sm {
@apply my-5 #{!important};
}
@screen lg {
@apply my-4 #{!important};
}
select {
@apply bg-white input py-2 mx-2 px-2 #{!important};
}
}
.dataTables_filter {
@apply mb-4;
input {
@apply form-input input #{!important};
}
@screen lg {
@apply -mt-12 #{!important};
}
}
.dataTables_paginate {
@apply pb-6 pt-2 #{!important};
.paginate_button {
@apply button bg-white border border-gray-300 text-sm leading-4 font-medium rounded text-gray-700 mr-1 py-2 cursor-pointer #{!important};
}
.current {
@apply bg-blue-600 text-white #{!important};
}
}
.dataTables_info {
@apply text-sm #{!important};
}
.dataTables_empty {
@apply py-4 #{!important};
}