first major round of EMS changes. much more to come late tonight.

This commit is contained in:
Matthew Wilson 2006-04-07 00:02:45 +00:00
parent f3404c319a
commit 2c60283ba3
27 changed files with 5196 additions and 33 deletions

View file

@ -0,0 +1,69 @@
.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;
}