Skip to content

Commit

Permalink
Test code
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanilblank committed Feb 7, 2025
1 parent 352229e commit a9da7ad
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion app/Http/Middleware/LogoutIfInactive.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class LogoutIfInactive
* Handle an incoming request.
*
* @param Request $request
* @param \Closure(Request): (Response|RedirectResponse) $next
* @param Closure(Request): (Response|RedirectResponse) $next
* @return mixed
*/
public function handle(Request $request, Closure $next): mixed
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Middleware/RedirectIfAuthenticated.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class RedirectIfAuthenticated
* Handle an incoming request.
*
* @param Request $request
* @param \Closure(\Illuminate\Http\Request): (\Illuminate\Http\Response|\Illuminate\Http\RedirectResponse) $next
* @param Closure(Request): (\Illuminate\Http\Response|\Illuminate\Http\RedirectResponse) $next
* @param string|null ...$guards
* @return \Illuminate\Http\Response|\Illuminate\Http\RedirectResponse
*/
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Middleware/SanitizeRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class SanitizeRequest
* Handle an incoming request.
*
* @param Request $request
* @param \Closure(\Illuminate\Http\Request): (\Illuminate\Http\Response|\Illuminate\Http\RedirectResponse) $next
* @param Closure(Request): (\Illuminate\Http\Response|\Illuminate\Http\RedirectResponse) $next
* @return \Illuminate\Http\Response|\Illuminate\Http\RedirectResponse
*/
public function handle(Request $request, Closure $next)
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Middleware/SuperAdminMiddleware.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class SuperAdminMiddleware
* Handle an incoming request.
*
* @param Request $request
* @param \Closure(Request): (Response|RedirectResponse) $next
* @param Closure(Request): (Response|RedirectResponse) $next
*
* @return mixed
* @throws ContainerExceptionInterface
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Requests/BulkDeleteResultRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public function withValidator($validator): void
}

/**
* @param \Illuminate\Database\Eloquent\Collection<Transaction> $transactions
* @param Collection<Transaction> $transactions
*
* @return bool
*/
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Requests/BulkDeleteTransactionRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public function withValidator($validator): void
}

/**
* @param \Illuminate\Database\Eloquent\Collection<Transaction> $transactions
* @param Collection<Transaction> $transactions
*
* @return bool
*/
Expand Down
32 changes: 16 additions & 16 deletions resources/assets/sass/component/_input.scss
Original file line number Diff line number Diff line change
Expand Up @@ -256,41 +256,41 @@ label {
}

select.select2.default-value-indicator
+ .select2
.selection
.select2-selection:not(:focus) {
+ .select2
.selection
.select2-selection:not(:focus) {
border: 2px solid #3f9a7c;
background-color: #3f9a7c15;
}

select.select2.default-value-indicator
+ .select2
.selection
.select2-selection:not(:focus) {
+ .select2
.selection
.select2-selection:not(:focus) {
border: 2px solid #3f9a7c;
background-color: #3f9a7c15;
}

select.select2.default-value-indicator
+ .select2
.selection
.select2-selection
.select2-selection__placeholder {
+ .select2
.selection
.select2-selection
.select2-selection__placeholder {
color: var(--bluecoral-50);
}

select.select2.default-value-indicator
+ .select2.select2-container--open
.selection
.select2-selection {
+ .select2.select2-container--open
.selection
.select2-selection {
border: 1px solid #a6b5ba;
background-color: white;
}

select.select2.default-value-indicator
+ .select2
.selection
.select2-selection.select2-selection--clearable {
+ .select2
.selection
.select2-selection.select2-selection--clearable {
border: 1px solid #a6b5ba;
background-color: white;
}
Expand Down

0 comments on commit a9da7ad

Please sign in to comment.