Advertisement
Xoriam

Untitled

May 25th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. <style>
  2.  
  3. .checkin-filter-panel {
  4. display:flex;
  5. flex-flow:row;
  6. align-content:center;
  7. justify-content:flex-start;
  8. margin:0;
  9. margin-bottom:10px;
  10. }
  11.  
  12. .form-label {
  13. margin:0;
  14. margin-bottom:10px;
  15. }
  16.  
  17. .form-control {
  18. margin:0;
  19. margin-bottom:10px;
  20. }
  21.  
  22. .checkin-filter-column {
  23. margin:0;
  24. margin-right:10px;
  25. display:flex;
  26. flex-flow:column;
  27. align-content:center;
  28. justify-content:center;
  29. }
  30.  
  31. .date {
  32. width:100px;
  33. text-align:center;
  34. }
  35.  
  36. </style>
  37.  
  38.  
  39. <div class="checkin-filter-panel">
  40. <div class="checkin-filter-column">
  41. <div>Дата с <input type="text" data-pmu-format="d.m.Y" name="startDate" class="date startDate" /></div>
  42. </div>
  43. <div class="checkin-filter-column">
  44. <div>по <input type="text" data-pmu-format="d.m.Y" name="endDate" class="date endDate" /></div>
  45. </div>
  46. <div class="checkin-filter-column">
  47. <div>
  48. <input type="checkbox"> регистрация запрошена <input type="checkbox"> регистрация выполнена <input type="checkbox"> регистрация отменена<br/>
  49. </div>
  50. </div>
  51. <div class="checkin-filter-column">
  52. <input type="button" value="Показать" name="checkin-filter-process" class="my-button"/>
  53. </div>
  54. </div>
  55. <script>
  56. addEventListener('DOMContentLoaded', function () {
  57. pickmeup('.startDate', {
  58. locale: 'ru',
  59. position : 'right',
  60. hide_on_select : true
  61. });
  62. pickmeup('.endDate', {
  63. locale: 'ru',
  64. position : 'right',
  65. hide_on_select : true
  66. });
  67. });
  68. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement