You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

theme.css 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. @import '/vendor/filament/filament/resources/css/theme.css';
  2. @import '/vendor/awcodes/filament-table-repeater/resources/css/plugin.css';
  3. @import 'custom-data-table.css';
  4. @import 'custom-section.css';
  5. @import 'form-fields.css';
  6. @import 'modal.css';
  7. @import 'report-card.css';
  8. @import 'tooltip.css';
  9. @import 'top-navigation.css';
  10. @config 'tailwind.config.js';
  11. .fi-ta-empty-state-icon-ctn {
  12. @apply bg-platinum;
  13. }
  14. .fi-dropdown-panel {
  15. @apply divide-gray-200/80;
  16. }
  17. .fi-badge {
  18. display: inline-flex;
  19. }
  20. /* End Alignment sortable column enhancement */
  21. .fi-ta-header-cell:has(button.justify-end > svg.fi-ta-header-cell-sort-icon) {
  22. padding-right: 0.25rem;
  23. }
  24. .fi-ta-cell:has(.fi-ta-col-wrp > .justify-end) {
  25. padding-right: 1rem;
  26. }
  27. :not(.dark) .fi-body {
  28. position: relative;
  29. background-color: #E8E9EB;
  30. z-index: 1;
  31. }
  32. :not(.dark) .fi-body::before {
  33. content: '';
  34. position: fixed;
  35. top: 0;
  36. left: 0;
  37. width: 100%;
  38. height: 100%;
  39. background-image: linear-gradient(99.6deg,
  40. rgba(232, 233, 235, 1) 10.6%,
  41. rgba(240, 241, 243, 1) 32.9%,
  42. rgba(248, 249, 251, 0.7) 50%,
  43. rgba(240, 241, 243, 1) 67.1%,
  44. rgba(232, 233, 235, 1) 83.4%);
  45. pointer-events: none;
  46. z-index: -1;
  47. }