39 lines
662 B
CSS
39 lines
662 B
CSS
div.time-picker
|
|
{
|
|
position: absolute;
|
|
height: 191px;
|
|
width: 90px; /* needed for IE */
|
|
overflow: auto;
|
|
background: #fff;
|
|
border: 1px solid #aaa;
|
|
z-index: 991;
|
|
margin: 0;
|
|
}
|
|
div.time-picker-12hours
|
|
{
|
|
width: 6em; /* needed for IE */
|
|
}
|
|
|
|
div.time-picker ul
|
|
{
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
div.time-picker li
|
|
{
|
|
cursor: pointer;
|
|
height: 10px;
|
|
font: 12px/1 Hermes_FB;
|
|
font: 12px/1 Verdana;
|
|
padding: 4px 3px;
|
|
font-family:'Hermes_FB';
|
|
}
|
|
div.time-picker li.selected
|
|
{
|
|
background: #0063CE;
|
|
background:#ee2e22;/*navi*/
|
|
border-top:0 !important;/*navi*/
|
|
color: #fff;
|
|
}
|