Ensured dropdown item styles are not overriden for disabled items

This commit is contained in:
Alejandro Celaya 2018-10-28 23:06:57 +01:00
parent 05936c52b3
commit 99833b51a9

View file

@ -18,12 +18,12 @@ body,
background-color: $mainColor !important;
}
.dropdown-item {
.dropdown-item:not(:disabled) {
cursor: pointer;
}
.dropdown-item.active,
.dropdown-item:active {
.dropdown-item.active:not(:disabled),
.dropdown-item:active:not(:disabled) {
background-color: $lightGrey !important;
color: inherit !important;
}