Andrew Wallo 3 months ago
parent
commit
b2befe3c28

+ 1
- 1
app/Providers/Filament/CompanyPanelProvider.php View File

174
             })
174
             })
175
             ->globalSearch(false)
175
             ->globalSearch(false)
176
             ->sidebarCollapsibleOnDesktop()
176
             ->sidebarCollapsibleOnDesktop()
177
-            ->databaseNotifications()
177
+            ->databaseNotifications(isLazy: false)
178
             ->viteTheme('resources/css/filament/company/theme.css')
178
             ->viteTheme('resources/css/filament/company/theme.css')
179
             ->brandLogo(static fn () => view('components.icons.logo'))
179
             ->brandLogo(static fn () => view('components.icons.logo'))
180
             ->tenant(Company::class)
180
             ->tenant(Company::class)

+ 5
- 0
resources/css/filament/company/top-navigation.css View File

18
 :is(.dark .fi-topbar > nav.topbar-scrolled, .dark .fi-sidebar-header.topbar-scrolled) {
18
 :is(.dark .fi-topbar > nav.topbar-scrolled, .dark .fi-sidebar-header.topbar-scrolled) {
19
     @apply bg-gray-900/50 !important;
19
     @apply bg-gray-900/50 !important;
20
 }
20
 }
21
+
22
+/* Notification badge transparency */
23
+.fi-topbar .fi-icon-btn-badge-ctn {
24
+    @apply bg-transparent !important;
25
+}

Loading…
Cancel
Save