From 999eec161421cd71596552283b7d722be6902070 Mon Sep 17 00:00:00 2001 From: Howard Cox Date: Mon, 11 Jun 2018 16:52:56 +0300 Subject: [PATCH 1/2] Prevent pointer-events on disabled anchor dropdown-item Fixes #26695 --- scss/_dropdown.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/scss/_dropdown.scss b/scss/_dropdown.scss index ee6f658087ec..b6a4089d4ba2 100644 --- a/scss/_dropdown.scss +++ b/scss/_dropdown.scss @@ -136,6 +136,7 @@ &.disabled, &:disabled { color: $dropdown-link-disabled-color; + pointer-events: none; background-color: transparent; // Remove CSS gradients if they're enabled @if $enable-gradients { From 1f26357d378f1a604ebe82925f88f8baa8ac5b50 Mon Sep 17 00:00:00 2001 From: Howard Cox Date: Wed, 5 Sep 2018 12:50:50 +0300 Subject: [PATCH 2/2] Prevent pointer events on disabled list-group-item --- scss/_list-group.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/scss/_list-group.scss b/scss/_list-group.scss index 9f145c1d30fc..7605ab982290 100644 --- a/scss/_list-group.scss +++ b/scss/_list-group.scss @@ -66,6 +66,7 @@ &.disabled, &:disabled { color: $list-group-disabled-color; + pointer-events: none; background-color: $list-group-disabled-bg; }