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
commit 9652b96fde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 {