bukazu-portal-react 2.1.4 → 2.1.5
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/build/index.css +173 -172
- package/package.json +1 -1
- package/postcss.config.js +10 -7
package/build/index.css
CHANGED
|
@@ -200,8 +200,7 @@
|
|
|
200
200
|
background-color: #e6e6e6;
|
|
201
201
|
}
|
|
202
202
|
|
|
203
|
-
|
|
204
|
-
@media screen and (min-width: 1400px) {
|
|
203
|
+
@media screen and (min-width: 1400px) {
|
|
205
204
|
#bukazu-app div.calendar-container {
|
|
206
205
|
display: flex;
|
|
207
206
|
align-items: flex-start;
|
|
@@ -224,7 +223,7 @@
|
|
|
224
223
|
padding: 12px;
|
|
225
224
|
}
|
|
226
225
|
}
|
|
227
|
-
@media screen and (max-width: 993px) {
|
|
226
|
+
@media screen and (max-width: 993px) {
|
|
228
227
|
#bukazu-app .price-overview .calendar--picker {
|
|
229
228
|
flex-direction: column;
|
|
230
229
|
}
|
|
@@ -236,18 +235,20 @@
|
|
|
236
235
|
}
|
|
237
236
|
|
|
238
237
|
}
|
|
239
|
-
#bukazu-app .calendars-header {
|
|
238
|
+
#bukazu-app .calendars-header {
|
|
240
239
|
display: flex;
|
|
241
240
|
flex-direction: row;
|
|
242
|
-
justify-content: space-around
|
|
241
|
+
justify-content: space-around;
|
|
243
242
|
}
|
|
244
|
-
@media screen and (max-width: 992px) {
|
|
243
|
+
@media screen and (max-width: 992px) {
|
|
244
|
+
#bukazu-app .calendars-header {
|
|
245
245
|
/* flex-direction: column; */
|
|
246
|
+
}
|
|
246
247
|
#bukazu-app .calendars-header .col {
|
|
247
248
|
margin: 4px 8px;
|
|
248
249
|
}
|
|
249
250
|
}
|
|
250
|
-
#bukazu-app .calendars-header .col .icon {
|
|
251
|
+
#bukazu-app .calendars-header .col .icon {
|
|
251
252
|
padding: 8px 40px;
|
|
252
253
|
background-color: rgb(23, 190, 187);
|
|
253
254
|
background: var(--bukazu-button);
|
|
@@ -257,111 +258,111 @@
|
|
|
257
258
|
align-items: center;
|
|
258
259
|
justify-content: center;
|
|
259
260
|
}
|
|
260
|
-
#bukazu-app .calendars-header .col .icon svg {
|
|
261
|
+
#bukazu-app .calendars-header .col .icon svg {
|
|
261
262
|
height: 18px;
|
|
262
263
|
}
|
|
263
|
-
#bukazu-app .calendars-header .col .icon:hover {
|
|
264
|
+
#bukazu-app .calendars-header .col .icon:hover {
|
|
264
265
|
box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
|
|
265
266
|
}
|
|
266
|
-
#bukazu-app .assistance {
|
|
267
|
+
#bukazu-app .assistance {
|
|
267
268
|
padding: 16px;
|
|
268
269
|
}
|
|
269
|
-
#bukazu-app .assistance span {
|
|
270
|
+
#bukazu-app .assistance span {
|
|
270
271
|
font-weight: bold;
|
|
271
272
|
}
|
|
272
|
-
#bukazu-app .calendars-row {
|
|
273
|
+
#bukazu-app .calendars-row {
|
|
273
274
|
display: flex;
|
|
274
275
|
flex-wrap: wrap;
|
|
275
276
|
justify-content: flex-start;
|
|
276
277
|
}
|
|
277
|
-
#bukazu-app .calendar {
|
|
278
|
+
#bukazu-app .calendar {
|
|
278
279
|
min-width: 48%;
|
|
279
280
|
padding: 16px 1%;
|
|
280
281
|
box-sizing: border-box;
|
|
281
|
-
background: var(--month_background)
|
|
282
|
-
/* box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.25); */
|
|
283
|
-
/* margin: 16px 8px; */
|
|
282
|
+
background: var(--month_background);
|
|
284
283
|
}
|
|
285
|
-
|
|
284
|
+
/* margin: 16px 8px; */
|
|
285
|
+
#bukazu-app .calendar.calendar-1 {
|
|
286
286
|
min-width: 98%;
|
|
287
287
|
}
|
|
288
|
-
|
|
288
|
+
/* box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.25); */
|
|
289
|
+
#bukazu-app .calendar.calendar-2 {
|
|
289
290
|
min-width: 48%;
|
|
290
291
|
}
|
|
291
|
-
#bukazu-app .calendar.calendar-3 {
|
|
292
|
+
#bukazu-app .calendar.calendar-3 {
|
|
292
293
|
min-width: 32%;
|
|
293
294
|
}
|
|
294
|
-
#bukazu-app .calendar.calendar-4 {
|
|
295
|
+
#bukazu-app .calendar.calendar-4 {
|
|
295
296
|
min-width: calc(25% - 16px);
|
|
296
297
|
}
|
|
297
|
-
#bukazu-app .calendar .header {
|
|
298
|
+
#bukazu-app .calendar .header {
|
|
298
299
|
background-color: rgba(211, 211, 211, 0.2);
|
|
299
300
|
}
|
|
300
|
-
#bukazu-app .calendar .row {
|
|
301
|
+
#bukazu-app .calendar .row {
|
|
301
302
|
width: 100%;
|
|
302
303
|
display: flex;
|
|
303
|
-
flex: 1 1 auto
|
|
304
|
+
flex: 1 1 auto;
|
|
304
305
|
}
|
|
305
|
-
#bukazu-app .calendar .row.days {
|
|
306
|
+
#bukazu-app .calendar .row.days {
|
|
306
307
|
border-bottom: 1px solid rgba(211, 211, 211, 0.5);
|
|
307
308
|
}
|
|
308
|
-
#bukazu-app .calendar .col {
|
|
309
|
+
#bukazu-app .calendar .col {
|
|
309
310
|
width: 100%;
|
|
310
311
|
/* border: solid 1px #fff; */
|
|
311
312
|
padding: 4px;
|
|
312
313
|
text-transform: capitalize;
|
|
313
314
|
text-align: center;
|
|
314
|
-
transition: all 0.5s ease
|
|
315
|
+
transition: all 0.5s ease;
|
|
315
316
|
}
|
|
316
|
-
#bukazu-app .calendar -center
|
|
317
|
+
#bukazu-app .calendar .col-center {
|
|
317
318
|
text-align: center;
|
|
318
319
|
}
|
|
319
|
-
#bukazu-app .calendar -start
|
|
320
|
+
#bukazu-app .calendar .col-start {
|
|
320
321
|
text-align: left;
|
|
321
322
|
}
|
|
322
|
-
#bukazu-app .calendar -end
|
|
323
|
+
#bukazu-app .calendar .col-end {
|
|
323
324
|
text-align: right;
|
|
324
325
|
}
|
|
325
|
-
#bukazu-app .calendar .cell {
|
|
326
|
+
#bukazu-app .calendar .cell {
|
|
326
327
|
background: #6eeb83;
|
|
327
328
|
background: var(--bukazu-cell);
|
|
328
329
|
}
|
|
329
|
-
#bukazu-app .calendar .disabled {
|
|
330
|
+
#bukazu-app .calendar .disabled {
|
|
330
331
|
opacity: 0;
|
|
331
332
|
}
|
|
332
|
-
#bukazu-app .calendar .arrival {
|
|
333
|
+
#bukazu-app .calendar .arrival {
|
|
333
334
|
background: #6eeb83;
|
|
334
335
|
background: var(--bukazu-arrival);
|
|
335
336
|
cursor: pointer;
|
|
336
337
|
font-weight: bold;
|
|
337
338
|
text-decoration: underline;
|
|
338
339
|
}
|
|
339
|
-
#bukazu-app .calendar .discount {
|
|
340
|
+
#bukazu-app .calendar .discount {
|
|
340
341
|
background: orange;
|
|
341
342
|
background: var(--bukazu-discount);
|
|
342
343
|
}
|
|
343
|
-
/* .discount.arrival {
|
|
344
|
+
/* .discount.arrival {
|
|
344
345
|
background: linear-gradient(
|
|
345
346
|
45deg,
|
|
346
347
|
var(--bukazu-discount) 50%,
|
|
347
348
|
var(--bukazu-arrival) 50%
|
|
348
349
|
);
|
|
349
350
|
} */
|
|
350
|
-
#bukazu-app .calendar .booked-departure {
|
|
351
|
+
#bukazu-app .calendar .booked-departure {
|
|
351
352
|
background: linear-gradient(
|
|
352
353
|
45deg,
|
|
353
354
|
var(--bukazu-cell) 50%,
|
|
354
355
|
var(--bukazu-booked) 50%
|
|
355
356
|
);
|
|
356
357
|
}
|
|
357
|
-
#bukazu-app .calendar .discount.booked-departure {
|
|
358
|
+
#bukazu-app .calendar .discount.booked-departure {
|
|
358
359
|
background: linear-gradient(
|
|
359
360
|
45deg,
|
|
360
361
|
var(--bukazu-discount) 50%,
|
|
361
362
|
var(--bukazu-booked) 50%
|
|
362
363
|
);
|
|
363
364
|
}
|
|
364
|
-
#bukazu-app .calendar .departure.discount.booked-departure,
|
|
365
|
+
#bukazu-app .calendar .departure.discount.booked-departure,
|
|
365
366
|
#bukazu-app .calendar .departure.booked-departure,
|
|
366
367
|
#bukazu-app .calendar .departure.booked {
|
|
367
368
|
background: linear-gradient(
|
|
@@ -370,7 +371,7 @@
|
|
|
370
371
|
var(--bukazu-booked) 50%
|
|
371
372
|
);
|
|
372
373
|
}
|
|
373
|
-
#bukazu-app .calendar .departure-arrival {
|
|
374
|
+
#bukazu-app .calendar .departure-arrival {
|
|
374
375
|
background: linear-gradient(
|
|
375
376
|
45deg,
|
|
376
377
|
var(--bukazu-booked) 50%,
|
|
@@ -378,82 +379,82 @@
|
|
|
378
379
|
) !important;
|
|
379
380
|
cursor: pointer;
|
|
380
381
|
}
|
|
381
|
-
#bukazu-app .calendar .discount.departure-arrival {
|
|
382
|
+
#bukazu-app .calendar .discount.departure-arrival {
|
|
382
383
|
background: linear-gradient(
|
|
383
384
|
45deg,
|
|
384
385
|
var(--bukazu-booked) 50%,
|
|
385
386
|
var(--bukazu-discount) 50%
|
|
386
387
|
) !important;
|
|
387
388
|
}
|
|
388
|
-
#bukazu-app .calendar .icon {
|
|
389
|
+
#bukazu-app .calendar .icon {
|
|
389
390
|
cursor: pointer;
|
|
390
391
|
}
|
|
391
|
-
#bukazu-app .calendar .discount.arrival.departure,
|
|
392
|
+
#bukazu-app .calendar .discount.arrival.departure,
|
|
392
393
|
#bukazu-app .calendar .departure {
|
|
393
394
|
font-weight: bold;
|
|
394
395
|
background: yellow;
|
|
395
396
|
background: var(--bukazu-departure);
|
|
396
397
|
cursor: pointer;
|
|
397
398
|
}
|
|
398
|
-
#bukazu-app .calendar .selected {
|
|
399
|
+
#bukazu-app .calendar .selected {
|
|
399
400
|
background: rgb(23, 190, 187) !important;
|
|
400
401
|
background: var(--bukazu-button) !important;
|
|
401
402
|
}
|
|
402
|
-
#bukazu-app .calendar .booked {
|
|
403
|
+
#bukazu-app .calendar .booked {
|
|
403
404
|
background: #ea2b1f;
|
|
404
405
|
background: var(--bukazu-booked);
|
|
405
406
|
color: #000;
|
|
406
407
|
/* filter: invert(100%) */
|
|
407
408
|
}
|
|
408
|
-
#bukazu-app .legend {
|
|
409
|
+
#bukazu-app .legend {
|
|
409
410
|
display: flex;
|
|
410
411
|
flex-wrap: wrap;
|
|
411
|
-
padding: 8px 16px
|
|
412
|
+
padding: 8px 16px;
|
|
412
413
|
}
|
|
413
|
-
@media screen and (max-width: 992px) {
|
|
414
|
+
@media screen and (max-width: 992px) {
|
|
414
415
|
#bukazu-app .legend {
|
|
415
416
|
flex-direction: column
|
|
416
417
|
}
|
|
417
418
|
}
|
|
418
|
-
#bukazu-app .legend > div {
|
|
419
|
+
#bukazu-app .legend > div {
|
|
419
420
|
display: flex;
|
|
420
|
-
padding: 0 16px
|
|
421
|
+
padding: 0 16px;
|
|
421
422
|
}
|
|
422
|
-
@media screen and (max-width: 992px) {
|
|
423
|
-
|
|
423
|
+
@media screen and (max-width: 992px) {
|
|
424
|
+
#bukazu-app .legend > div {
|
|
424
425
|
padding: 4px 8px
|
|
425
426
|
}
|
|
426
427
|
}
|
|
427
|
-
#bukazu-app -field
|
|
428
|
+
#bukazu-app .legend-field {
|
|
428
429
|
display: block;
|
|
429
430
|
width: 16px;
|
|
430
431
|
height: 16px;
|
|
431
|
-
margin: 0 8px 0 0
|
|
432
|
+
margin: 0 8px 0 0;
|
|
432
433
|
}
|
|
433
|
-
#bukazu-app -field.
|
|
434
|
+
#bukazu-app .legend-field.booked {
|
|
434
435
|
background: #ea2b1f;
|
|
435
436
|
background: var(--bukazu-booked);
|
|
436
437
|
}
|
|
437
|
-
#bukazu-app -field.
|
|
438
|
+
#bukazu-app .legend-field.arrival {
|
|
438
439
|
background: #6eeb83;
|
|
439
440
|
background: var(--bukazu-arrival);
|
|
440
441
|
}
|
|
441
|
-
#bukazu-app -field.
|
|
442
|
+
#bukazu-app .legend-field.departure {
|
|
442
443
|
background: yellow;
|
|
443
444
|
background: var(--bukazu-departure);
|
|
444
445
|
}
|
|
445
|
-
#bukazu-app -field.
|
|
446
|
+
#bukazu-app .legend-field.last_minute_discount {
|
|
446
447
|
background: orange;
|
|
447
448
|
background: var(--bukazu-discount);
|
|
448
449
|
}
|
|
449
|
-
#bukazu-app .calendar--picker {
|
|
450
|
+
#bukazu-app .calendar--picker {
|
|
450
451
|
padding: 8px;
|
|
451
452
|
display: flex;
|
|
452
453
|
justify-content: space-around;
|
|
453
454
|
width: 100%;
|
|
454
|
-
box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.25)
|
|
455
|
+
box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.25);
|
|
455
456
|
}
|
|
456
|
-
#bukazu-app
|
|
457
|
+
#bukazu-app .calendar--picker--date {
|
|
457
458
|
width: 20%;
|
|
458
459
|
display: flex;
|
|
459
460
|
flex-direction: column;
|
|
@@ -461,30 +462,30 @@
|
|
|
461
462
|
align-items: center;
|
|
462
463
|
padding: 8px 16px;
|
|
463
464
|
}
|
|
464
|
-
#bukazu-app
|
|
465
|
+
#bukazu-app .calendar--picker--date span.name {
|
|
465
466
|
font-size: 18px;
|
|
466
467
|
border-bottom: 1px solid #ccc;
|
|
467
|
-
padding: 4px 0
|
|
468
|
+
padding: 4px 0;
|
|
468
469
|
}
|
|
469
|
-
@media screen and (max-width: 1200px) {
|
|
470
|
-
|
|
470
|
+
@media screen and (max-width: 1200px) {
|
|
471
|
+
#bukazu-app .calendar--picker--date span.name {
|
|
471
472
|
font-size: 16px
|
|
472
473
|
}
|
|
473
474
|
}
|
|
474
|
-
#bukazu-app
|
|
475
|
+
#bukazu-app .calendar--picker--date span.detail {
|
|
475
476
|
display: flex;
|
|
476
477
|
padding: 4px 0;
|
|
477
478
|
opacity: 0.9;
|
|
478
479
|
width: 100%;
|
|
479
480
|
justify-content: center;
|
|
480
|
-
align-items: center
|
|
481
|
+
align-items: center;
|
|
481
482
|
}
|
|
482
|
-
@media screen and (max-width: 1200px) {
|
|
483
|
-
|
|
483
|
+
@media screen and (max-width: 1200px) {
|
|
484
|
+
#bukazu-app .calendar--picker--date span.detail {
|
|
484
485
|
font-size: 14px
|
|
485
486
|
}
|
|
486
487
|
}
|
|
487
|
-
#bukazu-app
|
|
488
|
+
#bukazu-app .calendar--picker--persons {
|
|
488
489
|
border: 1px solid #ccc;
|
|
489
490
|
width: 100%;
|
|
490
491
|
-webkit-appearance: none;
|
|
@@ -492,7 +493,7 @@
|
|
|
492
493
|
appearance: none;
|
|
493
494
|
font-size: 16px;
|
|
494
495
|
}
|
|
495
|
-
#bukazu-app .calendar--picker .button {
|
|
496
|
+
#bukazu-app .calendar--picker .button {
|
|
496
497
|
width: 20%;
|
|
497
498
|
background: var(--bukazu-button_cta);
|
|
498
499
|
color: #fff;
|
|
@@ -503,13 +504,13 @@
|
|
|
503
504
|
border: 0;
|
|
504
505
|
font-size: 18px;
|
|
505
506
|
box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
|
|
506
|
-
cursor: pointer
|
|
507
|
+
cursor: pointer;
|
|
507
508
|
}
|
|
508
|
-
#bukazu-app .calendar--picker .button:disabled {
|
|
509
|
+
#bukazu-app .calendar--picker .button:disabled {
|
|
509
510
|
background: #ccc;
|
|
510
511
|
cursor: not-allowed;
|
|
511
512
|
}
|
|
512
|
-
#bukazu-app .calendar--picker .button:hover {
|
|
513
|
+
#bukazu-app .calendar--picker .button:hover {
|
|
513
514
|
box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
|
|
514
515
|
}
|
|
515
516
|
#bukazu-app .form {
|
|
@@ -517,7 +518,7 @@
|
|
|
517
518
|
margin: 0 auto;
|
|
518
519
|
display: flex;
|
|
519
520
|
flex-direction: row;
|
|
520
|
-
position: relative
|
|
521
|
+
position: relative;
|
|
521
522
|
}
|
|
522
523
|
@media screen and (max-width: 992px) {
|
|
523
524
|
#bukazu-app .form {
|
|
@@ -542,24 +543,24 @@
|
|
|
542
543
|
font-size: 14px;
|
|
543
544
|
padding-bottom: 4px;
|
|
544
545
|
}
|
|
545
|
-
#bukazu-app -content
|
|
546
|
-
width: 70
|
|
546
|
+
#bukazu-app .form-content {
|
|
547
|
+
width: 70%;
|
|
547
548
|
}
|
|
548
549
|
@media screen and (max-width: 992px) {
|
|
549
|
-
#bukazu-app -content
|
|
550
|
+
#bukazu-app .form-content {
|
|
550
551
|
width: 100%
|
|
551
552
|
}
|
|
552
553
|
}
|
|
553
|
-
#bukazu-app -section
|
|
554
|
+
#bukazu-app .form-section {
|
|
554
555
|
display: flex;
|
|
555
556
|
flex-direction: column;
|
|
556
557
|
border-bottom: 1px solid #aeacac;
|
|
557
558
|
padding: 16px;
|
|
558
559
|
}
|
|
559
|
-
#bukazu-app -section
|
|
560
|
+
#bukazu-app .form-section .age-description {
|
|
560
561
|
padding: 0 0 0 16px;
|
|
561
562
|
}
|
|
562
|
-
#bukazu-app -sum
|
|
563
|
+
#bukazu-app .form-sum {
|
|
563
564
|
padding: 16px;
|
|
564
565
|
background: #fff;
|
|
565
566
|
box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.25);
|
|
@@ -568,31 +569,31 @@
|
|
|
568
569
|
right: 10%;
|
|
569
570
|
min-width: 400px;
|
|
570
571
|
max-width: 500px;
|
|
571
|
-
align-self: flex-start
|
|
572
|
+
align-self: flex-start;
|
|
572
573
|
}
|
|
573
574
|
@media screen and (max-width: 992px) {
|
|
574
|
-
#bukazu-app -sum
|
|
575
|
+
#bukazu-app .form-sum {
|
|
575
576
|
min-width: 100%
|
|
576
577
|
}
|
|
577
578
|
}
|
|
578
|
-
#bukazu-app -sum
|
|
579
|
+
#bukazu-app .form-sum .house-details {
|
|
579
580
|
padding: 0 0 16px;
|
|
580
581
|
border-bottom: 1px solid #aeacac;
|
|
581
582
|
}
|
|
582
|
-
#bukazu-app -sum
|
|
583
|
+
#bukazu-app .form-sum .house-details img {
|
|
583
584
|
padding: 16px 0;
|
|
584
|
-
height: 200px
|
|
585
|
+
height: 200px;
|
|
585
586
|
}
|
|
586
587
|
@media screen and (max-width: 992px) {
|
|
587
|
-
|
|
588
|
+
#bukazu-app .form-sum .house-details img {
|
|
588
589
|
max-width: 100%;
|
|
589
590
|
height: auto
|
|
590
591
|
}
|
|
591
592
|
}
|
|
592
|
-
#bukazu-app -sum
|
|
593
|
+
#bukazu-app .form-sum .house-details th {
|
|
593
594
|
text-align: left;
|
|
594
595
|
}
|
|
595
|
-
#bukazu-app -sum
|
|
596
|
+
#bukazu-app .form-sum .booking_option {
|
|
596
597
|
border: none;
|
|
597
598
|
display: flex;
|
|
598
599
|
flex-direction: row;
|
|
@@ -603,27 +604,27 @@
|
|
|
603
604
|
overflow: hidden;
|
|
604
605
|
margin: 16px 0;
|
|
605
606
|
}
|
|
606
|
-
#bukazu-app -sum
|
|
607
|
+
#bukazu-app .form-sum .booking_option div {
|
|
607
608
|
width: 50%;
|
|
608
609
|
text-align: center;
|
|
609
610
|
}
|
|
610
|
-
#bukazu-app -sum
|
|
611
|
+
#bukazu-app .form-sum .booking_option .legend {
|
|
611
612
|
width: 100%;
|
|
612
613
|
display: none;
|
|
613
614
|
}
|
|
614
|
-
#bukazu-app -sum
|
|
615
|
+
#bukazu-app .form-sum .booking_option input {
|
|
615
616
|
display: none;
|
|
616
617
|
}
|
|
617
|
-
#bukazu-app -sum
|
|
618
|
+
#bukazu-app .form-sum .booking_option input:checked + label {
|
|
618
619
|
background: var(--bukazu-button);
|
|
619
620
|
/* color: #fff; */
|
|
620
621
|
}
|
|
621
|
-
#bukazu-app -sum
|
|
622
|
+
#bukazu-app .form-sum .booking_option input:disabled + label {
|
|
622
623
|
background: #efefef;
|
|
623
624
|
color: #ccc;
|
|
624
625
|
/* color: #fff; */
|
|
625
626
|
}
|
|
626
|
-
#bukazu-app -sum
|
|
627
|
+
#bukazu-app .form-sum .booking_option label {
|
|
627
628
|
border-radius: 16px;
|
|
628
629
|
display: block;
|
|
629
630
|
flex: 1 1 auto;
|
|
@@ -633,26 +634,26 @@
|
|
|
633
634
|
cursor: pointer;
|
|
634
635
|
margin: 0;
|
|
635
636
|
}
|
|
636
|
-
#bukazu-app -sum
|
|
637
|
+
#bukazu-app .form-sum .costs-section {
|
|
637
638
|
padding: 16px 0;
|
|
638
639
|
}
|
|
639
|
-
#bukazu-app -sum
|
|
640
|
+
#bukazu-app .form-sum .costs-section table {
|
|
640
641
|
width: 100%;
|
|
641
642
|
}
|
|
642
|
-
#bukazu-app -sum
|
|
643
|
+
#bukazu-app .form-sum .costs-section table tr {
|
|
643
644
|
width: 100%;
|
|
644
645
|
}
|
|
645
|
-
#bukazu-app -sum
|
|
646
|
+
#bukazu-app .form-sum .costs-section table tr td {
|
|
646
647
|
width: 60%;
|
|
647
648
|
}
|
|
648
|
-
#bukazu-app -sum
|
|
649
|
+
#bukazu-app .form-sum .costs-section .price {
|
|
649
650
|
text-align: right;
|
|
650
651
|
width: 40%;
|
|
651
652
|
}
|
|
652
|
-
#bukazu-app -sum
|
|
653
|
+
#bukazu-app .form-sum .terms {
|
|
653
654
|
padding: 8px 0;
|
|
654
655
|
}
|
|
655
|
-
#bukazu-app -sum
|
|
656
|
+
#bukazu-app .form-sum .terms button {
|
|
656
657
|
padding: 0 4px;
|
|
657
658
|
background: 0;
|
|
658
659
|
display: inline;
|
|
@@ -664,81 +665,81 @@
|
|
|
664
665
|
font: inherit;
|
|
665
666
|
cursor: pointer;
|
|
666
667
|
outline: inherit;
|
|
667
|
-
color: var(--bukazu-button)
|
|
668
|
+
color: var(--bukazu-button);
|
|
668
669
|
}
|
|
669
|
-
#bukazu-app -sum
|
|
670
|
+
#bukazu-app .form-sum .terms button:hover {
|
|
670
671
|
box-shadow: none;
|
|
671
672
|
text-decoration: underline;
|
|
672
673
|
}
|
|
673
|
-
#bukazu-app -sum
|
|
674
|
+
#bukazu-app .form-sum button {
|
|
674
675
|
width: 100%;
|
|
675
676
|
padding: 16px;
|
|
676
677
|
border: 0;
|
|
677
678
|
color: #fff;
|
|
678
679
|
font-size: 20px;
|
|
679
680
|
background: var(--bukazu-button_cta);
|
|
680
|
-
cursor: pointer
|
|
681
|
+
cursor: pointer;
|
|
681
682
|
}
|
|
682
|
-
#bukazu-app -sum
|
|
683
|
+
#bukazu-app .form-sum button:hover {
|
|
683
684
|
box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.25);
|
|
684
685
|
}
|
|
685
|
-
#bukazu-app -row
|
|
686
|
+
#bukazu-app .form-row {
|
|
686
687
|
display: flex;
|
|
687
688
|
flex-direction: column;
|
|
688
689
|
padding: 8px 0;
|
|
689
690
|
}
|
|
690
|
-
#bukazu-app -row
|
|
691
|
-
#bukazu-app -row
|
|
692
|
-
#bukazu-app -row
|
|
693
|
-
max-width: 50
|
|
691
|
+
#bukazu-app .form-row select,
|
|
692
|
+
#bukazu-app .form-row input,
|
|
693
|
+
#bukazu-app .form-row .bukazu-date-picker {
|
|
694
|
+
max-width: 50%;
|
|
694
695
|
}
|
|
695
696
|
@media screen and (max-width: 992px) {
|
|
696
|
-
|
|
697
|
-
#bukazu-app -row
|
|
698
|
-
#bukazu-app -row
|
|
697
|
+
#bukazu-app .form-row select,
|
|
698
|
+
#bukazu-app .form-row input,
|
|
699
|
+
#bukazu-app .form-row .bukazu-date-picker {
|
|
699
700
|
max-width: 100%
|
|
700
701
|
}
|
|
701
702
|
}
|
|
702
|
-
#bukazu-app -row
|
|
703
|
+
#bukazu-app .form-row .bu-input-description {
|
|
703
704
|
font-style: italic;
|
|
704
705
|
}
|
|
705
|
-
#bukazu-app -row.
|
|
706
|
+
#bukazu-app .form-row.inline {
|
|
706
707
|
align-items: center;
|
|
707
708
|
display: flex;
|
|
708
709
|
flex-direction: row;
|
|
709
710
|
/* justify-content: space-between; */
|
|
710
711
|
flex-wrap: wrap;
|
|
711
|
-
width: 100
|
|
712
|
+
width: 100%;
|
|
712
713
|
}
|
|
713
|
-
#bukazu-app -row.
|
|
714
|
+
#bukazu-app .form-row.inline.hidden {
|
|
714
715
|
display: none;
|
|
715
716
|
}
|
|
716
|
-
#bukazu-app -row.
|
|
717
|
+
#bukazu-app .form-row.inline label {
|
|
717
718
|
width: 30%;
|
|
718
|
-
font-size: 16px
|
|
719
|
+
font-size: 16px;
|
|
719
720
|
}
|
|
720
721
|
@media screen and (max-width: 992px) {
|
|
721
|
-
|
|
722
|
+
#bukazu-app .form-row.inline label {
|
|
722
723
|
width: auto
|
|
723
724
|
}
|
|
724
725
|
}
|
|
725
|
-
#bukazu-app -row.
|
|
726
|
-
#bukazu-app -row.
|
|
726
|
+
#bukazu-app .form-row.inline select,
|
|
727
|
+
#bukazu-app .form-row.inline input {
|
|
727
728
|
width: auto;
|
|
728
729
|
min-width: 150px;
|
|
729
|
-
padding: 8px 64px 8px 16px
|
|
730
|
+
padding: 8px 64px 8px 16px;
|
|
730
731
|
}
|
|
731
732
|
@media screen and (max-width: 992px) {
|
|
732
|
-
|
|
733
|
-
#bukazu-app -row.
|
|
733
|
+
#bukazu-app .form-row.inline select,
|
|
734
|
+
#bukazu-app .form-row.inline input {
|
|
734
735
|
order: 3;
|
|
735
736
|
width: 100%
|
|
736
737
|
}
|
|
737
738
|
}
|
|
738
|
-
#bukazu-app -row.
|
|
739
|
+
#bukazu-app .form-row.inline .info-button {
|
|
739
740
|
margin: 0 0 0 8px;
|
|
740
741
|
}
|
|
741
|
-
#bukazu-app -row.
|
|
742
|
+
#bukazu-app .form-row.inline .price_per {
|
|
742
743
|
padding: 0 0 0 50px;
|
|
743
744
|
}
|
|
744
745
|
#bukazu-app .form .return-message {
|
|
@@ -1711,7 +1712,7 @@
|
|
|
1711
1712
|
right: 0;
|
|
1712
1713
|
background-color:rgba(0,0,0,0.3);
|
|
1713
1714
|
padding: 50px;
|
|
1714
|
-
z-index: 1
|
|
1715
|
+
z-index: 1;
|
|
1715
1716
|
}
|
|
1716
1717
|
@media screen and (max-width: 992px) {
|
|
1717
1718
|
.bukazu-modal-container {
|
|
@@ -1786,7 +1787,7 @@
|
|
|
1786
1787
|
padding: 16px;
|
|
1787
1788
|
display: flex;
|
|
1788
1789
|
flex-wrap: wrap;
|
|
1789
|
-
background-color: #fff
|
|
1790
|
+
background-color: #fff;
|
|
1790
1791
|
}
|
|
1791
1792
|
@media screen and (max-width: 992px) {
|
|
1792
1793
|
.price-overview {
|
|
@@ -1800,14 +1801,14 @@
|
|
|
1800
1801
|
text-align: left;
|
|
1801
1802
|
}
|
|
1802
1803
|
.price-overview tr {
|
|
1803
|
-
border-bottom: 1px solid rgba(0, 0, 0, 0.25)
|
|
1804
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.25);
|
|
1804
1805
|
}
|
|
1805
1806
|
.price-overview tr.hidden {
|
|
1806
1807
|
display: none;
|
|
1807
1808
|
}
|
|
1808
1809
|
.price-overview td {
|
|
1809
1810
|
padding: 4px;
|
|
1810
|
-
width: 50
|
|
1811
|
+
width: 50%;
|
|
1811
1812
|
}
|
|
1812
1813
|
.price-overview td.price {
|
|
1813
1814
|
text-align: right;
|
|
@@ -1827,7 +1828,7 @@
|
|
|
1827
1828
|
.price-overview ul li {
|
|
1828
1829
|
padding: 4px 0;
|
|
1829
1830
|
}
|
|
1830
|
-
|
|
1831
|
+
.price-overview--build {
|
|
1831
1832
|
display: flex;
|
|
1832
1833
|
flex-direction: row;
|
|
1833
1834
|
/* width: 30%; */
|
|
@@ -1836,15 +1837,15 @@
|
|
|
1836
1837
|
justify-content: center;
|
|
1837
1838
|
flex-wrap: wrap;
|
|
1838
1839
|
align-items: flex-start;
|
|
1839
|
-
padding: 16px
|
|
1840
|
+
padding: 16px;
|
|
1840
1841
|
}
|
|
1841
1842
|
@media screen and (max-width: 992px) {
|
|
1842
|
-
|
|
1843
|
+
.price-overview--build {
|
|
1843
1844
|
padding: 16px 0;
|
|
1844
1845
|
min-height: 0px
|
|
1845
1846
|
}
|
|
1846
1847
|
}
|
|
1847
|
-
|
|
1848
|
+
.price-overview--extra {
|
|
1848
1849
|
display: flex;
|
|
1849
1850
|
padding: 16px;
|
|
1850
1851
|
flex-direction: column;
|
|
@@ -1853,49 +1854,49 @@
|
|
|
1853
1854
|
align-items: center;
|
|
1854
1855
|
}
|
|
1855
1856
|
/* width: 30%; */
|
|
1856
|
-
|
|
1857
|
+
.price-overview--extra .data-label {
|
|
1857
1858
|
font-size: 18px;
|
|
1858
1859
|
}
|
|
1859
|
-
|
|
1860
|
+
.price-overview--extra .data {
|
|
1860
1861
|
padding: 16px;
|
|
1861
1862
|
font-size: 20px;
|
|
1862
1863
|
font-weight: bold;
|
|
1863
1864
|
}
|
|
1864
|
-
|
|
1865
|
+
.price-overview--book {
|
|
1865
1866
|
flex: 1 1 auto;
|
|
1866
1867
|
/* width: 30%; */
|
|
1867
1868
|
padding: 4px;
|
|
1868
1869
|
display: flex;
|
|
1869
1870
|
flex-direction: column;
|
|
1870
1871
|
justify-content: center;
|
|
1871
|
-
align-items: center
|
|
1872
|
+
align-items: center;
|
|
1872
1873
|
|
|
1873
1874
|
}
|
|
1874
1875
|
@media screen and (max-width: 992px) {
|
|
1875
|
-
|
|
1876
|
+
.price-overview--book {
|
|
1876
1877
|
padding: 16px 0
|
|
1877
1878
|
|
|
1878
1879
|
}
|
|
1879
1880
|
}
|
|
1880
|
-
|
|
1881
|
+
.price-overview--book > div {
|
|
1881
1882
|
padding: 4px 0;
|
|
1882
1883
|
}
|
|
1883
|
-
|
|
1884
|
+
.price-overview--book .price {
|
|
1884
1885
|
font-size: 28px;
|
|
1885
1886
|
}
|
|
1886
1887
|
@media screen and (min-width: 1200px) {
|
|
1887
|
-
|
|
1888
|
+
.price-overview--book .price {
|
|
1888
1889
|
font-size: 32px;
|
|
1889
1890
|
}
|
|
1890
1891
|
}
|
|
1891
|
-
|
|
1892
|
+
.price-overview--book .price {
|
|
1892
1893
|
font-weight: bold;
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
font-size: 14px
|
|
1894
|
+
}
|
|
1895
|
+
.price-overview--book i {
|
|
1896
|
+
font-size: 14px;
|
|
1896
1897
|
}
|
|
1897
1898
|
@media screen and (min-width: 1200px) {
|
|
1898
|
-
|
|
1899
|
+
.price-overview--book i {
|
|
1899
1900
|
font-size: 16px
|
|
1900
1901
|
}
|
|
1901
1902
|
}
|
|
@@ -1919,13 +1920,13 @@
|
|
|
1919
1920
|
display: block;
|
|
1920
1921
|
box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.25);
|
|
1921
1922
|
border-radius: 16px;
|
|
1922
|
-
transition: all 0.5s ease
|
|
1923
|
+
transition: all 0.5s ease;
|
|
1923
1924
|
}
|
|
1924
1925
|
.bukazu-result:hover {
|
|
1925
1926
|
box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.25);
|
|
1926
1927
|
text-decoration: none;
|
|
1927
1928
|
}
|
|
1928
|
-
|
|
1929
|
+
.bukazu-result-inner {
|
|
1929
1930
|
overflow: hidden;
|
|
1930
1931
|
color: rgba(26, 25, 25, 1);
|
|
1931
1932
|
border: 1px solid rgba(69, 74, 83, 0.2);
|
|
@@ -1933,13 +1934,13 @@
|
|
|
1933
1934
|
display: flex;
|
|
1934
1935
|
flex-direction: column;
|
|
1935
1936
|
}
|
|
1936
|
-
|
|
1937
|
+
.bukazu-result-inner .image-holder {
|
|
1937
1938
|
padding-top: 75%;
|
|
1938
1939
|
position: relative;
|
|
1939
1940
|
width: 100%;
|
|
1940
1941
|
overflow: hidden;
|
|
1941
1942
|
}
|
|
1942
|
-
|
|
1943
|
+
.bukazu-result-inner .image-holder img {
|
|
1943
1944
|
position: absolute;
|
|
1944
1945
|
top: 0;
|
|
1945
1946
|
left: 0;
|
|
@@ -1948,44 +1949,44 @@
|
|
|
1948
1949
|
height: 100%;
|
|
1949
1950
|
min-height: 100%;
|
|
1950
1951
|
}
|
|
1951
|
-
|
|
1952
|
+
.bukazu-result-inner .result {
|
|
1952
1953
|
flex: 1 1 auto;
|
|
1953
1954
|
display: flex;
|
|
1954
1955
|
flex-direction: column;
|
|
1955
1956
|
font-size: 14px;
|
|
1956
1957
|
background: #fff;
|
|
1957
|
-
text-decoration: none
|
|
1958
|
+
text-decoration: none;
|
|
1958
1959
|
}
|
|
1959
|
-
|
|
1960
|
+
.bukazu-result-inner .result-title {
|
|
1960
1961
|
padding: 8px;
|
|
1961
1962
|
font-weight: bold;
|
|
1962
1963
|
}
|
|
1963
|
-
|
|
1964
|
+
.bukazu-result-inner .result-place {
|
|
1964
1965
|
padding: 4px 8px;
|
|
1965
1966
|
}
|
|
1966
|
-
|
|
1967
|
+
.bukazu-result-inner .result-description {
|
|
1967
1968
|
padding: 8px;
|
|
1968
1969
|
flex: 1 1 auto;
|
|
1969
1970
|
}
|
|
1970
|
-
|
|
1971
|
+
.bukazu-result-inner .result-details {
|
|
1971
1972
|
padding: 8px;
|
|
1972
1973
|
display: flex;
|
|
1973
1974
|
justify-content: space-evenly;
|
|
1974
1975
|
border-bottom: 1px solid rgba(69, 74, 83, 0.2);
|
|
1975
1976
|
}
|
|
1976
|
-
|
|
1977
|
+
.bukazu-result-inner .result-price {
|
|
1977
1978
|
display: flex;
|
|
1978
1979
|
flex-direction: column;
|
|
1979
1980
|
justify-content: center;
|
|
1980
1981
|
align-items: center;
|
|
1981
1982
|
padding: 12px 8px;
|
|
1982
1983
|
}
|
|
1983
|
-
|
|
1984
|
+
.bukazu-result-inner .result-price span.price {
|
|
1984
1985
|
padding: 8px 0 0;
|
|
1985
1986
|
font-size: 18px;
|
|
1986
1987
|
font-weight: bold;
|
|
1987
1988
|
}
|
|
1988
|
-
|
|
1989
|
+
.bukazu-result-inner .result-button {
|
|
1989
1990
|
background: var(--bukazu-button_cta);
|
|
1990
1991
|
text-align: center;
|
|
1991
1992
|
padding: 8px;
|
|
@@ -1994,10 +1995,10 @@
|
|
|
1994
1995
|
align-items: center;
|
|
1995
1996
|
justify-content: center;
|
|
1996
1997
|
}
|
|
1997
|
-
|
|
1998
|
+
.bukazu-result-inner .result-button svg {
|
|
1998
1999
|
width: 18px;
|
|
1999
2000
|
}
|
|
2000
|
-
|
|
2001
|
+
.bukazu-result-inner .result-button:before {
|
|
2001
2002
|
position: absolute;
|
|
2002
2003
|
height: 100%;
|
|
2003
2004
|
content: "";
|
|
@@ -2009,12 +2010,12 @@
|
|
|
2009
2010
|
bottom: 0;
|
|
2010
2011
|
transition: all 0.8s ease;
|
|
2011
2012
|
}
|
|
2012
|
-
|
|
2013
|
+
.bukazu-result-inner .result-button:hover:before {
|
|
2013
2014
|
width: 100%;
|
|
2014
2015
|
}
|
|
2015
2016
|
@media screen and (min-width: 992px) {
|
|
2016
2017
|
.list .bukazu-result {
|
|
2017
|
-
width: 100
|
|
2018
|
+
width: 100%
|
|
2018
2019
|
}
|
|
2019
2020
|
.list .bukazu-result .bukazu-result-inner {
|
|
2020
2021
|
flex-direction: row;
|
|
@@ -2028,7 +2029,7 @@
|
|
|
2028
2029
|
width: 100%;
|
|
2029
2030
|
height: auto;
|
|
2030
2031
|
}
|
|
2031
|
-
.list .bukazu-result .bukazu-result-inner -description
|
|
2032
|
+
.list .bukazu-result .bukazu-result-inner .result-description {
|
|
2032
2033
|
max-width: 90ch;
|
|
2033
2034
|
}
|
|
2034
2035
|
}
|
|
@@ -2041,7 +2042,7 @@
|
|
|
2041
2042
|
flex-wrap: wrap;
|
|
2042
2043
|
padding: 16px;
|
|
2043
2044
|
align-items: stretch;
|
|
2044
|
-
align-content: flex-start
|
|
2045
|
+
align-content: flex-start;
|
|
2045
2046
|
}
|
|
2046
2047
|
@media screen and (max-width: 992px) {
|
|
2047
2048
|
#bukazu-app #results {
|
|
@@ -2089,7 +2090,7 @@
|
|
|
2089
2090
|
background: var(--bukazu-button);
|
|
2090
2091
|
padding: 8px;
|
|
2091
2092
|
border: 0;
|
|
2092
|
-
font-weight: bold
|
|
2093
|
+
font-weight: bold;
|
|
2093
2094
|
}
|
|
2094
2095
|
#bukazu-app #search-page .filters-button.fixed-mobile {
|
|
2095
2096
|
position: fixed;
|
|
@@ -2116,7 +2117,7 @@
|
|
|
2116
2117
|
#bukazu-app #search-page .filters {
|
|
2117
2118
|
width: 100%;
|
|
2118
2119
|
display: none;
|
|
2119
|
-
transition: all 0.3s ease
|
|
2120
|
+
transition: all 0.3s ease;
|
|
2120
2121
|
}
|
|
2121
2122
|
#bukazu-app #search-page .filters.showOnMobile {
|
|
2122
2123
|
display: block
|
|
@@ -2138,9 +2139,9 @@
|
|
|
2138
2139
|
display: none;
|
|
2139
2140
|
}
|
|
2140
2141
|
#bukazu-app .filters {
|
|
2141
|
-
min-width: 250px
|
|
2142
|
+
min-width: 250px;
|
|
2142
2143
|
}
|
|
2143
|
-
#bukazu-app -reload
|
|
2144
|
+
#bukazu-app .filters-reload {
|
|
2144
2145
|
background: var(--bukazu-button);
|
|
2145
2146
|
border: 0;
|
|
2146
2147
|
border-radius: 5px;
|
|
@@ -2181,7 +2182,7 @@
|
|
|
2181
2182
|
line-height: 1.25;
|
|
2182
2183
|
color: #007bff;
|
|
2183
2184
|
background-color: #fff;
|
|
2184
|
-
border: 1px solid #dee2e6
|
|
2185
|
+
border: 1px solid #dee2e6;
|
|
2185
2186
|
}
|
|
2186
2187
|
.bu-pagination li:hover {
|
|
2187
2188
|
z-index: 2;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bukazu-portal-react",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.5",
|
|
4
4
|
"description": "A package for loading the calendar and search module from bukazu loading into a react app.",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"repository": "https://github.com/BUKAZU/React-portal",
|
package/postcss.config.js
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
|
+
const postcssPresetEnv = require('postcss-preset-env');
|
|
2
|
+
const postCssImport = require('postcss-import');
|
|
3
|
+
const postCssNested = require('postcss-nested');
|
|
4
|
+
const autoprefixer = require('autoprefixer');
|
|
5
|
+
|
|
1
6
|
module.exports = {
|
|
2
7
|
plugins: [
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
require("autoprefixer")
|
|
9
|
-
]
|
|
8
|
+
postcssPresetEnv(),
|
|
9
|
+
postCssImport(),
|
|
10
|
+
postCssNested(),
|
|
11
|
+
autoprefixer()
|
|
12
|
+
],
|
|
10
13
|
};
|