summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Light <samlight1994@gmail.com>2025-04-02 23:18:26 +0100
committerSam Light <samlight1994@gmail.com>2025-04-02 23:18:26 +0100
commit0a7e289c3c30e76d53548d496846b7582ade716f (patch)
treeddfb3ebe5b47d186c258457e0119189a70f3b981
parent40607777a5752523f6750312675db09665726a5f (diff)
Styling
-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))