summaryrefslogtreecommitdiff
path: root/resources/views/toolbar
diff options
context:
space:
mode:
Diffstat (limited to 'resources/views/toolbar')
-rw-r--r--resources/views/toolbar/column-select.blade.php2
-rw-r--r--resources/views/toolbar/page-size.blade.php2
-rw-r--r--resources/views/toolbar/search.blade.php2
-rw-r--r--resources/views/toolbar/select-filter.blade.php2
4 files changed, 4 insertions, 4 deletions
diff --git a/resources/views/toolbar/column-select.blade.php b/resources/views/toolbar/column-select.blade.php
index 6fa7474..a842577 100644
--- a/resources/views/toolbar/column-select.blade.php
+++ b/resources/views/toolbar/column-select.blade.php
@@ -1,5 +1,5 @@
<div class="dropdown">
- <button type="button" class="btn btn-outline-secondary border-secondary"
+ <button type="button" class="btn btn-outline-secondary"
data-bs-toggle="dropdown" aria-expanded="false"
data-bs-auto-close="outside">
{{ __('Columns') }}
diff --git a/resources/views/toolbar/page-size.blade.php b/resources/views/toolbar/page-size.blade.php
index cc35ff4..4505a49 100644
--- a/resources/views/toolbar/page-size.blade.php
+++ b/resources/views/toolbar/page-size.blade.php
@@ -1,4 +1,4 @@
-<select wire:model.live="pageSize" class="form-select border-secondary">
+<select wire:model.live="pageSize" class="form-select">
@foreach($pageSizes as $size)
<option value="{{ $size }}">{{ $size }}</option>
@endforeach
diff --git a/resources/views/toolbar/search.blade.php b/resources/views/toolbar/search.blade.php
index 04fd000..dae96a3 100644
--- a/resources/views/toolbar/search.blade.php
+++ b/resources/views/toolbar/search.blade.php
@@ -1,3 +1,3 @@
-<input class="form-control border-secondary" type="search"
+<input class="form-control" type="search"
wire:model.live.debounce.{{ $debounce }}="search"
placeholder="{{ __('Search') }}..." />
diff --git a/resources/views/toolbar/select-filter.blade.php b/resources/views/toolbar/select-filter.blade.php
index 13cdbc1..9810ed9 100644
--- a/resources/views/toolbar/select-filter.blade.php
+++ b/resources/views/toolbar/select-filter.blade.php
@@ -6,7 +6,7 @@
@endif
<select
id="{{ $id }}"
- class="form-control"
+ class="form-select"
wire:model.live="filters.{{ $key }}"
>
@if (!empty($placeholder))