Blame view

frontend/web/css/datepicker.css 7.73 KB
d516cc76   Eugeny Galkovskiy   Модалка заказа
1
  
8528ff71   Eugeny Galkovskiy   Запись на приём, ...
2
  .datepicker-wr, .datepicker-wr2
d516cc76   Eugeny Galkovskiy   Модалка заказа
3
4
5
6
7
8
9
10
11
12
13
14
  {
      position: absolute;
      z-index: 1000010;
      margin-top: -20px;
      padding-top: 3px;
  }
  
  .ui-widget.ui-widget-content {
      max-width: 310px;
      border-radius: 0;
      width: 100%;
  }
8528ff71   Eugeny Galkovskiy   Запись на приём, ...
15
  .datepicker-wr .ui-datepicker-title select,.datepicker-wr2 .ui-datepicker-title select,.form-question-wr input,.form-question-wr select,.form-question-wr textarea
d516cc76   Eugeny Galkovskiy   Модалка заказа
16
17
18
19
20
21
22
23
24
25
26
27
28
  {
      width:100%;
      float:left;
      outline:0!important;
      height:36px;
      background:#fff;
      border:1px solid #b7b7b7;
      padding-left:8px;
      margin-top:9px;
      color:#103b4e;
      font-size:18px
  }
  
8528ff71   Eugeny Galkovskiy   Запись на приём, ...
29
  .datepicker-wr .ui-datepicker-title select,.datepicker-wr2 .ui-datepicker-title select
d516cc76   Eugeny Galkovskiy   Модалка заказа
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
  {
      width:auto;
      padding-left:8px;
      margin-top:0;
      background-color:#fff;
      border:1px solid #ccc;
      margin-left:5px;
      margin-right:5px
  }
  
  .datepicker-full
  {
      width:100%;
      float:left;
      background:#d7e3e9;
      position:relative
  }
  
  .datepicker-full table.ui-datepicker-calendar thead
  {
      font-size:16px;
      color:#103b4f
  }
  
  .datepicker-full table.ui-datepicker-calendar thead th
  {
      background:#88c3de;
      padding:4px 0
  }
  
  .datepicker-full table.ui-datepicker-calendar
  {
      width:100%;
      padding:0;
      border:0;
      border-spacing:0
  }
  
  .datepicker-full table.ui-datepicker-calendar td
  {
      text-align:center
  }
  
  .datepicker-full table.ui-datepicker-calendar td a,.datepicker-full table.ui-datepicker-calendar td span
  {
      font-size:18px;
      font-weight:700;
      color:#103b4f;
      height:44px;
      display:block;
      width:100%;
      line-height:44px
  }
  
  .datepicker-full table.ui-datepicker-calendar td span
  {
      opacity:.5
  }
  
  .datepicker-full table.ui-datepicker-calendar td a:hover
  {
      background:#fff200
  }
  
  .datepicker-full table.ui-datepicker-calendar tr td
  {
      border-top:2px solid #fff;
      border-right:1px solid #fff
  }
  
  .datepicker-full table.ui-datepicker-calendar tr td.ui-datepicker-other-month.ui-datepicker-unselectable.ui-state-disabled
  {
      border-right:0
  }
  
  .datepicker-full table.ui-datepicker-calendar tr:last-child td.ui-state-disabled
  {
      border-top:2px solid #fff
  }
  
  .datepicker-full table.ui-datepicker-calendar tr:first-child td.ui-datepicker-other-month.ui-datepicker-unselectable:last-child
  {
      border-right:1px solid red!important
  }
  
  .datepicker-full table.ui-datepicker-calendar tr td:last-child
  {
      border-right:0
  }
  
  .datepicker-full .ui-datepicker-header
  {
      background:#357592;
      height:48px
  }
  
  .datepicker-full .ui-datepicker-title
  {
      color:#fff;
      text-align:right;
      font-weight:700;
      padding:0 63px 0 15px;
      line-height:48px
  }
  
  .datepicker-full .ui-datepicker-next,.datepicker-full .ui-datepicker-prev
  {
      position:absolute;
      top:16px;
      right:42px;
      width:9px;
      height:14px;
      background:url(../img/ico-all/calendar-l.png) no-repeat;
      background-size:9px 14px;
      cursor:pointer
  }
  
  .datepicker-full .ui-datepicker-next.ui-state-disabled,.datepicker-full .ui-datepicker-prev.ui-state-disabled
  {
      cursor:default;
      opacity:.4
  }
  
  .datepicker-full .ui-datepicker-next
  {
      background:url(../img/ico-all/calendar-r.png) no-repeat;
      background-size:9px 14px;
      right:15px
  }
  
  .datepicker-form input,.datepicker-form-2 input
  {
      background:url(../img/ico-all/calendar-ico.png) 99% 50% no-repeat
  }
  
