Merge pull request #667 from dod-ccpo/ie-disabled-link-hover

Fix hover state of disabled link on IE
This commit is contained in:
George Drummond
2019-02-22 10:02:26 -05:00
committed by GitHub

View File

@@ -67,8 +67,13 @@
&.icon-link--disabled { &.icon-link--disabled {
opacity: 0.3; opacity: 0.3;
pointer-events: none;
text-decoration: none; text-decoration: none;
pointer-events: none;
&:hover {
cursor: default;
background: inherit;
}
} }
&.icon-link--left { &.icon-link--left {