fix:동기화 페이지 disabled 체크박스 시각적 스타일링 추가

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-30 13:27:25 +09:00
parent b6a3c4b506
commit 3154c8e3f3
2 changed files with 4 additions and 4 deletions

View File

@@ -185,7 +185,7 @@ class="px-3 py-1.5 bg-green-600 hover:bg-green-700 text-white text-xs font-mediu
<tr class="{{ $inBoth ? 'bg-blue-50/50' : ($localOnly ? 'bg-green-50/50' : '') }}">
<td class="px-3 py-2 text-center">
<input type="checkbox" name="local_cat" value="{{ $key }}"
class="w-4 h-4 text-green-600 border-gray-300 rounded focus:ring-green-500"
class="w-4 h-4 rounded focus:ring-green-500 {{ $inBoth ? 'bg-gray-200 border-gray-300 cursor-not-allowed' : 'text-green-600 border-gray-300' }}"
{{ $inBoth ? 'disabled' : '' }}>
</td>
<td class="px-3 py-2 font-mono text-xs text-gray-600">{{ $cat['code_group'] }}</td>
@@ -262,7 +262,7 @@ class="px-3 py-1.5 bg-purple-600 hover:bg-purple-700 text-white text-xs font-med
<tr class="{{ $inBoth ? 'bg-blue-50/50' : ($remoteOnly ? 'bg-purple-50/50' : '') }}">
<td class="px-3 py-2 text-center">
<input type="checkbox" name="remote_cat" value="{{ $key }}"
class="w-4 h-4 text-purple-600 border-gray-300 rounded focus:ring-purple-500"
class="w-4 h-4 rounded focus:ring-purple-500 {{ $inBoth ? 'bg-gray-200 border-gray-300 cursor-not-allowed' : 'text-purple-600 border-gray-300' }}"
{{ $inBoth ? 'disabled' : '' }}>
</td>
<td class="px-3 py-2 font-mono text-xs text-gray-600">{{ $cat['code_group'] }}</td>

View File

@@ -190,7 +190,7 @@ class="px-3 py-1.5 bg-green-600 hover:bg-green-700 text-white text-xs font-mediu
<tr class="{{ $inBoth ? 'bg-blue-50/50' : ($localOnly ? 'bg-green-50/50' : '') }}">
<td class="px-3 py-2 text-center">
<input type="checkbox" name="local_code" value="{{ $key }}"
class="w-4 h-4 text-green-600 border-gray-300 rounded focus:ring-green-500"
class="w-4 h-4 rounded focus:ring-green-500 {{ $inBoth ? 'bg-gray-200 border-gray-300 cursor-not-allowed' : 'text-green-600 border-gray-300' }}"
{{ $inBoth ? 'disabled' : '' }}>
</td>
<td class="px-3 py-2 font-mono text-xs text-gray-600">{{ $code['code_group'] }}</td>
@@ -264,7 +264,7 @@ class="px-3 py-1.5 bg-purple-600 hover:bg-purple-700 text-white text-xs font-med
<tr class="{{ $inBoth ? 'bg-blue-50/50' : ($remoteOnly ? 'bg-purple-50/50' : '') }}">
<td class="px-3 py-2 text-center">
<input type="checkbox" name="remote_code" value="{{ $key }}"
class="w-4 h-4 text-purple-600 border-gray-300 rounded focus:ring-purple-500"
class="w-4 h-4 rounded focus:ring-purple-500 {{ $inBoth ? 'bg-gray-200 border-gray-300 cursor-not-allowed' : 'text-purple-600 border-gray-300' }}"
{{ $inBoth ? 'disabled' : '' }}>
</td>
<td class="px-3 py-2 font-mono text-xs text-gray-600">{{ $code['code_group'] }}</td>