Release v1.4.0 #146

Merged
myrmidex merged 71 commits from release/v1.4.0 into main 2026-08-15 00:36:54 +02:00
3 changed files with 8 additions and 8 deletions
Showing only changes of commit f90d271735 - Show all commits

View file

@ -32,7 +32,7 @@
<!-- Remember Me -->
<div class="block mt-4">
<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>
</label>
</div>

View file

@ -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>
<div class="space-y-2">
@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>
<button
wire:click="attachAccount({{ $account->id }})"

View file

@ -273,7 +273,7 @@ class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none foc
<button
type="button"
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"
>
<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:keydown.enter.prevent="addKeyword"
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
>
<button
type="button"
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
</button>
<button
type="button"
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
</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())
<div class="space-y-2">
@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">
<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 }}
@ -347,7 +347,7 @@ class="text-red-600 hover:text-red-800"
</div>
@else
@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.
</div>
@endif