2012-06-29 00:46:45 -04:00
|
|
|
//
|
|
|
|
// Close icons
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-01-05 13:01:42 -05:00
|
|
|
|
|
|
|
.close {
|
|
|
|
float: right;
|
|
|
|
font-size: 20px;
|
|
|
|
font-weight: bold;
|
2012-01-25 00:11:20 -05:00
|
|
|
line-height: @baseLineHeight;
|
2012-01-05 13:01:42 -05:00
|
|
|
color: @black;
|
|
|
|
text-shadow: 0 1px 0 rgba(255,255,255,1);
|
|
|
|
.opacity(20);
|
|
|
|
&:hover {
|
|
|
|
color: @black;
|
|
|
|
text-decoration: none;
|
2012-01-09 02:14:07 -05:00
|
|
|
cursor: pointer;
|
2012-04-16 19:34:08 -04:00
|
|
|
.opacity(40);
|
2012-01-05 13:01:42 -05:00
|
|
|
}
|
|
|
|
}
|
2012-03-25 23:41:59 -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.close {
|
|
|
|
padding: 0;
|
|
|
|
cursor: pointer;
|
2012-04-24 09:45:21 -04:00
|
|
|
background: transparent;
|
2012-03-25 23:41:59 -04:00
|
|
|
border: 0;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
}
|