Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

114 строки
3.1 KiB

  1. .time_picker_container {
  2. position: relative;
  3. }
  4. .time_picker_preview {
  5. height: 50px;
  6. }
  7. .time_picker_preview:not(.disabled):active, .time_picker_preview:not(.disabled).active {
  8. box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.12), 0 0 8px 0 rgba(0, 0, 0, 0.08);
  9. -moz-box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.12), 0 0 8px 0 rgba(0, 0, 0, 0.08);
  10. -webkit-box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.12), 0 0 8px 0 rgba(0, 0, 0, 0.08);
  11. }
  12. .time_picker_preview.disabled {
  13. cursor: not-allowed;
  14. }
  15. .preview_container {
  16. position: absolute;
  17. left: 50%;
  18. height: 50px;
  19. line-height: 50px;
  20. padding-left: 30px;
  21. transform: translateX(-50%);
  22. -o-transform: translateX(-50%);
  23. -ms-transform: translateX(-50%);
  24. -webkit-transform: translateX(-50%);
  25. -moz-transform: translateX(-50%);
  26. }
  27. .preview_container.without_icon {
  28. padding-right: 30px;
  29. }
  30. .preview_container svg {
  31. width: 25px;
  32. height: 25px;
  33. position: absolute;
  34. top: 12px;
  35. left: 0;
  36. }
  37. .react_times_button {
  38. user-select: none;
  39. position: relative;
  40. cursor: pointer;
  41. color: #343434;
  42. border-radius: 2px;
  43. background-color: #fff;
  44. transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
  45. -ms-transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
  46. -moz-transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
  47. -o-transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
  48. -webkit-transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
  49. box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, .15);
  50. -moz-box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, .15);
  51. -webkit-box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, .15);
  52. }
  53. .react_times_button.pressDown {
  54. box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
  55. -moz-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
  56. -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
  57. }
  58. .react_times_button.pressDown .wrapper {
  59. transform: translateY(1px);
  60. }
  61. .react_times_button .wrapper {
  62. transform: translateY(0);
  63. height: 100%;
  64. }
  65. .modal_container {
  66. user-select: none;
  67. cursor: default;
  68. position: absolute;
  69. width: 100%;
  70. transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
  71. -ms-transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
  72. -moz-transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
  73. -o-transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
  74. -webkit-transition: all 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
  75. background-color: #fff;
  76. border-radius: 2px;
  77. top: 100%;
  78. left: 0;
  79. box-shadow: 4px 4px 30px 0 rgba(0, 0, 0, 0.2);
  80. -moz-box-shadow: 4px 4px 30px 0 rgba(0, 0, 0, 0.2);
  81. -webkit-box-shadow: 4px 4px 30px 0 rgba(0, 0, 0, 0.2);
  82. opacity: 0;
  83. z-index: -1;
  84. visibility: hidden;
  85. backface-visibility: hidden;
  86. transform: scale(0.7) translateY(20px);
  87. -ms-transform: scale(0.7) translateY(20px);
  88. -moz-transform: scale(0.7) translateY(20px);
  89. -o-transform: scale(0.7) translateY(20px);
  90. -webkit-transform: scale(0.7) translateY(20px);
  91. }
  92. .outside_container.active .modal_container {
  93. opacity: 1;
  94. z-index: 2;
  95. visibility: visible;
  96. transform: scale(1) translateY(20px);
  97. -ms-transform: scale(1) translateY(20px);
  98. -moz-transform: scale(1) translateY(20px);
  99. -o-transform: scale(1) translateY(20px);
  100. -webkit-transform: scale(1) translateY(20px);
  101. }