datepicker.less 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. //
  2. // Date and time picker
  3. // --------------------------------------------------
  4. .bootstrap-datetimepicker-widget {
  5. padding: @line-height-computed / 2;
  6. width: auto;
  7. &.top:after, &.top:before, &.bottom:after, &.bottom:before {
  8. display: none;
  9. }
  10. .timepicker-picker {
  11. table.table-condensed {
  12. margin: 0px;
  13. tr {
  14. td {
  15. padding: 0px;
  16. height: auto;
  17. text-align: center;
  18. &.separator {
  19. width: @line-height-computed / 2;
  20. height: auto;
  21. line-height: @line-height-computed * 1.5;
  22. }
  23. .btn {
  24. border: none;
  25. display: block;
  26. margin: 0px;
  27. padding: 0px;
  28. position: static;
  29. width: 100%;
  30. .glyphicon {
  31. margin: 0px;
  32. height: @line-height-computed * 1.5;
  33. width: 100%;
  34. position: static;
  35. line-height: @line-height-computed * 1.5;
  36. }
  37. }
  38. .timepicker-hour, .timepicker-minute {
  39. margin: 0px;
  40. float: none;
  41. height: auto;
  42. width: auto;
  43. line-height: @line-height-computed * 1.5;
  44. }
  45. }
  46. }
  47. }
  48. }
  49. }