2012-06-28 21:46:45 -07:00
|
|
|
//
|
|
|
|
// Close icons
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-01-05 10:01:42 -08:00
|
|
|
|
|
|
|
.close {
|
|
|
|
float: right;
|
2013-04-24 00:41:06 +02:00
|
|
|
font-size: (@font-size-base * 1.5);
|
2013-07-28 17:32:08 +05:00
|
|
|
font-weight: @close-font-weight;
|
2013-04-24 00:41:06 +02:00
|
|
|
line-height: 1;
|
2013-07-20 12:56:20 +05:00
|
|
|
color: @close-color;
|
|
|
|
text-shadow: @close-text-shadow;
|
2013-02-28 19:46:49 -08:00
|
|
|
.opacity(.2);
|
2013-04-09 10:43:37 -07:00
|
|
|
|
2013-01-02 22:39:21 +00:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2013-07-23 23:09:06 -07:00
|
|
|
color: @close-color;
|
2012-01-05 10:01:42 -08:00
|
|
|
text-decoration: none;
|
2012-01-08 23:14:07 -08:00
|
|
|
cursor: pointer;
|
2013-02-28 19:46:49 -08:00
|
|
|
.opacity(.5);
|
2012-01-05 10:01:42 -08:00
|
|
|
}
|
2012-03-25 20:41:59 -07:00
|
|
|
|
2013-07-01 17:32:07 -07: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 17:30:22 +10:00
|
|
|
}
|