mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
ab8b05dd56
* Install livewire/livewire * Table improvements - Cleanup of InvoiceController - Added Livewire package - New Livewire component (InvoicesTable) - New WithSorting trait - Removed rendering invoices from index.blade.php - Removed Yaryabox/Datatables references in InvoiceController * Refactor: Recurring invoices * payments table & sorting improvements * payment methods table * quotes table * credits table * Add turbolinks
42 lines
1.0 KiB
SCSS
Vendored
42 lines
1.0 KiB
SCSS
Vendored
/* purgecss start ignore */
|
|
@tailwind base;
|
|
|
|
// ..
|
|
@tailwind components;
|
|
|
|
@import 'components/buttons';
|
|
@import 'components/validation';
|
|
@import 'components/inputs';
|
|
@import 'components/alerts';
|
|
@import 'components/badge';
|
|
@import 'components/datatables';
|
|
|
|
.pagination {
|
|
@apply flex items-center #{!important};
|
|
|
|
.page-link {
|
|
@apply -mt-px border-t-2 border-transparent pt-4 px-4 inline-flex items-center text-sm leading-5 font-medium text-gray-500 transition ease-in-out duration-150 cursor-pointer #{!important};
|
|
}
|
|
|
|
.page-link:hover {
|
|
@apply text-gray-700 border-gray-300 #{!important};
|
|
}
|
|
|
|
.page-link:focus {
|
|
@apply outline-none text-gray-700 border-gray-400;
|
|
}
|
|
|
|
.active > span {
|
|
@apply text-blue-600 border-blue-600 #{!important};
|
|
}
|
|
|
|
// hover:text-gray-700 hover:border-gray-300 focus:outline-none focus:text-gray-700 focus:border-gray-400 transition ease-in-out duration-150
|
|
}
|
|
|
|
.active-page {
|
|
@apply bg-blue-900 #{!important};
|
|
}
|
|
|
|
/* purgecss end ignore */
|
|
@tailwind utilities;
|