@ozdao/prometheus-framework 0.2.307 → 0.2.308

Sign up to get free protection for your applications and to get access to all the features.
@@ -81,6 +81,10 @@
81
81
  }
82
82
  .background-div {
83
83
  flex-grow: 1;
84
+ }.selector {
85
+ flex-grow: 1;
86
+ flex-basis: 0;
87
+ min-width: 0;
84
88
  }.soon-label {
85
89
  position: absolute;
86
90
  right: -0.25em;
@@ -106,10 +110,6 @@
106
110
  .input-error {
107
111
  border: 1px solid red;
108
112
  box-shadow: 0 0 3px 0 red;
109
- }.selector {
110
- flex-grow: 1;
111
- flex-basis: 0;
112
- min-width: 0;
113
113
  }.container-joinus {
114
114
  display: flex;
115
115
  align-items: center;
@@ -177,95 +177,18 @@
177
177
  padding: 20px;
178
178
  z-index: 10;
179
179
  }
180
- .vue-select {
181
- background: #f7f7f7;
182
- border-radius: 0.5rem;
183
- border: 0;
184
- height: 3rem;
185
- padding-left: 1rem;
186
- z-index: 4;
187
- }
188
- .vue-select .vue-input input {
189
- font-size: 1.125rem;
190
- font-weight: 300;
191
- background: #f7f7f7;
192
- }
193
- .magnifier[data-v-48231055] {
194
- max-width: 32rem;
195
- }
196
- .product-images[data-v-48231055] {
197
- display: flex;
198
- flex-direction: column;
199
- }
200
- .thumbnail[data-v-48231055] {
201
- width: 100%;
202
- max-width: 8rem;
203
- height: 8rem;
204
- object-fit: cover;
205
- cursor: pointer;
206
- }
207
- .popup[data-v-48231055] {
208
- position: fixed;
209
- top: 0;
210
- left: 0;
211
- width: 100vw;
212
- height: 100vh;
213
- background-color: rgba(0, 0, 0, 0.8);
214
- display: flex;
215
- justify-content: center;
216
- align-items: center;
217
- cursor: zoom-out;
218
- }
219
- .popup-image[data-v-48231055] {
220
- max-width: 90%;
221
- max-height: 90%;
222
- }
223
- .shop-cart-item[data-v-bebbf16b]:first-of-type {
224
- padding-top: 0;
225
- }
226
- .spoiler-active[data-v-bebbf16b] {
227
- transform: rotate(180deg);
228
- }
229
- .expand-enter-active[data-v-e552bc5f],
230
- .expand-leave-active[data-v-e552bc5f] {
231
- transition: max-height 0.5s ease-in-out;
232
- overflow: hidden;
233
- }
234
- .scale-enter-active[data-v-e552bc5f],
235
- .scale-leave-active[data-v-e552bc5f] {
236
- transition: transform 0.5s ease-in-out;
237
- }
238
- .scale5-enter-from[data-v-e552bc5f],
239
- .scale5-leave-to[data-v-e552bc5f] {
240
- transform: scale(1.2);
241
- opacity: 0;
242
- }
243
- .scale5-enter-to[data-v-e552bc5f],
244
- .scale5-leave-from[data-v-e552bc5f] {
245
- transform: scale(1);
246
- opacity: 1;
247
- }
248
- .product-360-viewer[data-v-e552bc5f] {
249
- user-select: none;
250
- min-height: 16rem;
180
+ @media screen and (max-width: 1025px) {
181
+ #mobileApp {
182
+ text-align: center;
251
183
  }
252
- .product-360-viewer img[data-v-e552bc5f] {
253
- max-width: 100%;
254
- cursor: grab;
255
-
256
- object-fit: cover;
257
- transition: all 0.3s ease;
184
+ #mobileApp > section {
185
+ flex-direction: column;
258
186
  }
259
- .product-360-viewer img[data-v-e552bc5f]:active {
260
- cursor: grabbing;
187
+ #mobileApp > section > div {
188
+ order: 1;
261
189
  }
262
-
263
- /*.product-360-viewer img:hover {
264
- transform: scale(1.1);
265
- }*/
266
-
267
- .spiral {
268
-
190
+ }.spiral[data-v-4a28df5c] {
191
+ background-image: url("https://weeder.delivery/spiral.jpg");
269
192
  background-size: cover;
270
193
  width: 100rem;
271
194
  height: 100rem;
@@ -275,150 +198,36 @@
275
198
  opacity: 0.066;
276
199
  transform: translate(-50%, -50%) rotate(0deg);
277
200
  transform-origin: center center;
278
- animation: spin 5s linear infinite;
201
+ animation: spin-4a28df5c 5s linear infinite;
279
202
  }
280
- @keyframes spin {
203
+ @keyframes spin-4a28df5c {
281
204
  0% {
282
205
  transform: translate(-50%, -50%) rotate(0deg);
283
206
  }
284
207
  100% {
285
208
  transform: translate(-50%, -50%) rotate(360deg);
286
209
  }
210
+ }.grid[data-v-9b14ae83] {
211
+ perspective: 450px;
212
+ background-size: cover;
287
213
  }
288
-
289
- /* Ваши стили */
290
- .grid-container {
291
- display: grid;
292
- grid-template-columns: repeat(4, 1fr);
293
- grid-template-rows: repeat(2, 1fr);
294
- }
295
- .grid-item:first-of-type {
296
- grid-column: span 2;
297
- grid-row: span 2;
298
- }
299
- @media screen and (max-width: 1025px) {
300
- .grid-container {
301
- grid-template-columns: repeat(2, 1fr);
302
- }
303
- }.price-tag {
304
- background: #058;
305
- color: #fff;
306
- cursor: pointer;
307
- display: inline-block;
308
- position: relative;
309
- text-align: center;
310
- display: flex;
311
- align-items: center;
312
- width: fit-content;
313
- color: black;
314
- }.embla {
315
- overflow: hidden;
316
- }
317
- .embla__container {
318
- display: flex;
319
- }
320
- .embla__slide {
321
- flex: 0 0 25%;
322
- min-width: 0;
323
- }
324
- @media screen and (max-width: 1025px) {
325
- .embla__slide {
326
- flex: 0 0 50%;
327
- min-width: 0;
328
- }
329
- }.thc {
330
- position: absolute;
331
- right: 1rem;
332
- top: 1rem;
333
- display: flex;
334
- flex-direction: column;
335
- justify-content: center;
336
- align-items: center;
337
- flex-wrap: wrap;
338
- width: 6rem;
339
- height: 6rem;
340
- transition: all linear 0.1s;
341
- }
342
- .thc p:first-of-type {
343
- font-size: 1.25rem;
344
- letter-spacing: -2px;
345
- z-index: 7;
346
- }
347
- .thc p:last-of-type {
348
- z-index: 7;
349
- }
350
- .thc svg {
351
- z-index: 6;
352
- position: absolute;
353
- width: 6rem;
354
- height: 6rem;
355
- left: 0;
356
- top: 0;
357
- }
358
- @media screen and (max-width: 1025px) {
359
- .thc {
360
- transform: scale(0.75) !important;
361
- transform-origin: top right !important;
362
- }
363
- }.h1-product {
364
- font-size: 3rem;
365
- }
366
- .produc-data {
367
- padding-top: 2rem;
368
- padding-bottom: 0;
369
- }.main-photo {
370
- max-width: 50%;
371
- }
372
- .main-photo img {
373
- width: 100%;
374
- }
375
- /* Add your styles here */
376
- .round-stat {
377
- padding: 1rem;
378
- border-radius: 5rem;
379
- width: 3rem;
380
- height: 3rem;
381
- display: flex;
382
- justify-content: center;
383
- align-items: center;
384
- border: 1px solid rgba(0, 0, 0, 0.1);
385
- }
386
- .round-stat-tab {
387
- width: 2rem;
388
- height: 2rem;
389
- }
390
- .order-card {
391
- border-radius: 0.25rem;
392
- overflow: hidden;
393
- box-shadow: 0 8px 8px -8px rgba(36, 36, 36, 0.1);
394
- }
395
- .order-card .order-status {
396
- color: black;
397
- background: #EEF2F6;
214
+ .grid-lines[data-v-9b14ae83] {
398
215
  width: 100%;
399
- padding: 0.75rem 1.5rem;
400
- margin: 0;
401
- }
402
- .order-card .new {
403
- color: white;
404
- background: #00ff88;
405
- }
406
- .order-card .block {
407
- border-radius: 0;
408
- border: 0;
216
+ height: 200%;
217
+ background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 0), linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 0);
218
+ background-size: 45px 30px;
219
+ background-repeat: repeat;
220
+ transform-origin: 100% 0 0;
221
+ animation: play-9b14ae83 15s linear infinite;
409
222
  }
410
- /* Стили остаются без изменений */
411
-
412
- .list-enter-active,
413
- .list-leave-active {
414
- transition: all 0.5s ease;
223
+ @keyframes play-9b14ae83 {
224
+ 0% {
225
+ transform: rotateX(45deg) translateY(-50%);
415
226
  }
416
- .list-enter-from,
417
- .list-leave-to {
418
- opacity: 0;
419
- transform: translateX(30px);
227
+ 100% {
228
+ transform: rotateX(45deg) translateY(0);
420
229
  }
421
- .moveFromTop-enter-active,
230
+ }.moveFromTop-enter-active,
422
231
  .moveFromTop-leave-active {
423
232
  transform: translateY(0);
424
233
  opacity: 1;
@@ -644,12 +453,263 @@
644
453
  .slideY-enter-from span,
645
454
  .slideY-leave-to span {
646
455
  position: absolute;
647
- }.round-wrapper {
648
- position: relative;
649
456
  }
650
- .round-wrapper .round {
651
- margin: 0;
652
- margin-right: 1rem;
457
+ .magnifier[data-v-48231055] {
458
+ max-width: 32rem;
459
+ }
460
+ .product-images[data-v-48231055] {
461
+ display: flex;
462
+ flex-direction: column;
463
+ }
464
+ .thumbnail[data-v-48231055] {
465
+ width: 100%;
466
+ max-width: 8rem;
467
+ height: 8rem;
468
+ object-fit: cover;
469
+ cursor: pointer;
470
+ }
471
+ .popup[data-v-48231055] {
472
+ position: fixed;
473
+ top: 0;
474
+ left: 0;
475
+ width: 100vw;
476
+ height: 100vh;
477
+ background-color: rgba(0, 0, 0, 0.8);
478
+ display: flex;
479
+ justify-content: center;
480
+ align-items: center;
481
+ cursor: zoom-out;
482
+ }
483
+ .popup-image[data-v-48231055] {
484
+ max-width: 90%;
485
+ max-height: 90%;
486
+ }
487
+ .vue-select {
488
+ background: #f7f7f7;
489
+ border-radius: 0.5rem;
490
+ border: 0;
491
+ height: 3rem;
492
+ padding-left: 1rem;
493
+ z-index: 4;
494
+ }
495
+ .vue-select .vue-input input {
496
+ font-size: 1.125rem;
497
+ font-weight: 300;
498
+ background: #f7f7f7;
499
+ }.shop-cart-item[data-v-bebbf16b]:first-of-type {
500
+ padding-top: 0;
501
+ }
502
+ .spoiler-active[data-v-bebbf16b] {
503
+ transform: rotate(180deg);
504
+ }
505
+ .expand-enter-active[data-v-e552bc5f],
506
+ .expand-leave-active[data-v-e552bc5f] {
507
+ transition: max-height 0.5s ease-in-out;
508
+ overflow: hidden;
509
+ }
510
+ .scale-enter-active[data-v-e552bc5f],
511
+ .scale-leave-active[data-v-e552bc5f] {
512
+ transition: transform 0.5s ease-in-out;
513
+ }
514
+ .scale5-enter-from[data-v-e552bc5f],
515
+ .scale5-leave-to[data-v-e552bc5f] {
516
+ transform: scale(1.2);
517
+ opacity: 0;
518
+ }
519
+ .scale5-enter-to[data-v-e552bc5f],
520
+ .scale5-leave-from[data-v-e552bc5f] {
521
+ transform: scale(1);
522
+ opacity: 1;
523
+ }
524
+ .product-360-viewer[data-v-e552bc5f] {
525
+ user-select: none;
526
+ min-height: 16rem;
527
+ }
528
+ .product-360-viewer img[data-v-e552bc5f] {
529
+ max-width: 100%;
530
+ cursor: grab;
531
+
532
+ object-fit: cover;
533
+ transition: all 0.3s ease;
534
+ }
535
+ .product-360-viewer img[data-v-e552bc5f]:active {
536
+ cursor: grabbing;
537
+ }
538
+
539
+ /*.product-360-viewer img:hover {
540
+ transform: scale(1.1);
541
+ }*/
542
+
543
+ .spiral {
544
+
545
+ background-size: cover;
546
+ width: 100rem;
547
+ height: 100rem;
548
+ position: absolute;
549
+ top: 50%;
550
+ left: 50%;
551
+ opacity: 0.066;
552
+ transform: translate(-50%, -50%) rotate(0deg);
553
+ transform-origin: center center;
554
+ animation: spin 5s linear infinite;
555
+ }
556
+ @keyframes spin {
557
+ 0% {
558
+ transform: translate(-50%, -50%) rotate(0deg);
559
+ }
560
+ 100% {
561
+ transform: translate(-50%, -50%) rotate(360deg);
562
+ }
563
+ }
564
+
565
+ /* Ваши стили */
566
+ .grid-container {
567
+ display: grid;
568
+ grid-template-columns: repeat(4, 1fr);
569
+ grid-template-rows: repeat(2, 1fr);
570
+ }
571
+ .grid-item:first-of-type {
572
+ grid-column: span 2;
573
+ grid-row: span 2;
574
+ }
575
+ @media screen and (max-width: 1025px) {
576
+ .grid-container {
577
+ grid-template-columns: repeat(2, 1fr);
578
+ }
579
+ }.price-tag {
580
+ background: #058;
581
+ color: #fff;
582
+ cursor: pointer;
583
+ display: inline-block;
584
+ position: relative;
585
+ text-align: center;
586
+ display: flex;
587
+ align-items: center;
588
+ width: fit-content;
589
+ color: black;
590
+ }.thc {
591
+ position: absolute;
592
+ right: 1rem;
593
+ top: 1rem;
594
+ display: flex;
595
+ flex-direction: column;
596
+ justify-content: center;
597
+ align-items: center;
598
+ flex-wrap: wrap;
599
+ width: 6rem;
600
+ height: 6rem;
601
+ transition: all linear 0.1s;
602
+ }
603
+ .thc p:first-of-type {
604
+ font-size: 1.25rem;
605
+ letter-spacing: -2px;
606
+ z-index: 7;
607
+ }
608
+ .thc p:last-of-type {
609
+ z-index: 7;
610
+ }
611
+ .thc svg {
612
+ z-index: 6;
613
+ position: absolute;
614
+ width: 6rem;
615
+ height: 6rem;
616
+ left: 0;
617
+ top: 0;
618
+ }
619
+ @media screen and (max-width: 1025px) {
620
+ .thc {
621
+ transform: scale(0.75) !important;
622
+ transform-origin: top right !important;
623
+ }
624
+ }.embla {
625
+ overflow: hidden;
626
+ }
627
+ .embla__container {
628
+ display: flex;
629
+ }
630
+ .embla__slide {
631
+ flex: 0 0 25%;
632
+ min-width: 0;
633
+ }
634
+ @media screen and (max-width: 1025px) {
635
+ .embla__slide {
636
+ flex: 0 0 50%;
637
+ min-width: 0;
638
+ }
639
+ }.h1-product {
640
+ font-size: 3rem;
641
+ }
642
+ .produc-data {
643
+ padding-top: 2rem;
644
+ padding-bottom: 0;
645
+ }.main-photo {
646
+ max-width: 50%;
647
+ }
648
+ .main-photo img {
649
+ width: 100%;
650
+ }.round-stat {
651
+ padding: 1rem;
652
+ border-radius: 5rem;
653
+ width: 3rem;
654
+ height: 3rem;
655
+ display: flex;
656
+ justify-content: center;
657
+ align-items: center;
658
+ border: 1px solid rgba(0, 0, 0, 0.1);
659
+ }
660
+ .round-stat-tab {
661
+ width: 2rem;
662
+ height: 2rem;
663
+ }
664
+ .order-card {
665
+ border-radius: 0.25rem;
666
+ overflow: hidden;
667
+ box-shadow: 0 8px 8px -8px rgba(36, 36, 36, 0.1);
668
+ }
669
+ .order-card .order-status {
670
+ color: black;
671
+ background: #EEF2F6;
672
+ width: 100%;
673
+ padding: 0.75rem 1.5rem;
674
+ margin: 0;
675
+ }
676
+ .order-card .new {
677
+ color: white;
678
+ background: #00ff88;
679
+ }
680
+ .order-card .block {
681
+ border-radius: 0;
682
+ border: 0;
683
+ }
684
+ /* Add your styles here */
685
+
686
+ /* Стили остаются без изменений */
687
+
688
+ .list-enter-active,
689
+ .list-leave-active {
690
+ transition: all 0.5s ease;
691
+ }
692
+ .list-enter-from,
693
+ .list-leave-to {
694
+ opacity: 0;
695
+ transform: translateX(30px);
696
+ }
697
+ .blink[data-v-d2db1c69] {
698
+ animation: blink-animation-d2db1c69 1s ease infinite;
699
+ }
700
+ @keyframes blink-animation-d2db1c69 {
701
+ 0%, 100% {
702
+ opacity: 1;
703
+ }
704
+ 50% {
705
+ opacity: 0.8;
706
+ }
707
+ }.round-wrapper {
708
+ position: relative;
709
+ }
710
+ .round-wrapper .round {
711
+ margin: 0;
712
+ margin-right: 1rem;
653
713
  }
654
714
  .round-wrapper input:checked {
655
715
  background: #00ff88;
@@ -668,16 +728,6 @@
668
728
  }
669
729
  .vue-select-header {
670
730
  height: 3rem;
671
- }.blink[data-v-d2db1c69] {
672
- animation: blink-animation-d2db1c69 1s ease infinite;
673
- }
674
- @keyframes blink-animation-d2db1c69 {
675
- 0%, 100% {
676
- opacity: 1;
677
- }
678
- 50% {
679
- opacity: 0.8;
680
- }
681
731
  }.shop-cart-item[data-v-e9803d20]:first-of-type {
682
732
  padding-top: 0;
683
733
  }.shop-cart {
@@ -716,56 +766,13 @@
716
766
  .shop-cart-active .shopcart-footer {
717
767
  right: 0;
718
768
  }
719
- }.spiral[data-v-4a28df5c] {
720
- background-image: url("https://weeder.delivery/spiral.jpg");
721
- background-size: cover;
722
- width: 100rem;
723
- height: 100rem;
724
- position: absolute;
725
- top: 50%;
726
- left: 50%;
727
- opacity: 0.066;
728
- transform: translate(-50%, -50%) rotate(0deg);
729
- transform-origin: center center;
730
- animation: spin-4a28df5c 5s linear infinite;
731
- }
732
- @keyframes spin-4a28df5c {
733
- 0% {
734
- transform: translate(-50%, -50%) rotate(0deg);
735
- }
736
- 100% {
737
- transform: translate(-50%, -50%) rotate(360deg);
738
- }
739
- }@media screen and (max-width: 1025px) {
740
- #mobileApp {
741
- text-align: center;
742
- }
743
- #mobileApp > section {
744
- flex-direction: column;
745
769
  }
746
- #mobileApp > section > div {
747
- order: 1;
748
- }
749
- }.grid[data-v-9b14ae83] {
750
- perspective: 450px;
751
- background-size: cover;
752
- }
753
- .grid-lines[data-v-9b14ae83] {
754
- width: 100%;
755
- height: 200%;
756
- background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 0), linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 0);
757
- background-size: 45px 30px;
758
- background-repeat: repeat;
759
- transform-origin: 100% 0 0;
760
- animation: play-9b14ae83 15s linear infinite;
761
- }
762
- @keyframes play-9b14ae83 {
763
- 0% {
764
- transform: rotateX(45deg) translateY(-50%);
765
- }
766
- 100% {
767
- transform: rotateX(45deg) translateY(0);
770
+ .subspotsartment[data-v-83b42a48] {
771
+ border: 1px solid rgba(0, 0, 0, 0.1);
772
+ margin-top: 1rem;
768
773
  }
774
+ #map[data-v-fd0cdc10]:focus {
775
+ outline: none;
769
776
  }
770
777
  .subspotsartment[data-v-bc545dfb] {
771
778
  border: 1px solid rgba(0, 0, 0, 0.1);
@@ -786,13 +793,6 @@ input[data-v-3c991e96] {
786
793
  border-radius: 5px;
787
794
  }
788
795
 
789
- .subspotsartment[data-v-83b42a48] {
790
- border: 1px solid rgba(0, 0, 0, 0.1);
791
- margin-top: 1rem;
792
- }
793
- #map[data-v-fd0cdc10]:focus {
794
- outline: none;
795
- }
796
796
  .circular-loader {
797
797
  position: relative;
798
798
  top: calc(50% - 1rem);
@@ -851,88 +851,40 @@ input[data-v-3c991e96] {
851
851
  stroke-dashoffset: -124;
852
852
  }
853
853
  }
854
-
855
- .t-trimmed {
856
- font-size: 0;
857
- }
858
854
  .dp__input {
859
- border: 0;
860
- padding: var(--medium);
861
- padding-left: 3rem;
862
- background: rgb(var(--grey));
863
- }.editable-div {
864
- width: 100%;
865
- min-height: 1rem;
866
- background-color: transparent;
867
- outline: none;
868
- white-space: pre-wrap;
869
- word-wrap: break-word;
870
- }
871
- .editable-div:empty::before {
872
- content: attr(placeholder);
873
- color: #999;
874
- }
875
- .editable-div:focus {
876
- border: 0;
877
- }
878
- .formatting-bar {
879
- display: flex;
880
- gap: 5px;
881
- margin-top: 5px;
882
- }
883
- .formatting-bar button {
884
- padding: 2px 5px;
885
- background-color: #f0f0f0;
886
- border: 1px solid #ccc;
887
- border-radius: 3px;
888
- cursor: pointer;
889
- }
890
- .formatting-bar button:hover {
891
- background-color: #e0e0e0;
892
- }
893
- .calendar__week {
894
- display: grid;
895
- grid-template-columns: repeat(7, 1fr);
896
- gap: 5px;
897
- margin-bottom: 10px;
898
- }
899
- .calendar__weekday {
900
- text-align: center;
901
- }
902
- .calendar__dates {
903
- display: grid;
904
- grid-template-columns: repeat(7, 1fr);
905
- grid-auto-rows: 1fr;
906
- }
907
- .calendar__dates::before {
908
- content: '';
909
- width: 0;
910
- padding-bottom: 100%;
911
- grid-row: 1 / 1;
912
- grid-column: 1 / 1;
913
- }
914
- .calendar__dates > *:first-child {
915
- grid-row: 1 / 1;
916
- grid-column: 1 / 1;
855
+ border: 0;
856
+ padding: var(--medium);
857
+ padding-left: 3rem;
858
+ background: rgb(var(--grey));
859
+ }.editable-div {
860
+ width: 100%;
861
+ min-height: 1rem;
862
+ background-color: transparent;
863
+ outline: none;
864
+ white-space: pre-wrap;
865
+ word-wrap: break-word;
917
866
  }
918
- .calendar__date--today {
919
- background-color: #f0f0f0;
920
- font-weight: bold;
867
+ .editable-div:empty::before {
868
+ content: attr(placeholder);
869
+ color: #999;
921
870
  }
922
- .calendar__date--selected {
923
- background-color: #007bff;
924
- color: #fff;
871
+ .editable-div:focus {
872
+ border: 0;
925
873
  }
926
- .calendar__date--range {
927
- background-color: #e9ecef;
874
+ .formatting-bar {
875
+ display: flex;
876
+ gap: 5px;
877
+ margin-top: 5px;
928
878
  }
929
- .calendar__date--disabled {
930
- color: #ccc;
931
- cursor: not-allowed;
879
+ .formatting-bar button {
880
+ padding: 2px 5px;
881
+ background-color: #f0f0f0;
882
+ border: 1px solid #ccc;
883
+ border-radius: 3px;
884
+ cursor: pointer;
932
885
  }
933
- input[data-v-5659d4ce], textarea[data-v-5659d4ce], span[data-v-5659d4ce] {
934
- line-height: 1;
935
- color: inherit;
886
+ .formatting-bar button:hover {
887
+ background-color: #e0e0e0;
936
888
  }.no-scroll {
937
889
  overflow: hidden;
938
890
  }
@@ -973,10 +925,48 @@ input[data-v-5659d4ce], textarea[data-v-5659d4ce], span[data-v-5659d4ce] {
973
925
  .color-overlay.active {
974
926
  background: rgba(0, 0, 0, 0.25);
975
927
  pointer-events: all;
976
- }input[data-v-516f3e07], span[data-v-516f3e07] {
977
- line-height: 1;
978
- color: inherit;
979
928
  }
929
+ .calendar__week {
930
+ display: grid;
931
+ grid-template-columns: repeat(7, 1fr);
932
+ gap: 5px;
933
+ margin-bottom: 10px;
934
+ }
935
+ .calendar__weekday {
936
+ text-align: center;
937
+ }
938
+ .calendar__dates {
939
+ display: grid;
940
+ grid-template-columns: repeat(7, 1fr);
941
+ grid-auto-rows: 1fr;
942
+ }
943
+ .calendar__dates::before {
944
+ content: '';
945
+ width: 0;
946
+ padding-bottom: 100%;
947
+ grid-row: 1 / 1;
948
+ grid-column: 1 / 1;
949
+ }
950
+ .calendar__dates > *:first-child {
951
+ grid-row: 1 / 1;
952
+ grid-column: 1 / 1;
953
+ }
954
+ .calendar__date--today {
955
+ background-color: #f0f0f0;
956
+ font-weight: bold;
957
+ }
958
+ .calendar__date--selected {
959
+ background-color: #007bff;
960
+ color: #fff;
961
+ }
962
+ .calendar__date--range {
963
+ background-color: #e9ecef;
964
+ }
965
+ .calendar__date--disabled {
966
+ color: #ccc;
967
+ cursor: not-allowed;
968
+ }
969
+
980
970
  fieldset[disabled] .multiselect {
981
971
  pointer-events: none;
982
972
  }
@@ -1354,7 +1344,10 @@ to {
1354
1344
  transform: rotate(2turn);
1355
1345
  }
1356
1346
  }
1357
-
1347
+ input[data-v-5659d4ce], textarea[data-v-5659d4ce], span[data-v-5659d4ce] {
1348
+ line-height: 1;
1349
+ color: inherit;
1350
+ }
1358
1351
  .ti-tag-toDefactor {
1359
1352
  background-color: rgb(var(--main));
1360
1353
  color: rgb(var(--black));
@@ -1363,6 +1356,26 @@ to {
1363
1356
  margin: 2px;
1364
1357
  font-size: .85em;
1365
1358
  }
1359
+ input[data-v-516f3e07], span[data-v-516f3e07] {
1360
+ line-height: 1;
1361
+ color: inherit;
1362
+ }
1363
+ .feed-move, /* apply transition to moving elements */
1364
+ .feed-enter-active,
1365
+ .feed-leave-active {
1366
+ transition: all 0.5s ease;
1367
+ }
1368
+ .feed-enter-from,
1369
+ .feed-leave-to {
1370
+ opacity: 0;
1371
+ transform: translateY(30px);
1372
+ }
1373
+
1374
+ /* ensure leaving items are taken out of layout flow so that moving
1375
+ animations can be calculated correctly. */
1376
+ .feed-leave-active {
1377
+ position: absolute;
1378
+ }
1366
1379
  button[disabled] {
1367
1380
  background: grey;
1368
1381
  }
@@ -1423,21 +1436,8 @@ button[disabled]:hover {
1423
1436
  line-height: 16px;
1424
1437
  font-size: 10px;
1425
1438
  }
1426
- .feed-move, /* apply transition to moving elements */
1427
- .feed-enter-active,
1428
- .feed-leave-active {
1429
- transition: all 0.5s ease;
1430
- }
1431
- .feed-enter-from,
1432
- .feed-leave-to {
1433
- opacity: 0;
1434
- transform: translateY(30px);
1435
- }
1436
-
1437
- /* ensure leaving items are taken out of layout flow so that moving
1438
- animations can be calculated correctly. */
1439
- .feed-leave-active {
1440
- position: absolute;
1439
+ .t-trimmed {
1440
+ font-size: 0;
1441
1441
  }
1442
1442
  .breadcrumbs {
1443
1443
  height: 4rem;
@@ -1462,12 +1462,12 @@ button[disabled]:hover {
1462
1462
  }
1463
1463
  .breadcrumbs .router-link-exact-active:last-of-type span {
1464
1464
  color: #00ff88;
1465
+ }.bg-white-overlay[data-v-a6aa1cda] {
1466
+ background: linear-gradient(0deg, rgba(var(--white), 1) 0%, rgba(var(--white), 0) 100%);
1465
1467
  }@media screen and (max-width: 1025px) {
1466
1468
  #mainguest > div:first-of-type {
1467
1469
  order: 2;
1468
1470
  }
1469
- }.bg-white-overlay[data-v-a6aa1cda] {
1470
- background: linear-gradient(0deg, rgba(var(--white), 1) 0%, rgba(var(--white), 0) 100%);
1471
1471
  }
1472
1472
  /* Existing styles can stay unchanged */
1473
1473
  .tab-selector {
@@ -1553,11 +1553,6 @@ button[disabled]:hover {
1553
1553
  }*/
1554
1554
  .mobile-menu-section > div:last-of-type {
1555
1555
  border-bottom: none !important;
1556
- }li[data-v-bf25c24d] {
1557
- list-style-type: none;
1558
- }
1559
- ul li[data-v-bf25c24d] {
1560
- line-height: 2;
1561
1556
  }.vue3-marquee {
1562
1557
  display: flex !important;
1563
1558
  position: relative;
@@ -1653,6 +1648,11 @@ ul li[data-v-bf25c24d] {
1653
1648
  100% {
1654
1649
  transform: translateY(-100%);
1655
1650
  }
1651
+ }li[data-v-bf25c24d] {
1652
+ list-style-type: none;
1653
+ }
1654
+ ul li[data-v-bf25c24d] {
1655
+ line-height: 2;
1656
1656
  }@charset "UTF-8";
1657
1657
  .ti-icon-check:before {
1658
1658
  content: "\\e902";
@@ -1772,6 +1772,51 @@ div.vue-tags-input.disabled * {
1772
1772
  .ti-selected-item {
1773
1773
  background-color: rgb(var(--main));
1774
1774
  color: #fff;
1775
+ }.spoiler {
1776
+ transition: max-height 0.3s cubic-bezier(0.15, 0.68, 0.33, 0.93);
1777
+ }
1778
+ .collapse-enter-active,
1779
+ .collapse-leave-active {
1780
+ max-height: 2000px;
1781
+ }
1782
+ .collapse-enter-from,
1783
+ .collapse-leave-to {
1784
+ max-height: 0;
1785
+ }
1786
+ .pac-container {
1787
+ position: absolute;
1788
+ background-color: white;
1789
+ z-index: 1000;
1790
+ border-radius: 2rem;
1791
+ overflow: hidden;
1792
+ }
1793
+
1794
+ .my-location-button {
1795
+ position: absolute;
1796
+ right: 10px;
1797
+ top: 10px;
1798
+ z-index: 99;
1799
+ }
1800
+ .gm-style-cc { display:none;
1801
+ }
1802
+
1803
+
1804
+
1805
+ .subunit[data-v-a2ed7104] {
1806
+ border: 1px solid rgba(0, 0, 0, 0.1);
1807
+ margin-top: 1rem;
1808
+ }
1809
+ .error-wrapper {
1810
+ position: fixed;
1811
+ left: 0;
1812
+ right: 0;
1813
+ opacity: 0.9;
1814
+ }.router-link-active[data-v-380d7b3b], .router-link-exact-active[data-v-380d7b3b] {
1815
+ color: rgb(var(--main)) !important;
1816
+ }
1817
+ a[data-v-380d7b3b]:hover {
1818
+ cursor: pointer;
1819
+ color: rgb(var(--main));
1775
1820
  }
1776
1821
  .pd-2px[data-v-2fc13a78] {
1777
1822
  padding: 2px 4px;
@@ -1820,35 +1865,6 @@ div.vue-tags-input.disabled * {
1820
1865
  .modal-enter[data-v-2fc13a78], .modal-leave-to[data-v-2fc13a78] {
1821
1866
  opacity: 0;
1822
1867
  }
1823
- .spoiler {
1824
- transition: max-height 0.3s cubic-bezier(0.15, 0.68, 0.33, 0.93);
1825
- }
1826
- .collapse-enter-active,
1827
- .collapse-leave-active {
1828
- max-height: 2000px;
1829
- }
1830
- .collapse-enter-from,
1831
- .collapse-leave-to {
1832
- max-height: 0;
1833
- }
1834
- .pac-container {
1835
- position: absolute;
1836
- background-color: white;
1837
- z-index: 1000;
1838
- border-radius: 2rem;
1839
- overflow: hidden;
1840
- }
1841
-
1842
- .my-location-button {
1843
- position: absolute;
1844
- right: 10px;
1845
- top: 10px;
1846
- z-index: 99;
1847
- }
1848
- .gm-style-cc { display:none;
1849
- }
1850
-
1851
-
1852
1868
 
1853
1869
  .photo-container {
1854
1870
  width: 100%;
@@ -1865,27 +1881,11 @@ div.vue-tags-input.disabled * {
1865
1881
  transition: transform 0.3s;
1866
1882
  }
1867
1883
 
1868
- .subunit[data-v-a2ed7104] {
1869
- border: 1px solid rgba(0, 0, 0, 0.1);
1870
- margin-top: 1rem;
1871
- }
1872
- .error-wrapper {
1873
- position: fixed;
1874
- left: 0;
1875
- right: 0;
1876
- opacity: 0.9;
1877
- }
1878
1884
  #glcanvas {
1879
1885
  width: 100%;
1880
1886
  height: 100%;
1881
1887
  }
1882
- .router-link-active[data-v-380d7b3b], .router-link-exact-active[data-v-380d7b3b] {
1883
- color: rgb(var(--main)) !important;
1884
- }
1885
- a[data-v-380d7b3b]:hover {
1886
- cursor: pointer;
1887
- color: rgb(var(--main));
1888
- }.blink[data-v-5785b6f6] {
1888
+ .blink[data-v-5785b6f6] {
1889
1889
  animation: blink-animation-5785b6f6 1s ease infinite;
1890
1890
  }
1891
1891
  @keyframes blink-animation-5785b6f6 {
@@ -1895,25 +1895,21 @@ a[data-v-380d7b3b]:hover {
1895
1895
  50% {
1896
1896
  opacity: 0.8;
1897
1897
  }
1898
- }.card-page-title .card-page-actions {
1899
- display: none;
1900
- }
1901
- .card-page-title:hover .card-page-actions {
1902
- display: block;
1903
1898
  }
1904
1899
  .gmap[data-v-786189a4] {
1905
1900
  height: 300px;
1906
1901
  width: 100%;
1907
1902
  }
1908
-
1909
- .tooltip-container {
1910
- position: relative;
1911
- display: inline-block;
1903
+ .card-page-title .card-page-actions {
1904
+ display: none;
1912
1905
  }
1913
- .tooltip-content {
1914
- pointer-events: none;
1906
+ .card-page-title:hover .card-page-actions {
1907
+ display: block;
1908
+ }.constructor-iframe iframe {
1909
+ width: 100% !important;
1910
+ height: 100% !important;
1911
+ position: relative !important;
1915
1912
  }
1916
-
1917
1913
  .barcode-scanner-modal {
1918
1914
  visibility: visible;
1919
1915
  position: fixed;
@@ -1953,16 +1949,20 @@ body.barcode-scanner-active {
1953
1949
  html.barcode-scanner-active-html {
1954
1950
  background: transparent !important;
1955
1951
  }
1956
- .constructor-iframe iframe {
1957
- width: 100% !important;
1958
- height: 100% !important;
1959
- position: relative !important;
1960
- }
1952
+
1961
1953
  .draggable-container {
1962
1954
  display: flex;
1963
1955
  flex-direction: column;
1964
1956
  }
1965
1957
 
1958
+ .tooltip-container {
1959
+ position: relative;
1960
+ display: inline-block;
1961
+ }
1962
+ .tooltip-content {
1963
+ pointer-events: none;
1964
+ }
1965
+
1966
1966
  .address[data-v-97ae0556] {
1967
1967
  text-wrap: nowrap;
1968
1968
  display: block;