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 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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-sidebar-nav {
  12. scrollbar-width: thin;
  13. }
  14. .fi-ta-empty-state-icon-ctn {
  15. @apply bg-platinum;
  16. }
  17. .fi-dropdown-panel {
  18. @apply divide-gray-200/80;
  19. }
  20. .fi-badge {
  21. display: inline-flex;
  22. }
  23. /* End Alignment sortable column enhancement */
  24. .fi-ta-header-cell:has(button.justify-end > svg.fi-ta-header-cell-sort-icon) {
  25. padding-right: 0;
  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. }
  48. .fi-ta-table:has(.budget-items-relation-manager) {
  49. .fi-ta-row {
  50. @apply divide-x divide-gray-200 dark:divide-gray-700;
  51. }
  52. .fi-ta-summary-row-heading {
  53. @apply px-3 py-3 !important;
  54. }
  55. .fi-ta-text-summary {
  56. @apply px-3 py-3 !important;
  57. > span {
  58. @apply font-medium text-gray-950 dark:text-white;
  59. }
  60. }
  61. .fi-ta-text {
  62. @apply px-3 py-0 !important;
  63. }
  64. .fi-ta-text-input {
  65. @apply px-0 py-0 !important;
  66. }
  67. .fi-ta-icon {
  68. @apply px-3 py-0 !important;
  69. }
  70. .fi-ta-text-input {
  71. .fi-input-wrp,
  72. .fi-input {
  73. @apply ring-0 bg-transparent shadow-none rounded-none !important;
  74. }
  75. }
  76. .fi-ta-cell:focus-within {
  77. outline: 2px solid #2563eb;
  78. outline-offset: -2px;
  79. z-index: 1;
  80. }
  81. .fi-ta-col-wrp button:focus {
  82. outline: none !important;
  83. box-shadow: none !important;
  84. }
  85. }
  86. .doc-template-container {
  87. color: initial;
  88. }
  89. .doc-template-container .overflow-x-auto,
  90. .doc-template-paper {
  91. scrollbar-width: thin;
  92. }
  93. .doc-template-paper.preview {
  94. zoom: 0.5;
  95. }
  96. @media (min-width: 1024px) {
  97. .doc-template-paper.preview {
  98. zoom: 0.85;
  99. }
  100. }
  101. .doc-template-paper:not(.preview) {
  102. zoom: 0.65;
  103. }
  104. @media (min-width: 1024px) {
  105. .doc-template-paper:not(.preview) {
  106. zoom: 1;
  107. }
  108. }