Migrate to laravel ai sdk (#181)
Also * upgrade to livewire 4 * replace rappsoft tables with filament
This commit is contained in:
+64
-1
@@ -1,6 +1,7 @@
|
||||
@import url("https://fonts.bunny.net/css?family=Inter:400,500,600&display=swap");
|
||||
|
||||
@import "tailwindcss";
|
||||
@import 'tailwindcss';
|
||||
|
||||
@plugin "@tailwindcss/typography";
|
||||
|
||||
@theme {
|
||||
@@ -89,10 +90,72 @@
|
||||
--noise: 0;
|
||||
}
|
||||
|
||||
/* Required by all components */
|
||||
@import '../../vendor/filament/support/resources/css/index.css';
|
||||
|
||||
/* Required by actions and tables */
|
||||
@import '../../vendor/filament/actions/resources/css/index.css';
|
||||
|
||||
/* Required by actions, forms and tables */
|
||||
@import '../../vendor/filament/forms/resources/css/index.css';
|
||||
|
||||
/* Required by actions, infolists, forms, schemas and tables */
|
||||
@import '../../vendor/filament/schemas/resources/css/index.css';
|
||||
|
||||
/* Required by tables */
|
||||
@import '../../vendor/filament/tables/resources/css/index.css';
|
||||
|
||||
|
||||
@source "../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php";
|
||||
@source "../../storage/framework/views/*.php";
|
||||
@source "../**/*.blade.php";
|
||||
|
||||
/* table overrides */
|
||||
.fi-ta-ctn {
|
||||
@apply bg-transparent rounded-none border-none ring-0 shadow-none;
|
||||
|
||||
& table.fi-ta-table thead tr {
|
||||
@apply bg-transparent;
|
||||
}
|
||||
|
||||
& table.fi-ta-table thead tr th.fi-ta-header-cell {
|
||||
color: color-mix(in oklab,var(--color-base-content)60%,transparent) !important;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: .05rem;
|
||||
font-size: .725rem;
|
||||
font-weight: normal;
|
||||
|
||||
& .fi-icon {
|
||||
color: color-mix(in oklab,var(--color-base-content)60%,transparent) !important;
|
||||
}
|
||||
}
|
||||
|
||||
& table.fi-ta-table .fi-clickable:hover {
|
||||
background-color: color-mix(in oklab,var(--color-base-200)50%,transparent) !important;
|
||||
}
|
||||
& [data-theme=dark] table.fi-ta-table .fi-clickable:hover {
|
||||
background-color: var(--color-base-100);
|
||||
}
|
||||
|
||||
& ol.fi-pagination-items {
|
||||
& .fi-pagination-item-label {
|
||||
color: var(--color-base-content);
|
||||
}
|
||||
}
|
||||
|
||||
& td.fi-ta-cell div.fi-ta-text {
|
||||
color: var(--color-base-content);
|
||||
}
|
||||
|
||||
& table.fi-ta-table.fi-ta-table-stacked-on-mobile td {
|
||||
padding-block: 0;
|
||||
}
|
||||
|
||||
& .fi-ta-header-toolbar {
|
||||
border-bottom-width: 0;
|
||||
}
|
||||
}
|
||||
|
||||
/* Tool tip for apex charts */
|
||||
[data-theme=dark] .apexcharts-tooltip-title {
|
||||
background: #292933 !important;
|
||||
|
||||
Reference in New Issue
Block a user