mugifly / jquery-simple-datetimepicker

Date & time picker for jQuery, It's simple & clean.
http://mugifly.github.com/jquery-simple-datetimepicker
Other
260 stars 182 forks source link

css float pushes time list below calendar #68

Open aconway opened 11 years ago

aconway commented 11 years ago

When non-inline and the parent area is smaller than the area needed for .datepicker_calendar and .datepicker_timelist, the .datepicker_timelist is pushed below the calendar. I updated the css to the following for my scenario.

.datepicker > .datepicker_inner_container { white-space:nowrap; } .datepicker > .datepicker_inner_container > .datepicker_calendar, .datepicker > .datepicker_inner_container > .datepicker_timelist { display:inline-block; float:none; }