33 lines
700 B
CSS
33 lines
700 B
CSS
div.time-holder {
|
|
position: absolute;
|
|
display: none;
|
|
width: 1px;
|
|
z-index: 1100;
|
|
}
|
|
div.time-holder table.times {
|
|
position: relative;
|
|
background: #fff;
|
|
border-collapse: collapse;
|
|
border: 1px solid #000;
|
|
}
|
|
div.time-holder table.times td.time {
|
|
padding: 4px;
|
|
width: 45px;
|
|
cursor: pointer;
|
|
border: 1px solid #000;
|
|
background: #fff;
|
|
font-size: 0.9em;
|
|
}
|
|
div.time-holder table.times td.empty {
|
|
padding: 2px;
|
|
width: 45px;
|
|
border: 1px solid #000;
|
|
}
|
|
div.time-holder table.times td.selected {
|
|
background: #ff0;
|
|
color: #000;
|
|
}
|
|
td.time
|
|
{
|
|
line-height:1.0em!important;
|
|
} |