F
Filament2mo ago
sohail

Trash Filter Selection & Page selection have white background on Darkmode

Hi i am using filament table builder and for some reason it trash filter select and pagination select have a white background
$table->query(Organization::query())
->heading('All Organizations')
->description('You can manage your organizations here')
->searchPlaceholder('Search For Organizations')
->columns($this->column())
->actions($this->actions())
->bulkActions($this->bulkActions())
->filters([
TrashedFilter::make('trashed')
])
->headerActions([
CreateAction::make()
->label('Create Organization')
->url('/')
]);
$table->query(Organization::query())
->heading('All Organizations')
->description('You can manage your organizations here')
->searchPlaceholder('Search For Organizations')
->columns($this->column())
->actions($this->actions())
->bulkActions($this->bulkActions())
->filters([
TrashedFilter::make('trashed')
])
->headerActions([
CreateAction::make()
->label('Create Organization')
->url('/')
]);
Solution:
That is the default browser select, just add some CSS for it or make the filter select ->native(false)
Jump to solution
3 Replies
sohail
sohailOP2mo ago
Cupergaming
Cupergaming2mo ago
I thought select was always the system default, are you using light mode on your PC? if so, could you change it to dark mode and test it again? Or have you already found the cause of this issue?
Solution
Mohamed Ayaou
Mohamed Ayaou2mo ago
That is the default browser select, just add some CSS for it or make the filter select ->native(false)

Did you find this page helpful?