jquery-timepicker.css 645 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. div.time-picker {
  2. position: absolute;
  3. height: 191px;
  4. width:4em; /* needed for IE */
  5. overflow: auto;
  6. background: #fff;
  7. border: 1px solid #aaa;
  8. z-index: 1501;
  9. margin: 0;
  10. }
  11. div.time-picker-12hours {
  12. width:6em; /* needed for IE */
  13. }
  14. div.time-picker ul {
  15. list-style-type: none;
  16. margin: 0;
  17. padding: 0;
  18. }
  19. div.time-picker li {
  20. cursor: pointer;
  21. height: 10px;
  22. font: 12px/1 Helvetica, Arial, sans-serif;
  23. padding: 4px 3px;
  24. }
  25. div.time-picker li.selected {
  26. background: #0063CE;
  27. color: #fff;
  28. }
  29. /** Custom magic **/
  30. input.short {
  31. clear: right;
  32. display: block;
  33. float: left;
  34. margin: 0px 10px 0px 0px;
  35. width: 95px;
  36. }