button-core.css
43 lines
| 722 B
| text/css
|
CssLexer
r547 | /* | ||
r1073 | Copyright (c) 2010, Yahoo! Inc. All rights reserved. | ||
r547 | Code licensed under the BSD License: | ||
r1073 | http://developer.yahoo.com/yui/license.html | ||
version: 2.8.2r1 | |||
r547 | */ | ||
.yui-button { | |||
display: -moz-inline-box; /* Gecko */ | |||
display: inline-block; /* IE, Opera and Safari */ | |||
vertical-align: text-bottom; | |||
} | |||
.yui-button .first-child { | |||
display: block; | |||
*display: inline-block; /* IE */ | |||
} | |||
.yui-button button, | |||
.yui-button a { | |||
display: block; | |||
*display: inline-block; /* IE */ | |||
border: none; | |||
margin: 0; | |||
} | |||
.yui-button button { | |||
background-color: transparent; | |||
*overflow: visible; /* Remove superfluous padding for IE */ | |||
cursor: pointer; | |||
} | |||
.yui-button a { | |||
text-decoration: none; | |||
} |