bukazu-portal-react 2.1.3 → 2.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.MD +3 -0
- package/build/index.css +113 -113
- package/build/index.js +2485 -3702
- package/package.json +3 -3
- package/postcss.config.js +10 -7
- package/src/components/SearchPage/SearchPage.js +13 -0
package/CHANGELOG.MD
CHANGED
package/build/index.css
CHANGED
|
@@ -118,6 +118,7 @@
|
|
|
118
118
|
cursor: pointer;
|
|
119
119
|
}
|
|
120
120
|
.react-calendar__navigation {
|
|
121
|
+
display: flex;
|
|
121
122
|
height: 44px;
|
|
122
123
|
margin-bottom: 1em;
|
|
123
124
|
}
|
|
@@ -125,13 +126,13 @@
|
|
|
125
126
|
min-width: 44px;
|
|
126
127
|
background: none;
|
|
127
128
|
}
|
|
129
|
+
.react-calendar__navigation button:disabled {
|
|
130
|
+
background-color: #f0f0f0;
|
|
131
|
+
}
|
|
128
132
|
.react-calendar__navigation button:enabled:hover,
|
|
129
133
|
.react-calendar__navigation button:enabled:focus {
|
|
130
134
|
background-color: #e6e6e6;
|
|
131
135
|
}
|
|
132
|
-
.react-calendar__navigation button[disabled] {
|
|
133
|
-
background-color: #f0f0f0;
|
|
134
|
-
}
|
|
135
136
|
.react-calendar__month-view__weekdays {
|
|
136
137
|
text-align: center;
|
|
137
138
|
text-transform: uppercase;
|
|
@@ -141,15 +142,12 @@
|
|
|
141
142
|
.react-calendar__month-view__weekdays__weekday {
|
|
142
143
|
padding: 0.5em;
|
|
143
144
|
}
|
|
144
|
-
.react-calendar__month-view__weekNumbers {
|
|
145
|
-
font-weight: bold;
|
|
146
|
-
}
|
|
147
145
|
.react-calendar__month-view__weekNumbers .react-calendar__tile {
|
|
148
146
|
display: flex;
|
|
149
147
|
align-items: center;
|
|
150
148
|
justify-content: center;
|
|
151
149
|
font-size: 0.75em;
|
|
152
|
-
|
|
150
|
+
font-weight: bold;
|
|
153
151
|
}
|
|
154
152
|
.react-calendar__month-view__days__day--weekend {
|
|
155
153
|
color: #d10000;
|
|
@@ -164,9 +162,10 @@
|
|
|
164
162
|
}
|
|
165
163
|
.react-calendar__tile {
|
|
166
164
|
max-width: 100%;
|
|
167
|
-
|
|
168
|
-
padding: 0.75em 0.5em;
|
|
165
|
+
padding: 10px 6.6667px;
|
|
169
166
|
background: none;
|
|
167
|
+
text-align: center;
|
|
168
|
+
line-height: 16px;
|
|
170
169
|
}
|
|
171
170
|
.react-calendar__tile:disabled {
|
|
172
171
|
background-color: #f0f0f0;
|
|
@@ -201,8 +200,7 @@
|
|
|
201
200
|
background-color: #e6e6e6;
|
|
202
201
|
}
|
|
203
202
|
|
|
204
|
-
|
|
205
|
-
@media screen and (min-width: 1400px) {
|
|
203
|
+
@media screen and (min-width: 1400px) {
|
|
206
204
|
#bukazu-app div.calendar-container {
|
|
207
205
|
display: flex;
|
|
208
206
|
align-items: flex-start;
|
|
@@ -225,7 +223,7 @@
|
|
|
225
223
|
padding: 12px;
|
|
226
224
|
}
|
|
227
225
|
}
|
|
228
|
-
@media screen and (max-width: 993px) {
|
|
226
|
+
@media screen and (max-width: 993px) {
|
|
229
227
|
#bukazu-app .price-overview .calendar--picker {
|
|
230
228
|
flex-direction: column;
|
|
231
229
|
}
|
|
@@ -237,18 +235,20 @@
|
|
|
237
235
|
}
|
|
238
236
|
|
|
239
237
|
}
|
|
240
|
-
#bukazu-app .calendars-header {
|
|
238
|
+
#bukazu-app .calendars-header {
|
|
241
239
|
display: flex;
|
|
242
240
|
flex-direction: row;
|
|
243
|
-
justify-content: space-around
|
|
241
|
+
justify-content: space-around;
|
|
244
242
|
}
|
|
245
|
-
@media screen and (max-width: 992px) {
|
|
243
|
+
@media screen and (max-width: 992px) {
|
|
244
|
+
#bukazu-app .calendars-header {
|
|
246
245
|
/* flex-direction: column; */
|
|
246
|
+
}
|
|
247
247
|
#bukazu-app .calendars-header .col {
|
|
248
248
|
margin: 4px 8px;
|
|
249
249
|
}
|
|
250
250
|
}
|
|
251
|
-
#bukazu-app .calendars-header .col .icon {
|
|
251
|
+
#bukazu-app .calendars-header .col .icon {
|
|
252
252
|
padding: 8px 40px;
|
|
253
253
|
background-color: rgb(23, 190, 187);
|
|
254
254
|
background: var(--bukazu-button);
|
|
@@ -258,55 +258,55 @@
|
|
|
258
258
|
align-items: center;
|
|
259
259
|
justify-content: center;
|
|
260
260
|
}
|
|
261
|
-
#bukazu-app .calendars-header .col .icon svg {
|
|
261
|
+
#bukazu-app .calendars-header .col .icon svg {
|
|
262
262
|
height: 18px;
|
|
263
263
|
}
|
|
264
|
-
#bukazu-app .calendars-header .col .icon:hover {
|
|
264
|
+
#bukazu-app .calendars-header .col .icon:hover {
|
|
265
265
|
box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
|
|
266
266
|
}
|
|
267
|
-
#bukazu-app .assistance {
|
|
267
|
+
#bukazu-app .assistance {
|
|
268
268
|
padding: 16px;
|
|
269
269
|
}
|
|
270
|
-
#bukazu-app .assistance span {
|
|
270
|
+
#bukazu-app .assistance span {
|
|
271
271
|
font-weight: bold;
|
|
272
272
|
}
|
|
273
|
-
#bukazu-app .calendars-row {
|
|
273
|
+
#bukazu-app .calendars-row {
|
|
274
274
|
display: flex;
|
|
275
275
|
flex-wrap: wrap;
|
|
276
276
|
justify-content: flex-start;
|
|
277
277
|
}
|
|
278
|
-
#bukazu-app .calendar {
|
|
278
|
+
#bukazu-app .calendar {
|
|
279
279
|
min-width: 48%;
|
|
280
280
|
padding: 16px 1%;
|
|
281
281
|
box-sizing: border-box;
|
|
282
|
-
background: var(--month_background)
|
|
283
|
-
/* box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.25); */
|
|
284
|
-
/* margin: 16px 8px; */
|
|
282
|
+
background: var(--month_background);
|
|
285
283
|
}
|
|
286
|
-
|
|
284
|
+
/* margin: 16px 8px; */
|
|
285
|
+
#bukazu-app .calendar.calendar-1 {
|
|
287
286
|
min-width: 98%;
|
|
288
287
|
}
|
|
289
|
-
|
|
288
|
+
/* box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.25); */
|
|
289
|
+
#bukazu-app .calendar.calendar-2 {
|
|
290
290
|
min-width: 48%;
|
|
291
291
|
}
|
|
292
|
-
#bukazu-app .calendar.calendar-3 {
|
|
292
|
+
#bukazu-app .calendar.calendar-3 {
|
|
293
293
|
min-width: 32%;
|
|
294
294
|
}
|
|
295
|
-
#bukazu-app .calendar.calendar-4 {
|
|
295
|
+
#bukazu-app .calendar.calendar-4 {
|
|
296
296
|
min-width: calc(25% - 16px);
|
|
297
297
|
}
|
|
298
|
-
#bukazu-app .calendar .header {
|
|
298
|
+
#bukazu-app .calendar .header {
|
|
299
299
|
background-color: rgba(211, 211, 211, 0.2);
|
|
300
300
|
}
|
|
301
|
-
#bukazu-app .calendar .row {
|
|
301
|
+
#bukazu-app .calendar .row {
|
|
302
302
|
width: 100%;
|
|
303
303
|
display: flex;
|
|
304
|
-
flex: 1 1 auto
|
|
304
|
+
flex: 1 1 auto;
|
|
305
305
|
}
|
|
306
|
-
#bukazu-app .calendar .row.days {
|
|
306
|
+
#bukazu-app .calendar .row.days {
|
|
307
307
|
border-bottom: 1px solid rgba(211, 211, 211, 0.5);
|
|
308
308
|
}
|
|
309
|
-
#bukazu-app .calendar .col {
|
|
309
|
+
#bukazu-app .calendar .col {
|
|
310
310
|
width: 100%;
|
|
311
311
|
/* border: solid 1px #fff; */
|
|
312
312
|
padding: 4px;
|
|
@@ -314,55 +314,55 @@
|
|
|
314
314
|
text-align: center;
|
|
315
315
|
transition: all 0.5s ease;
|
|
316
316
|
}
|
|
317
|
-
#bukazu-app .calendar .col-center {
|
|
317
|
+
#bukazu-app .calendar .col-center {
|
|
318
318
|
text-align: center;
|
|
319
319
|
}
|
|
320
|
-
#bukazu-app .calendar .col-start {
|
|
320
|
+
#bukazu-app .calendar .col-start {
|
|
321
321
|
text-align: left;
|
|
322
322
|
}
|
|
323
|
-
#bukazu-app .calendar .col-end {
|
|
323
|
+
#bukazu-app .calendar .col-end {
|
|
324
324
|
text-align: right;
|
|
325
325
|
}
|
|
326
|
-
#bukazu-app .calendar .cell {
|
|
326
|
+
#bukazu-app .calendar .cell {
|
|
327
327
|
background: #6eeb83;
|
|
328
328
|
background: var(--bukazu-cell);
|
|
329
329
|
}
|
|
330
|
-
#bukazu-app .calendar .disabled {
|
|
330
|
+
#bukazu-app .calendar .disabled {
|
|
331
331
|
opacity: 0;
|
|
332
332
|
}
|
|
333
|
-
#bukazu-app .calendar .arrival {
|
|
333
|
+
#bukazu-app .calendar .arrival {
|
|
334
334
|
background: #6eeb83;
|
|
335
335
|
background: var(--bukazu-arrival);
|
|
336
336
|
cursor: pointer;
|
|
337
337
|
font-weight: bold;
|
|
338
338
|
text-decoration: underline;
|
|
339
339
|
}
|
|
340
|
-
#bukazu-app .calendar .discount {
|
|
340
|
+
#bukazu-app .calendar .discount {
|
|
341
341
|
background: orange;
|
|
342
342
|
background: var(--bukazu-discount);
|
|
343
343
|
}
|
|
344
|
-
/* .discount.arrival {
|
|
344
|
+
/* .discount.arrival {
|
|
345
345
|
background: linear-gradient(
|
|
346
346
|
45deg,
|
|
347
347
|
var(--bukazu-discount) 50%,
|
|
348
348
|
var(--bukazu-arrival) 50%
|
|
349
349
|
);
|
|
350
350
|
} */
|
|
351
|
-
#bukazu-app .calendar .booked-departure {
|
|
351
|
+
#bukazu-app .calendar .booked-departure {
|
|
352
352
|
background: linear-gradient(
|
|
353
353
|
45deg,
|
|
354
354
|
var(--bukazu-cell) 50%,
|
|
355
355
|
var(--bukazu-booked) 50%
|
|
356
356
|
);
|
|
357
357
|
}
|
|
358
|
-
#bukazu-app .calendar .discount.booked-departure {
|
|
358
|
+
#bukazu-app .calendar .discount.booked-departure {
|
|
359
359
|
background: linear-gradient(
|
|
360
360
|
45deg,
|
|
361
361
|
var(--bukazu-discount) 50%,
|
|
362
362
|
var(--bukazu-booked) 50%
|
|
363
363
|
);
|
|
364
364
|
}
|
|
365
|
-
#bukazu-app .calendar .departure.discount.booked-departure,
|
|
365
|
+
#bukazu-app .calendar .departure.discount.booked-departure,
|
|
366
366
|
#bukazu-app .calendar .departure.booked-departure,
|
|
367
367
|
#bukazu-app .calendar .departure.booked {
|
|
368
368
|
background: linear-gradient(
|
|
@@ -371,7 +371,7 @@
|
|
|
371
371
|
var(--bukazu-booked) 50%
|
|
372
372
|
);
|
|
373
373
|
}
|
|
374
|
-
#bukazu-app .calendar .departure-arrival {
|
|
374
|
+
#bukazu-app .calendar .departure-arrival {
|
|
375
375
|
background: linear-gradient(
|
|
376
376
|
45deg,
|
|
377
377
|
var(--bukazu-booked) 50%,
|
|
@@ -379,82 +379,82 @@
|
|
|
379
379
|
) !important;
|
|
380
380
|
cursor: pointer;
|
|
381
381
|
}
|
|
382
|
-
#bukazu-app .calendar .discount.departure-arrival {
|
|
382
|
+
#bukazu-app .calendar .discount.departure-arrival {
|
|
383
383
|
background: linear-gradient(
|
|
384
384
|
45deg,
|
|
385
385
|
var(--bukazu-booked) 50%,
|
|
386
386
|
var(--bukazu-discount) 50%
|
|
387
387
|
) !important;
|
|
388
388
|
}
|
|
389
|
-
#bukazu-app .calendar .icon {
|
|
389
|
+
#bukazu-app .calendar .icon {
|
|
390
390
|
cursor: pointer;
|
|
391
391
|
}
|
|
392
|
-
#bukazu-app .calendar .discount.arrival.departure,
|
|
392
|
+
#bukazu-app .calendar .discount.arrival.departure,
|
|
393
393
|
#bukazu-app .calendar .departure {
|
|
394
394
|
font-weight: bold;
|
|
395
395
|
background: yellow;
|
|
396
396
|
background: var(--bukazu-departure);
|
|
397
397
|
cursor: pointer;
|
|
398
398
|
}
|
|
399
|
-
#bukazu-app .calendar .selected {
|
|
399
|
+
#bukazu-app .calendar .selected {
|
|
400
400
|
background: rgb(23, 190, 187) !important;
|
|
401
401
|
background: var(--bukazu-button) !important;
|
|
402
402
|
}
|
|
403
|
-
#bukazu-app .calendar .booked {
|
|
403
|
+
#bukazu-app .calendar .booked {
|
|
404
404
|
background: #ea2b1f;
|
|
405
405
|
background: var(--bukazu-booked);
|
|
406
406
|
color: #000;
|
|
407
407
|
/* filter: invert(100%) */
|
|
408
408
|
}
|
|
409
|
-
#bukazu-app .legend {
|
|
409
|
+
#bukazu-app .legend {
|
|
410
410
|
display: flex;
|
|
411
411
|
flex-wrap: wrap;
|
|
412
|
-
padding: 8px 16px
|
|
412
|
+
padding: 8px 16px;
|
|
413
413
|
}
|
|
414
|
-
@media screen and (max-width: 992px) {
|
|
414
|
+
@media screen and (max-width: 992px) {
|
|
415
415
|
#bukazu-app .legend {
|
|
416
416
|
flex-direction: column
|
|
417
417
|
}
|
|
418
418
|
}
|
|
419
|
-
#bukazu-app .legend > div {
|
|
419
|
+
#bukazu-app .legend > div {
|
|
420
420
|
display: flex;
|
|
421
|
-
padding: 0 16px
|
|
421
|
+
padding: 0 16px;
|
|
422
422
|
}
|
|
423
|
-
@media screen and (max-width: 992px) {
|
|
424
|
-
|
|
423
|
+
@media screen and (max-width: 992px) {
|
|
424
|
+
#bukazu-app .legend > div {
|
|
425
425
|
padding: 4px 8px
|
|
426
426
|
}
|
|
427
427
|
}
|
|
428
|
-
#bukazu-app .legend-field {
|
|
428
|
+
#bukazu-app .legend-field {
|
|
429
429
|
display: block;
|
|
430
430
|
width: 16px;
|
|
431
431
|
height: 16px;
|
|
432
|
-
margin: 0 8px 0 0
|
|
432
|
+
margin: 0 8px 0 0;
|
|
433
433
|
}
|
|
434
|
-
#bukazu-app .legend-field.booked {
|
|
434
|
+
#bukazu-app .legend-field.booked {
|
|
435
435
|
background: #ea2b1f;
|
|
436
436
|
background: var(--bukazu-booked);
|
|
437
437
|
}
|
|
438
|
-
#bukazu-app .legend-field.arrival {
|
|
438
|
+
#bukazu-app .legend-field.arrival {
|
|
439
439
|
background: #6eeb83;
|
|
440
440
|
background: var(--bukazu-arrival);
|
|
441
441
|
}
|
|
442
|
-
#bukazu-app .legend-field.departure {
|
|
442
|
+
#bukazu-app .legend-field.departure {
|
|
443
443
|
background: yellow;
|
|
444
444
|
background: var(--bukazu-departure);
|
|
445
445
|
}
|
|
446
|
-
#bukazu-app .legend-field.last_minute_discount {
|
|
446
|
+
#bukazu-app .legend-field.last_minute_discount {
|
|
447
447
|
background: orange;
|
|
448
448
|
background: var(--bukazu-discount);
|
|
449
449
|
}
|
|
450
|
-
#bukazu-app .calendar--picker {
|
|
450
|
+
#bukazu-app .calendar--picker {
|
|
451
451
|
padding: 8px;
|
|
452
452
|
display: flex;
|
|
453
453
|
justify-content: space-around;
|
|
454
454
|
width: 100%;
|
|
455
455
|
box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.25);
|
|
456
456
|
}
|
|
457
|
-
#bukazu-app .calendar--picker--date {
|
|
457
|
+
#bukazu-app .calendar--picker--date {
|
|
458
458
|
width: 20%;
|
|
459
459
|
display: flex;
|
|
460
460
|
flex-direction: column;
|
|
@@ -462,30 +462,30 @@
|
|
|
462
462
|
align-items: center;
|
|
463
463
|
padding: 8px 16px;
|
|
464
464
|
}
|
|
465
|
-
#bukazu-app .calendar--picker--date span.name {
|
|
465
|
+
#bukazu-app .calendar--picker--date span.name {
|
|
466
466
|
font-size: 18px;
|
|
467
467
|
border-bottom: 1px solid #ccc;
|
|
468
|
-
padding: 4px 0
|
|
468
|
+
padding: 4px 0;
|
|
469
469
|
}
|
|
470
|
-
@media screen and (max-width: 1200px) {
|
|
471
|
-
|
|
470
|
+
@media screen and (max-width: 1200px) {
|
|
471
|
+
#bukazu-app .calendar--picker--date span.name {
|
|
472
472
|
font-size: 16px
|
|
473
473
|
}
|
|
474
474
|
}
|
|
475
|
-
#bukazu-app .calendar--picker--date span.detail {
|
|
475
|
+
#bukazu-app .calendar--picker--date span.detail {
|
|
476
476
|
display: flex;
|
|
477
477
|
padding: 4px 0;
|
|
478
478
|
opacity: 0.9;
|
|
479
479
|
width: 100%;
|
|
480
480
|
justify-content: center;
|
|
481
|
-
align-items: center
|
|
481
|
+
align-items: center;
|
|
482
482
|
}
|
|
483
|
-
@media screen and (max-width: 1200px) {
|
|
484
|
-
|
|
483
|
+
@media screen and (max-width: 1200px) {
|
|
484
|
+
#bukazu-app .calendar--picker--date span.detail {
|
|
485
485
|
font-size: 14px
|
|
486
486
|
}
|
|
487
487
|
}
|
|
488
|
-
#bukazu-app .calendar--picker--persons {
|
|
488
|
+
#bukazu-app .calendar--picker--persons {
|
|
489
489
|
border: 1px solid #ccc;
|
|
490
490
|
width: 100%;
|
|
491
491
|
-webkit-appearance: none;
|
|
@@ -493,7 +493,7 @@
|
|
|
493
493
|
appearance: none;
|
|
494
494
|
font-size: 16px;
|
|
495
495
|
}
|
|
496
|
-
#bukazu-app .calendar--picker .button {
|
|
496
|
+
#bukazu-app .calendar--picker .button {
|
|
497
497
|
width: 20%;
|
|
498
498
|
background: var(--bukazu-button_cta);
|
|
499
499
|
color: #fff;
|
|
@@ -504,13 +504,13 @@
|
|
|
504
504
|
border: 0;
|
|
505
505
|
font-size: 18px;
|
|
506
506
|
box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
|
|
507
|
-
cursor: pointer
|
|
507
|
+
cursor: pointer;
|
|
508
508
|
}
|
|
509
|
-
#bukazu-app .calendar--picker .button:disabled {
|
|
509
|
+
#bukazu-app .calendar--picker .button:disabled {
|
|
510
510
|
background: #ccc;
|
|
511
511
|
cursor: not-allowed;
|
|
512
512
|
}
|
|
513
|
-
#bukazu-app .calendar--picker .button:hover {
|
|
513
|
+
#bukazu-app .calendar--picker .button:hover {
|
|
514
514
|
box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
|
|
515
515
|
}
|
|
516
516
|
#bukazu-app .form {
|
|
@@ -518,7 +518,7 @@
|
|
|
518
518
|
margin: 0 auto;
|
|
519
519
|
display: flex;
|
|
520
520
|
flex-direction: row;
|
|
521
|
-
position: relative
|
|
521
|
+
position: relative;
|
|
522
522
|
}
|
|
523
523
|
@media screen and (max-width: 992px) {
|
|
524
524
|
#bukazu-app .form {
|
|
@@ -544,10 +544,10 @@
|
|
|
544
544
|
padding-bottom: 4px;
|
|
545
545
|
}
|
|
546
546
|
#bukazu-app .form-content {
|
|
547
|
-
width: 70
|
|
547
|
+
width: 70%;
|
|
548
548
|
}
|
|
549
549
|
@media screen and (max-width: 992px) {
|
|
550
|
-
|
|
550
|
+
#bukazu-app .form-content {
|
|
551
551
|
width: 100%
|
|
552
552
|
}
|
|
553
553
|
}
|
|
@@ -569,10 +569,10 @@
|
|
|
569
569
|
right: 10%;
|
|
570
570
|
min-width: 400px;
|
|
571
571
|
max-width: 500px;
|
|
572
|
-
align-self: flex-start
|
|
572
|
+
align-self: flex-start;
|
|
573
573
|
}
|
|
574
574
|
@media screen and (max-width: 992px) {
|
|
575
|
-
|
|
575
|
+
#bukazu-app .form-sum {
|
|
576
576
|
min-width: 100%
|
|
577
577
|
}
|
|
578
578
|
}
|
|
@@ -582,10 +582,10 @@
|
|
|
582
582
|
}
|
|
583
583
|
#bukazu-app .form-sum .house-details img {
|
|
584
584
|
padding: 16px 0;
|
|
585
|
-
height: 200px
|
|
585
|
+
height: 200px;
|
|
586
586
|
}
|
|
587
587
|
@media screen and (max-width: 992px) {
|
|
588
|
-
|
|
588
|
+
#bukazu-app .form-sum .house-details img {
|
|
589
589
|
max-width: 100%;
|
|
590
590
|
height: auto
|
|
591
591
|
}
|
|
@@ -665,7 +665,7 @@
|
|
|
665
665
|
font: inherit;
|
|
666
666
|
cursor: pointer;
|
|
667
667
|
outline: inherit;
|
|
668
|
-
color: var(--bukazu-button)
|
|
668
|
+
color: var(--bukazu-button);
|
|
669
669
|
}
|
|
670
670
|
#bukazu-app .form-sum .terms button:hover {
|
|
671
671
|
box-shadow: none;
|
|
@@ -678,7 +678,7 @@
|
|
|
678
678
|
color: #fff;
|
|
679
679
|
font-size: 20px;
|
|
680
680
|
background: var(--bukazu-button_cta);
|
|
681
|
-
cursor: pointer
|
|
681
|
+
cursor: pointer;
|
|
682
682
|
}
|
|
683
683
|
#bukazu-app .form-sum button:hover {
|
|
684
684
|
box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.25);
|
|
@@ -691,10 +691,10 @@
|
|
|
691
691
|
#bukazu-app .form-row select,
|
|
692
692
|
#bukazu-app .form-row input,
|
|
693
693
|
#bukazu-app .form-row .bukazu-date-picker {
|
|
694
|
-
max-width: 50
|
|
694
|
+
max-width: 50%;
|
|
695
695
|
}
|
|
696
696
|
@media screen and (max-width: 992px) {
|
|
697
|
-
|
|
697
|
+
#bukazu-app .form-row select,
|
|
698
698
|
#bukazu-app .form-row input,
|
|
699
699
|
#bukazu-app .form-row .bukazu-date-picker {
|
|
700
700
|
max-width: 100%
|
|
@@ -709,17 +709,17 @@
|
|
|
709
709
|
flex-direction: row;
|
|
710
710
|
/* justify-content: space-between; */
|
|
711
711
|
flex-wrap: wrap;
|
|
712
|
-
width: 100
|
|
712
|
+
width: 100%;
|
|
713
713
|
}
|
|
714
714
|
#bukazu-app .form-row.inline.hidden {
|
|
715
715
|
display: none;
|
|
716
716
|
}
|
|
717
717
|
#bukazu-app .form-row.inline label {
|
|
718
718
|
width: 30%;
|
|
719
|
-
font-size: 16px
|
|
719
|
+
font-size: 16px;
|
|
720
720
|
}
|
|
721
721
|
@media screen and (max-width: 992px) {
|
|
722
|
-
|
|
722
|
+
#bukazu-app .form-row.inline label {
|
|
723
723
|
width: auto
|
|
724
724
|
}
|
|
725
725
|
}
|
|
@@ -727,10 +727,10 @@
|
|
|
727
727
|
#bukazu-app .form-row.inline input {
|
|
728
728
|
width: auto;
|
|
729
729
|
min-width: 150px;
|
|
730
|
-
padding: 8px 64px 8px 16px
|
|
730
|
+
padding: 8px 64px 8px 16px;
|
|
731
731
|
}
|
|
732
732
|
@media screen and (max-width: 992px) {
|
|
733
|
-
|
|
733
|
+
#bukazu-app .form-row.inline select,
|
|
734
734
|
#bukazu-app .form-row.inline input {
|
|
735
735
|
order: 3;
|
|
736
736
|
width: 100%
|
|
@@ -1712,7 +1712,7 @@
|
|
|
1712
1712
|
right: 0;
|
|
1713
1713
|
background-color:rgba(0,0,0,0.3);
|
|
1714
1714
|
padding: 50px;
|
|
1715
|
-
z-index: 1
|
|
1715
|
+
z-index: 1;
|
|
1716
1716
|
}
|
|
1717
1717
|
@media screen and (max-width: 992px) {
|
|
1718
1718
|
.bukazu-modal-container {
|
|
@@ -1787,7 +1787,7 @@
|
|
|
1787
1787
|
padding: 16px;
|
|
1788
1788
|
display: flex;
|
|
1789
1789
|
flex-wrap: wrap;
|
|
1790
|
-
background-color: #fff
|
|
1790
|
+
background-color: #fff;
|
|
1791
1791
|
}
|
|
1792
1792
|
@media screen and (max-width: 992px) {
|
|
1793
1793
|
.price-overview {
|
|
@@ -1801,14 +1801,14 @@
|
|
|
1801
1801
|
text-align: left;
|
|
1802
1802
|
}
|
|
1803
1803
|
.price-overview tr {
|
|
1804
|
-
border-bottom: 1px solid rgba(0, 0, 0, 0.25)
|
|
1804
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.25);
|
|
1805
1805
|
}
|
|
1806
1806
|
.price-overview tr.hidden {
|
|
1807
1807
|
display: none;
|
|
1808
1808
|
}
|
|
1809
1809
|
.price-overview td {
|
|
1810
1810
|
padding: 4px;
|
|
1811
|
-
width: 50
|
|
1811
|
+
width: 50%;
|
|
1812
1812
|
}
|
|
1813
1813
|
.price-overview td.price {
|
|
1814
1814
|
text-align: right;
|
|
@@ -1837,10 +1837,10 @@
|
|
|
1837
1837
|
justify-content: center;
|
|
1838
1838
|
flex-wrap: wrap;
|
|
1839
1839
|
align-items: flex-start;
|
|
1840
|
-
padding: 16px
|
|
1840
|
+
padding: 16px;
|
|
1841
1841
|
}
|
|
1842
1842
|
@media screen and (max-width: 992px) {
|
|
1843
|
-
|
|
1843
|
+
.price-overview--build {
|
|
1844
1844
|
padding: 16px 0;
|
|
1845
1845
|
min-height: 0px
|
|
1846
1846
|
}
|
|
@@ -1869,11 +1869,11 @@
|
|
|
1869
1869
|
display: flex;
|
|
1870
1870
|
flex-direction: column;
|
|
1871
1871
|
justify-content: center;
|
|
1872
|
-
align-items: center
|
|
1872
|
+
align-items: center;
|
|
1873
1873
|
|
|
1874
1874
|
}
|
|
1875
1875
|
@media screen and (max-width: 992px) {
|
|
1876
|
-
|
|
1876
|
+
.price-overview--book {
|
|
1877
1877
|
padding: 16px 0
|
|
1878
1878
|
|
|
1879
1879
|
}
|
|
@@ -1885,18 +1885,18 @@
|
|
|
1885
1885
|
font-size: 28px;
|
|
1886
1886
|
}
|
|
1887
1887
|
@media screen and (min-width: 1200px) {
|
|
1888
|
-
|
|
1888
|
+
.price-overview--book .price {
|
|
1889
1889
|
font-size: 32px;
|
|
1890
1890
|
}
|
|
1891
1891
|
}
|
|
1892
1892
|
.price-overview--book .price {
|
|
1893
1893
|
font-weight: bold;
|
|
1894
|
-
|
|
1894
|
+
}
|
|
1895
1895
|
.price-overview--book i {
|
|
1896
|
-
font-size: 14px
|
|
1896
|
+
font-size: 14px;
|
|
1897
1897
|
}
|
|
1898
1898
|
@media screen and (min-width: 1200px) {
|
|
1899
|
-
|
|
1899
|
+
.price-overview--book i {
|
|
1900
1900
|
font-size: 16px
|
|
1901
1901
|
}
|
|
1902
1902
|
}
|
|
@@ -1920,7 +1920,7 @@
|
|
|
1920
1920
|
display: block;
|
|
1921
1921
|
box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.25);
|
|
1922
1922
|
border-radius: 16px;
|
|
1923
|
-
transition: all 0.5s ease
|
|
1923
|
+
transition: all 0.5s ease;
|
|
1924
1924
|
}
|
|
1925
1925
|
.bukazu-result:hover {
|
|
1926
1926
|
box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.25);
|
|
@@ -2015,7 +2015,7 @@
|
|
|
2015
2015
|
}
|
|
2016
2016
|
@media screen and (min-width: 992px) {
|
|
2017
2017
|
.list .bukazu-result {
|
|
2018
|
-
width: 100
|
|
2018
|
+
width: 100%
|
|
2019
2019
|
}
|
|
2020
2020
|
.list .bukazu-result .bukazu-result-inner {
|
|
2021
2021
|
flex-direction: row;
|
|
@@ -2042,7 +2042,7 @@
|
|
|
2042
2042
|
flex-wrap: wrap;
|
|
2043
2043
|
padding: 16px;
|
|
2044
2044
|
align-items: stretch;
|
|
2045
|
-
align-content: flex-start
|
|
2045
|
+
align-content: flex-start;
|
|
2046
2046
|
}
|
|
2047
2047
|
@media screen and (max-width: 992px) {
|
|
2048
2048
|
#bukazu-app #results {
|
|
@@ -2090,7 +2090,7 @@
|
|
|
2090
2090
|
background: var(--bukazu-button);
|
|
2091
2091
|
padding: 8px;
|
|
2092
2092
|
border: 0;
|
|
2093
|
-
font-weight: bold
|
|
2093
|
+
font-weight: bold;
|
|
2094
2094
|
}
|
|
2095
2095
|
#bukazu-app #search-page .filters-button.fixed-mobile {
|
|
2096
2096
|
position: fixed;
|
|
@@ -2117,7 +2117,7 @@
|
|
|
2117
2117
|
#bukazu-app #search-page .filters {
|
|
2118
2118
|
width: 100%;
|
|
2119
2119
|
display: none;
|
|
2120
|
-
transition: all 0.3s ease
|
|
2120
|
+
transition: all 0.3s ease;
|
|
2121
2121
|
}
|
|
2122
2122
|
#bukazu-app #search-page .filters.showOnMobile {
|
|
2123
2123
|
display: block
|
|
@@ -2182,7 +2182,7 @@
|
|
|
2182
2182
|
line-height: 1.25;
|
|
2183
2183
|
color: #007bff;
|
|
2184
2184
|
background-color: #fff;
|
|
2185
|
-
border: 1px solid #dee2e6
|
|
2185
|
+
border: 1px solid #dee2e6;
|
|
2186
2186
|
}
|
|
2187
2187
|
.bu-pagination li:hover {
|
|
2188
2188
|
z-index: 2;
|