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:
Benedict Aas 2016-11-30 15:06:41 +00:00 committed by Juan Cruz Viotti
parent b8ffd24cce
commit ccd2076a20
2 changed files with 7 additions and 0 deletions

View File

@ -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; }

View File

@ -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 {