mirror of
https://github.com/balena-io/etcher.git
synced 2025-04-24 07:17:18 +00:00
fix(GUI): show not-allowed cursor over unselectable drives (#886)
The cursor is incorrectly a pointer on hover over a disabled and unselectable drive in the drive selector widget. This patch changes the cursor to `not-allowed`, providing the user with visual feedback that it is not selectable. Fixes: https://github.com/resin-io/etcher/issues/865 Change-Type: patch Changelog-Entry: Use not-allowed cursor over disabled drives in the drive selector widget.
This commit is contained in:
parent
b8ffd24cce
commit
ccd2076a20
@ -6407,6 +6407,9 @@ body {
|
||||
width: 300px;
|
||||
height: 320px; }
|
||||
|
||||
.modal-drive-selector-modal .list-group-item[disabled] {
|
||||
cursor: not-allowed; }
|
||||
|
||||
.component-drive-selector-body .list-group-item-footer {
|
||||
margin-top: 8px; }
|
||||
|
||||
|
@ -19,6 +19,10 @@
|
||||
height: 320px;
|
||||
}
|
||||
|
||||
.modal-drive-selector-modal .list-group-item[disabled] {
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.component-drive-selector-body {
|
||||
|
||||
.list-group-item-footer {
|
||||
|
Loading…
x
Reference in New Issue
Block a user