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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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-input-password-revealable::-ms-reveal {
  9. display: none;
  10. }
  11. .fi-body::before {
  12. content: '';
  13. position: absolute;
  14. top: 0;
  15. left: 0;
  16. width: 100%;
  17. height: 100%;
  18. background-image:
  19. linear-gradient(99.6deg,
  20. rgba(232, 233, 235, 1) 10.6%,
  21. rgba(240, 241, 243, 1) 32.9%,
  22. rgba(248, 249, 251, 0.7) 50%,
  23. rgba(240, 241, 243, 1) 67.1%,
  24. rgba(232, 233, 235, 1) 83.4%);
  25. pointer-events: none;
  26. z-index: -1;
  27. }
  28. :is(.dark .fi-body) {
  29. position: relative;
  30. background-color: rgb(3, 7, 18);
  31. z-index: 1;
  32. }
  33. :is(.dark .fi-body)::before {
  34. content: '';
  35. position: absolute;
  36. top: 0;
  37. right: 0;
  38. background-image: radial-gradient(
  39. ellipse at top right,
  40. rgba(var(--primary-950), 1) 0%,
  41. rgba(var(--primary-950), 0.9) 15%,
  42. rgba(var(--primary-900), 0.7) 30%,
  43. rgba(var(--primary-900), 0.5) 45%,
  44. rgba(var(--primary-950), 0.3) 60%,
  45. rgba(var(--primary-950), 0.1) 75%,
  46. rgba(3,7,18,0) 100%
  47. );
  48. width: 100%;
  49. height: 100%;
  50. pointer-events: none;
  51. z-index: -1;
  52. }
  53. .fi-topbar > nav, .fi-sidebar-header {
  54. @apply bg-transparent ring-0 shadow-none !important;
  55. transition: background-color 0.3s, top 0.3s;
  56. }
  57. .fi-topbar > nav {
  58. @apply relative flex justify-center;
  59. > ul {
  60. @apply absolute -translate-x-2/4 gap-x-0 left-2/4;
  61. }
  62. > div {
  63. @apply static;
  64. }
  65. }
  66. .fi-topbar > nav.topbar-hovered, .fi-sidebar-header.topbar-hovered {
  67. background-color: rgba(255, 255, 255, 0.75) !important;
  68. }
  69. :is(.dark .fi-topbar > nav.topbar-hovered, .dark .fi-sidebar-header.topbar-hovered) {
  70. background-color: rgba(10, 16, 33, 0.75) !important;
  71. }
  72. .fi-topbar > nav.topbar-scrolled, .fi-sidebar-header.topbar-scrolled {
  73. background-color: rgba(255, 255, 255, 0.5) !important;
  74. }
  75. :is(.dark .fi-topbar > nav.topbar-scrolled, .dark .fi-sidebar-header.topbar-scrolled) {
  76. background-color: rgba(10, 16, 33, 0.5) !important;
  77. }