Remove cursor not allowed rule (#1147)

* remove cursor not allowed rule

* re-add css rule
Added the previously removed rule back and specified selector.

* Apply suggestions from code review

---------

Co-authored-by: Lance Pioch <lancepioch@gmail.com>
This commit is contained in:
PalmarHealer 2025-03-22 13:31:57 +01:00 committed by GitHub
parent 23f39acd4e
commit b4eab02254
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -14,7 +14,7 @@
padding-right: 10px; padding-right: 10px;
} }
input:read-only { #send-command:read-only {
cursor: not-allowed; cursor: not-allowed;
} }

View File

@ -18,6 +18,7 @@
icon="tabler-chevrons-right" icon="tabler-chevrons-right"
/> />
<input <input
id="send-command"
class="w-full focus:outline-none focus:ring-0 border-none dark:bg-gray-900" class="w-full focus:outline-none focus:ring-0 border-none dark:bg-gray-900"
type="text" type="text"
:readonly="{{ $this->canSendCommand() ? 'false' : 'true' }}" :readonly="{{ $this->canSendCommand() ? 'false' : 'true' }}"