0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-28 10:24:19 +01:00
Bootstrap/scss/_close.scss

41 lines
940 B
SCSS
Raw Permalink Normal View History

.close {
float: right;
@include font-size($close-font-size);
2014-12-02 23:02:35 +01:00
font-weight: $close-font-weight;
line-height: 1;
2014-12-02 23:02:35 +01:00
color: $close-color;
text-shadow: $close-text-shadow;
opacity: .5;
2013-04-09 19:43:37 +02:00
// Override <a>'s hover style
@include hover() {
color: $close-color;
text-decoration: none;
}
&:not(:disabled):not(.disabled) {
@include hover-focus() {
opacity: .75;
}
}
2015-01-20 01:11:39 +01:00
}
2015-01-20 01:11:39 +01:00
// Additional properties for button version
// iOS requires the button element instead of an anchor tag.
// If you want the anchor version, it requires `href="#"`.
// See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile
2016-02-06 21:28:18 +01:00
2018-10-22 20:57:09 +02:00
// stylelint-disable-next-line selector-no-qualifying-type
2015-01-20 01:11:39 +01:00
button.close {
padding: 0;
background-color: transparent;
2015-01-20 01:11:39 +01:00
border: 0;
}
// Future-proof disabling of clicks on `<a>` elements
// stylelint-disable-next-line selector-no-qualifying-type
a.close.disabled {
pointer-events: none;
}