2012-01-05 10:01:42 -08:00
|
|
|
.close {
|
|
|
|
float: right;
|
2019-02-07 23:32:05 +01:00
|
|
|
@include font-size($close-font-size);
|
2014-12-02 14:02:35 -08:00
|
|
|
font-weight: $close-font-weight;
|
2013-04-24 00:41:06 +02:00
|
|
|
line-height: 1;
|
2014-12-02 14:02:35 -08:00
|
|
|
color: $close-color;
|
|
|
|
text-shadow: $close-text-shadow;
|
2016-11-25 16:03:13 -08:00
|
|
|
opacity: .5;
|
2013-04-09 10:43:37 -07:00
|
|
|
|
2018-07-17 06:21:43 +03:00
|
|
|
// Override <a>'s hover style
|
2019-07-24 10:53:13 +03:00
|
|
|
@include hover() {
|
2018-07-17 06:21:43 +03:00
|
|
|
color: $close-color;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2018-06-03 18:25:17 +01:00
|
|
|
|
2018-07-17 06:21:43 +03:00
|
|
|
&:not(:disabled):not(.disabled) {
|
2019-07-24 10:53:13 +03:00
|
|
|
@include hover-focus() {
|
2018-06-03 18:25:17 +01:00
|
|
|
opacity: .75;
|
|
|
|
}
|
Opinionated: reintroduce `cursor:pointer`
Explicitly re-adds the "hand" `cursor:pointer` for non-disabled `.btn`, `.close`, `.navbar-toggler` elements, as well as forcing `page-link` pagination controls to always have the "hand" cursor (even if an author uses it on, say, `<button>` elements for a dynamically updating in-page pagination).
Controversial, as everybody jumped on the bandwagon following this article https://medium.com/simple-human/buttons-shouldnt-have-a-hand-cursor-b11e99ca374b - which does have its merits of course, but there are also counter-arguments like http://kizu.ru/en/issues/cursor-pointer/
And seeing the amount of issues we've seen following the change, and the potential complexity needed to consistently address the cursor issue (see https://github.com/twbs/bootstrap/issues/24156 where i explore how the cursor needs to be based on "intent", and how that's tough to determine), I'm favouring an opinionated take here of just reintroducing the `cursor:pointer`.
2017-12-25 23:15:21 +00:00
|
|
|
}
|
2015-01-19 16:11:39 -08:00
|
|
|
}
|
2012-03-25 20:41:59 -07:00
|
|
|
|
2015-01-19 16:11:39 -08: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 12:28:18 -08:00
|
|
|
|
2018-10-22 20:57:09 +02:00
|
|
|
// stylelint-disable-next-line selector-no-qualifying-type
|
2015-01-19 16:11:39 -08:00
|
|
|
button.close {
|
|
|
|
padding: 0;
|
2017-11-06 02:23:36 +02:00
|
|
|
background-color: transparent;
|
2015-01-19 16:11:39 -08:00
|
|
|
border: 0;
|
2018-10-22 20:57:09 +02:00
|
|
|
appearance: none;
|
2013-04-23 17:30:22 +10:00
|
|
|
}
|
2018-07-17 06:21:43 +03:00
|
|
|
|
|
|
|
// Future-proof disabling of clicks on `<a>` elements
|
|
|
|
|
|
|
|
// stylelint-disable-next-line selector-no-qualifying-type
|
|
|
|
a.close.disabled {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|