0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-19 16:54:24 +01:00

Prevent hover/click on disabled .close links.

This commit is contained in:
ysds 2018-07-17 06:21:43 +03:00 committed by Martijn Cuppens
parent 273861f145
commit eb5d0b49dc

View File

@ -7,11 +7,14 @@
text-shadow: $close-text-shadow;
opacity: .5;
&:not(:disabled):not(.disabled) {
// Override <a>'s hover style
@include hover {
color: $close-color;
text-decoration: none;
}
&:not(:disabled):not(.disabled) {
@include hover-focus {
color: $close-color;
text-decoration: none;
opacity: .75;
}
@ -32,3 +35,10 @@ button.close {
border: 0;
appearance: none;
}
// Future-proof disabling of clicks on `<a>` elements
// stylelint-disable-next-line selector-no-qualifying-type
a.close.disabled {
pointer-events: none;
}