17 lines
464 B
CSS
17 lines
464 B
CSS
.l-button {
|
|
height: 23px;
|
|
overflow: hidden;
|
|
width: 70px;
|
|
line-height: 23px;
|
|
cursor: pointer;
|
|
position: relative; text-align:center;
|
|
border:1px solid #D3D3D3; color:#333333;
|
|
background:url('../images/ui/button.gif') repeat-x center center;
|
|
}
|
|
|
|
.l-button-over,.l-button:hover {
|
|
background-image:url('../images/ui/button-over.gif'); border-color:#D3D3D3;
|
|
}
|
|
.l-button-disabled {
|
|
background-image:url('../images/ui/button-disabled.gif'); color:#9D9D9E;
|
|
} |