From 99833b51a9216f0f43e0ce1e1525974a5cb24f28 Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Sun, 28 Oct 2018 23:06:57 +0100 Subject: [PATCH] Ensured dropdown item styles are not overriden for disabled items --- src/index.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/index.scss b/src/index.scss index f9f7bd22..cc361862 100644 --- a/src/index.scss +++ b/src/index.scss @@ -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; }