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.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. @import '../../../../vendor/filament/filament/resources/css/theme.css';
  2. @config './tailwind.config.js';
  3. .fi-body {
  4. position: relative;
  5. background-color: #E8E9EB;
  6. z-index: 1;
  7. }
  8. .fi-body::before {
  9. content: '';
  10. position: fixed;
  11. top: 0;
  12. left: 0;
  13. width: 100%;
  14. height: 100%;
  15. background-image: linear-gradient(99.6deg,
  16. rgba(232, 233, 235, 1) 10.6%,
  17. rgba(240, 241, 243, 1) 32.9%,
  18. rgba(248, 249, 251, 0.7) 50%,
  19. rgba(240, 241, 243, 1) 67.1%,
  20. rgba(232, 233, 235, 1) 83.4%);
  21. pointer-events: none;
  22. z-index: -1;
  23. }
  24. :is(.dark .fi-body) {
  25. position: relative;
  26. background-color: rgb(3, 7, 18);
  27. z-index: 1;
  28. }
  29. :is(.dark .fi-body)::before {
  30. content: '';
  31. position: fixed;
  32. top: 0;
  33. right: 0;
  34. background-image: radial-gradient(
  35. ellipse at top right,
  36. rgba(var(--primary-950), 1) 0%,
  37. rgba(var(--primary-950), 0.9) 15%,
  38. rgba(var(--primary-900), 0.7) 30%,
  39. rgba(var(--primary-900), 0.5) 45%,
  40. rgba(var(--primary-950), 0.3) 60%,
  41. rgba(var(--primary-950), 0.1) 75%,
  42. rgba(3, 7, 18, 0) 100%
  43. );
  44. width: 100%;
  45. height: 100%;
  46. pointer-events: none;
  47. z-index: -1;
  48. }
  49. .fi-topbar > nav, .fi-sidebar-header {
  50. @apply bg-transparent ring-0 shadow-none !important;
  51. transition: background-color 0.3s, top 0.3s;
  52. }
  53. .fi-topbar > nav.topbar-hovered, .fi-sidebar-header.topbar-hovered {
  54. background-color: rgba(255, 255, 255, 0.75) !important;
  55. }
  56. :is(.dark .fi-topbar > nav.topbar-hovered, .dark .fi-sidebar-header.topbar-hovered) {
  57. background-color: rgba(10, 16, 33, 0.75) !important;
  58. }
  59. .fi-topbar > nav.topbar-scrolled, .fi-sidebar-header.topbar-scrolled {
  60. background-color: rgba(255, 255, 255, 0.5) !important;
  61. }
  62. :is(.dark .fi-topbar > nav.topbar-scrolled, .dark .fi-sidebar-header.topbar-scrolled) {
  63. background-color: rgba(10, 16, 33, 0.5) !important;
  64. }