8528ff71   Eugeny Galkovskiy   Запись на приём, ...
165
  .datepicker-wr,.datepicker-wr2
d516cc76   Eugeny Galkovskiy   Модалка заказа
166
167
168
169
170
171
172
  {
      background-color:#fff;
      margin-left:0;
      border-radius:0;
      z-index: 1000010;
  }
  
8528ff71   Eugeny Galkovskiy   Запись на приём, ...
173
  .datepicker-wr .ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all,.datepicker-wr2 .ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all
d516cc76   Eugeny Galkovskiy   Модалка заказа
174
175
176
177
178
179
180
181
182
183
184
185
  {
      text-align:center;
      max-width: 280px;
      width: 100%;
      position:relative;
      margin:26px auto 25px;
      overflow:hidden;
      padding-left:1px;
      background-color:initial;
      border:none
  }
  
8528ff71   Eugeny Galkovskiy   Запись на приём, ...
186
  .datepicker-wr .ui-datepicker-calendar tr,.datepicker-wr2 .ui-datepicker-calendar tr,.ui-datepicker-calendar td
d516cc76   Eugeny Galkovskiy   Модалка заказа
187
188
189
190
191
  {
      margin:0;
      padding:0
  }
  
8528ff71   Eugeny Galkovskiy   Запись на приём, ...
192
  .datepicker-wr table.ui-datepicker-calendar th,.datepicker-wr2 table.ui-datepicker-calendar th
d516cc76   Eugeny Galkovskiy   Модалка заказа
193
194
195
196
197
198
  {
      color:#000;
      text-transform:uppercase;
      font-size:10px
  }
  
8528ff71   Eugeny Galkovskiy   Запись на приём, ...
199
  .datepicker-wr table.ui-datepicker-calendar,.datepicker-wr2 table.ui-datepicker-calendar
d516cc76   Eugeny Galkovskiy   Модалка заказа
200
201
202
203
204
205
206
  {
      max-width: 280px;
      width: 100%;
      text-align:center;
      margin:0 auto 23px
  }
  
8528ff71   Eugeny Galkovskiy   Запись на приём, ...
207
  .datepicker-wr .ui-datepicker-calendar a,.datepicker-wr2 .ui-datepicker-calendar a
d516cc76   Eugeny Galkovskiy   Модалка заказа
208
209
210
211
212
213
214
215
216
217
218
219
  {
      font-size:18px;
      color:#103b4e;
      text-decoration:none;
      border-radius:50%;
      display:inherit;
      left:9px;
      position:relative;
      text-align:center;
      padding:1px 0
  }
  
8528ff71   Eugeny Galkovskiy   Запись на приём, ...
220
  .datepicker-wr table thead span,.datepicker-wr2 table thead span
d516cc76   Eugeny Galkovskiy   Модалка заказа
221
222
223
224
  {
      color:#103b4e
  }
  
8528ff71   Eugeny Galkovskiy   Запись на приём, ...
225
  .datepicker-wr .ui-datepicker-unselectable.ui-state-disabled span,.datepicker-wr2 .ui-datepicker-unselectable.ui-state-disabled span
d516cc76   Eugeny Galkovskiy   Модалка заказа
226
227
228
229
230
231
232
233
234
235
  {
      color:#7499bd;
      font-size:17px;
      text-decoration:none;
      border-radius:50%;
      display:inherit;
      left:9px;
      position:relative
  }
  
8528ff71   Eugeny Galkovskiy   Запись на приём, ...
236
  .datepicker-wr .ui-datepicker-calendar a,.datepicker-wr .ui-datepicker-unselectable.ui-state-disabled span,.datepicker-wr2 .ui-datepicker-calendar a,.datepicker-wr2 .ui-datepicker-unselectable.ui-state-disabled span
d516cc76   Eugeny Galkovskiy   Модалка заказа
237
238
239
240
241
242
243
244
  {
      width:23px;
      height:23px;
      line-height:21px;
      border:none;
      background-color:#fff
  }
  
8528ff71   Eugeny Galkovskiy   Запись на приём, ...
245
  .datepicker-wr .ui-datepicker-next.ui-corner-all,.datepicker-wr .ui-datepicker-prev.ui-corner-all,.datepicker-wr2 .ui-datepicker-next.ui-corner-all,.datepicker-wr2 .ui-datepicker-prev.ui-corner-all
d516cc76   Eugeny Galkovskiy   Модалка заказа
246
247
248
249
250
251
252
253
254
255
256
257
  {
      width:20px;
      height:20px;
      background-image:url(../img/calendar_arrows.png);
      overflow:hidden;
      text-indent:100%;
      background-repeat:no-repeat;
      top:5px;
      cursor:pointer;
      position:absolute
  }
  
8528ff71   Eugeny Galkovskiy   Запись на приём, ...
258
  .datepicker-wr .ui-datepicker-next.ui-corner-all,.datepicker-wr2 .ui-datepicker-next.ui-corner-all
