2012-06-29 00:46:45 -04:00
|
|
|
//
|
|
|
|
// Close icons
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-01-05 13:01:42 -05:00
|
|
|
|
|
|
|
.close {
|
|
|
|
float: right;
|
2013-04-23 18:41:06 -04:00
|
|
|
font-size: (@font-size-base * 1.5);
|
2013-07-28 08:32:08 -04:00
|
|
|
font-weight: @close-font-weight;
|
2013-04-23 18:41:06 -04:00
|
|
|
line-height: 1;
|
2013-07-20 03:56:20 -04:00
|
|
|
color: @close-color;
|
|
|
|
text-shadow: @close-text-shadow;
|
2013-02-28 22:46:49 -05:00
|
|
|
.opacity(.2);
|
2013-04-09 13:43:37 -04:00
|
|
|
|
2013-01-02 17:39:21 -05:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2013-07-24 02:09:06 -04: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;
|
2013-02-28 22:46:49 -05:00
|
|
|
.opacity(.5);
|
2012-01-05 13:01:42 -05:00
|
|
|
}
|
2012-03-25 23:41:59 -04:00
|
|
|
|
2013-07-01 20:32:07 -04: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="#"`.
|
|
|
|
button& {
|
|
|
|
padding: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
}
|
2013-04-23 03:30:22 -04:00
|
|
|
}
|