109 - Rename bare rounded to rounded-sm
This commit is contained in:
parent
549f83a662
commit
f90d271735
3 changed files with 8 additions and 8 deletions
|
|
@ -32,7 +32,7 @@
|
||||||
<!-- Remember Me -->
|
<!-- Remember Me -->
|
||||||
<div class="block mt-4">
|
<div class="block mt-4">
|
||||||
<label for="remember_me" class="inline-flex items-center">
|
<label for="remember_me" class="inline-flex items-center">
|
||||||
<input id="remember_me" type="checkbox" class="rounded border-gray-300 text-blue-600 shadow-xs focus:ring-blue-500" name="remember">
|
<input id="remember_me" type="checkbox" class="rounded-sm border-gray-300 text-blue-600 shadow-xs focus:ring-blue-500" name="remember">
|
||||||
<span class="ms-2 text-sm text-gray-600">{{ __('Remember me') }}</span>
|
<span class="ms-2 text-sm text-gray-600">{{ __('Remember me') }}</span>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -131,7 +131,7 @@ class="inline-flex items-center px-4 py-2 bg-blue-600 text-white text-sm font-me
|
||||||
<h4 class="text-sm font-medium text-gray-700 mb-2">Available Accounts</h4>
|
<h4 class="text-sm font-medium text-gray-700 mb-2">Available Accounts</h4>
|
||||||
<div class="space-y-2">
|
<div class="space-y-2">
|
||||||
@foreach ($availableAccounts as $account)
|
@foreach ($availableAccounts as $account)
|
||||||
<div class="flex items-center justify-between p-2 border rounded">
|
<div class="flex items-center justify-between p-2 border rounded-sm">
|
||||||
<span class="text-sm text-gray-900">{{ $account->username }}</span>
|
<span class="text-sm text-gray-900">{{ $account->username }}</span>
|
||||||
<button
|
<button
|
||||||
wire:click="attachAccount({{ $account->id }})"
|
wire:click="attachAccount({{ $account->id }})"
|
||||||
|
|
|
||||||
|
|
@ -273,7 +273,7 @@ class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none foc
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
wire:click="$set('showKeywordInput', true)"
|
wire:click="$set('showKeywordInput', true)"
|
||||||
class="inline-flex items-center p-1 text-gray-400 hover:text-gray-600 rounded"
|
class="inline-flex items-center p-1 text-gray-400 hover:text-gray-600 rounded-sm"
|
||||||
title="Add keyword"
|
title="Add keyword"
|
||||||
>
|
>
|
||||||
<svg class="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
|
<svg class="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
|
||||||
|
|
@ -289,20 +289,20 @@ class="inline-flex items-center p-1 text-gray-400 hover:text-gray-600 rounded"
|
||||||
wire:model="newKeyword"
|
wire:model="newKeyword"
|
||||||
wire:keydown.enter.prevent="addKeyword"
|
wire:keydown.enter.prevent="addKeyword"
|
||||||
placeholder="Enter keyword..."
|
placeholder="Enter keyword..."
|
||||||
class="flex-1 px-2 py-1 border border-gray-300 rounded text-sm focus:outline-none focus:ring-2 focus:ring-blue-500"
|
class="flex-1 px-2 py-1 border border-gray-300 rounded-sm text-sm focus:outline-none focus:ring-2 focus:ring-blue-500"
|
||||||
autofocus
|
autofocus
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
wire:click="addKeyword"
|
wire:click="addKeyword"
|
||||||
class="px-3 py-1 bg-blue-600 text-white text-sm rounded hover:bg-blue-700"
|
class="px-3 py-1 bg-blue-600 text-white text-sm rounded-sm hover:bg-blue-700"
|
||||||
>
|
>
|
||||||
Add
|
Add
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
wire:click="$set('showKeywordInput', false)"
|
wire:click="$set('showKeywordInput', false)"
|
||||||
class="px-3 py-1 bg-gray-200 text-gray-700 text-sm rounded hover:bg-gray-300"
|
class="px-3 py-1 bg-gray-200 text-gray-700 text-sm rounded-sm hover:bg-gray-300"
|
||||||
>
|
>
|
||||||
Cancel
|
Cancel
|
||||||
</button>
|
</button>
|
||||||
|
|
@ -312,7 +312,7 @@ class="px-3 py-1 bg-gray-200 text-gray-700 text-sm rounded hover:bg-gray-300"
|
||||||
@if ($editingKeywords->isNotEmpty())
|
@if ($editingKeywords->isNotEmpty())
|
||||||
<div class="space-y-2">
|
<div class="space-y-2">
|
||||||
@foreach ($editingKeywords as $keyword)
|
@foreach ($editingKeywords as $keyword)
|
||||||
<div class="flex items-center justify-between px-3 py-2 rounded border {{ $keyword->is_active ? 'border-blue-200 bg-blue-50' : 'border-gray-200 bg-gray-50' }}">
|
<div class="flex items-center justify-between px-3 py-2 rounded-sm border {{ $keyword->is_active ? 'border-blue-200 bg-blue-50' : 'border-gray-200 bg-gray-50' }}">
|
||||||
<div class="flex items-center space-x-2">
|
<div class="flex items-center space-x-2">
|
||||||
<span class="inline-flex items-center px-2 py-1 rounded-full text-xs font-medium {{ $keyword->is_active ? 'bg-blue-100 text-blue-800' : 'bg-gray-100 text-gray-500' }}">
|
<span class="inline-flex items-center px-2 py-1 rounded-full text-xs font-medium {{ $keyword->is_active ? 'bg-blue-100 text-blue-800' : 'bg-gray-100 text-gray-500' }}">
|
||||||
{{ $keyword->keyword }}
|
{{ $keyword->keyword }}
|
||||||
|
|
@ -347,7 +347,7 @@ class="text-red-600 hover:text-red-800"
|
||||||
</div>
|
</div>
|
||||||
@else
|
@else
|
||||||
@if (!$showKeywordInput)
|
@if (!$showKeywordInput)
|
||||||
<div class="text-sm text-gray-500 italic p-2 border border-gray-200 rounded">
|
<div class="text-sm text-gray-500 italic p-2 border border-gray-200 rounded-sm">
|
||||||
No keywords defined. This route will match all articles.
|
No keywords defined. This route will match all articles.
|
||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue