| 1234567891011121314151617181920212223242526272829303132333435363738 |
- div.time-picker {
- position: absolute;
- height: 191px;
- width:4em; /* needed for IE */
- overflow: auto;
- background: #fff;
- border: 1px solid #aaa;
- z-index: 1501;
- 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 Helvetica, Arial, sans-serif;
- padding: 4px 3px;
- }
- div.time-picker li.selected {
- background: #0063CE;
- color: #fff;
- }
- /** Custom magic **/
- input.short {
- clear: right;
- display: block;
- float: left;
- margin: 0px 10px 0px 0px;
- width: 95px;
- }
|