2012-06-29 00:46:45 -04:00
|
|
|
//
|
|
|
|
// Close icons
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-01-05 13:01:42 -05:00
|
|
|
|
|
|
|
.close {
|
|
|
|
float: right;
|
2014-12-02 17:02:35 -05:00
|
|
|
font-size: ($font-size-base * 1.5);
|
|
|
|
font-weight: $close-font-weight;
|
2013-04-23 18:41:06 -04:00
|
|
|
line-height: 1;
|
2014-12-02 17:02:35 -05:00
|
|
|
color: $close-color;
|
|
|
|
text-shadow: $close-text-shadow;
|
2014-07-08 05:04:48 -04:00
|
|
|
opacity: .2;
|
2013-04-09 13:43:37 -04:00
|
|
|
|
2015-01-01 04:05:01 -05:00
|
|
|
@include hover-focus {
|
2014-12-02 17:02:35 -05:00
|
|
|
color: $close-color;
|
2012-01-05 13:01:42 -05:00
|
|
|
text-decoration: none;
|
2012-01-09 02:14:07 -05:00
|
|
|
cursor: pointer;
|
2014-07-08 05:04:48 -04:00
|
|
|
opacity: .5;
|
2012-01-05 13:01:42 -05:00
|
|
|
}
|
2015-01-19 19:11:39 -05:00
|
|
|
}
|
2012-03-25 23:41:59 -04:00
|
|
|
|
2015-01-19 19:11:39 -05: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
|
|
|
|
button.close {
|
|
|
|
padding: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
|
|
|
-webkit-appearance: none;
|
2013-04-23 03:30:22 -04:00
|
|
|
}
|