(select-one) search = false, focus and keyboard navigation

This commit is contained in:
Simon Babay 2016-08-01 15:23:34 +02:00
parent e898309fb1
commit 1c268a1e5d
2 changed files with 5 additions and 0 deletions

View file

@ -15,6 +15,8 @@
user-select: none; }
.choices.is-disabled .choices__item {
cursor: not-allowed; }
.choices:focus {
outline: none; }
.choices[data-type*="select-one"] .choices__inner {
cursor: pointer;

View file

@ -24,6 +24,9 @@ $choices-button-icon-path: '../../icons/cross.svg';
}
.choices__item { cursor: not-allowed; }
}
&:focus{
outline: none;
}
}
.choices[data-type*="select-one"] {