d516cc76   Eugeny Galkovskiy   Модалка заказа
259
260
261
262
263
264
265
266
267
268
269
270
271
  {
      background-position:0 -36px;
      right:1px;
      left:auto;
      margin-top:6px
  }
  
  .ui-datepicker .ui-datepicker-next span,.ui-datepicker .ui-datepicker-prev span,.ui-datepicker-next.ui-corner-all,.ui-datepicker-prev.ui-corner-all
  {
      border:none!important;
      outline:0!important
  }
  
8528ff71   Eugeny Galkovskiy   Запись на приём, ...
272
  .datepicker-wr .ui-datepicker-prev.ui-corner-all,.datepicker-wr2 .ui-datepicker-prev.ui-corner-all
d516cc76   Eugeny Galkovskiy   Модалка заказа
273
274
275
276
277
  {
      background-position:0 -66px;
      left:2px
  }
  
8528ff71   Eugeny Galkovskiy   Запись на приём, ...
278
  .datepicker-wr .ui-datepicker-prev.ui-corner-all.ui-state-disabled,.datepicker-wr2 .ui-datepicker-prev.ui-corner-all.ui-state-disabled
d516cc76   Eugeny Galkovskiy   Модалка заказа
279
280
281
282
283
  {
      background-position:0 -6px;
      cursor:default
  }
  
8528ff71   Eugeny Galkovskiy   Запись на приём, ...
284
  .datepicker-wr .datepicker-wr:after,.datepicker-wr2 .datepicker-wr2:after
d516cc76   Eugeny Galkovskiy   Модалка заказа
285
286
287
288
289
290
291
292
293
294
  {
      content:'';
      width:302px;
      height:1px;
      background-color:#ccc;
      position:absolute;
      left:8px;
      top:68px
  }
  
8528ff71   Eugeny Galkovskiy   Запись на приём, ...
295
  .datepicker-wr .ui-datepicker-calendar td,.datepicker-wr2 .ui-datepicker-calendar td
d516cc76   Eugeny Galkovskiy   Модалка заказа
296
297
298
299
  {
      height:26px
  }
  
8528ff71   Eugeny Galkovskiy   Запись на приём, ...
300
  .datepicker-wr .ui-state-active, .datepicker-wr2 .ui-state-active
d516cc76   Eugeny Galkovskiy   Модалка заказа
301
302
303
304
305
  {
      background:#fff200!important;
      box-shadow:0 -1px 0 3px #fff200
  }
  
8528ff71   Eugeny Galkovskiy   Запись на приём, ...
306
  .datepicker-wr,.datepicker-wr2
d516cc76   Eugeny Galkovskiy   Модалка заказа
307
308
309
310
311
312
313
314
315
316
317
318
  {
      color:#103b4e;
      width:100%;
      display:none;
      transition:.2s;
      -webkit-transition:.2s;
      -moz-transition:.2s;
      -o-transition:.2s;
      background:0 0;
      box-sizing:border-box
  }
  
8528ff71   Eugeny Galkovskiy   Запись на приём, ...
319
  .datepicker-wr.opened,.datepicker-wr2.opened
d516cc76   Eugeny Galkovskiy   Модалка заказа
320
321
322
323
  {
      display:block
  }
  
8528ff71   Eugeny Galkovskiy   Запись на приём, ...
324
  .datepicker-wr .ui-datepicker-next,.datepicker-wr .ui-datepicker-prev,.datepicker-wr2 .ui-datepicker-next,.datepicker-wr2 .ui-datepicker-prev
d516cc76   Eugeny Galkovskiy   Модалка заказа
325
326
327
328
329
330
331
  {
      background-color:inherit;
      margin-left:0;
      display:block;
      margin-top:6px
  }
  
8528ff71   Eugeny Galkovskiy   Запись на приём, ...
332
  .datepicker-wr .ui-datepicker-title,.datepicker-wr2 .ui-datepicker-title
d516cc76   Eugeny Galkovskiy   Модалка заказа
333
334
335
336
337
  {
      display:table;
      margin:0 auto
  }
  
8528ff71   Eugeny Galkovskiy   Запись на приём, ...
338
  .datepicker-wr .ui-datepicker-year,.datepicker-wr2 .ui-datepicker-year
d516cc76   Eugeny Galkovskiy   Модалка заказа
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
  {
      margin-left:10px
  }
  
  @media ( max-width: 640px ){
      .forms_ label{
          margin-top:3px;
          margin-bottom:3px;
      }
      .modal-header .close {
          margin-top: -2px;
          font-size: 35px;
          position: absolute;
          right: 15px;
      }
8528ff71   Eugeny Galkovskiy   Запись на приём, ...
354
      .datepicker-wr,.datepicker-wr2{
d516cc76   Eugeny Galkovskiy   Модалка заказа
355
356
357
          left:0;
      }
  }