69 lines
1.4 KiB
CSS
69 lines
1.4 KiB
CSS
.bsBtnDefault {
|
|
display:inline;
|
|
/*float:left;*/
|
|
width:24px;
|
|
height:22px;
|
|
background-color:Menu;
|
|
padding-left:4px;
|
|
padding-top:3px;
|
|
font-family: arial, helvetica;
|
|
font-size: 12px;
|
|
cursor: default;
|
|
display:inline;
|
|
}
|
|
.bsBtnMouseOver {
|
|
display:inline;
|
|
/*float:left;*/
|
|
width:24px;
|
|
height:22px;
|
|
background-color:Menu;
|
|
padding-left:3px;
|
|
padding-top:2px;
|
|
border-left:1px solid white;
|
|
border-top:1px solid white;
|
|
border-right:1px solid #808080;
|
|
border-bottom:1px solid #808080;
|
|
font-family: arial, helvetica;
|
|
font-size: 12px;
|
|
cursor: default;
|
|
display:inline;
|
|
}
|
|
.bsBtnMouseDown {
|
|
display:inline;
|
|
/*float:left;*/
|
|
width:24px;
|
|
height:22px;
|
|
background-color:Menu;
|
|
padding-left:4px;
|
|
padding-top:3px;
|
|
border-left:1px solid #808080;
|
|
border-top:1px solid #808080;
|
|
border-right:1px solid white;
|
|
border-bottom:1px solid white;
|
|
font-family: arial, helvetica;
|
|
font-size: 12px;
|
|
cursor: default;
|
|
display:inline;
|
|
}
|
|
/**
|
|
* vertical separator for a horizontal bar
|
|
*/
|
|
.separatorForHorizontal {
|
|
background-color: white;
|
|
height: 22px;
|
|
border-left: 1px inset;
|
|
width: 2px;
|
|
}
|
|
/**
|
|
* horizontal separator for a vertical bar
|
|
* todo: crap, too much room at the bottom, dunno why.
|
|
*/
|
|
.separatorForVertical {
|
|
margin-top:5px;
|
|
margin-bottom:0px;
|
|
padding-bottom:0px;
|
|
background-color: menu;
|
|
height: 0px;
|
|
border-top: 1px inset;
|
|
width: 22px;
|
|
}
|