@vitrosoftware/common-ui-ts 1.1.238 → 1.1.240
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/css/std/controls/bim-viewer/bim-viewer-index.css +805 -1
- package/css/std/controls/bim-viewer/bim-viewer.css +710 -0
- package/css/std/controls/bim-viewer/comparison-popup.css +82 -0
- package/css/std/controls/bim-viewer/img/collapse-bottom-black.svg +1 -0
- package/css/std/controls/bim-viewer/img/download-grey.svg +3 -0
- package/css/std/controls/bim-viewer/img/download.svg +5 -0
- package/css/std/controls/bim-viewer/img/search.png +0 -0
- package/css/std/controls/bim-viewer/img/separator.svg +5 -0
- package/css/std/controls/bim-viewer/img/splitter-handle-bar-drag.svg +6 -0
- package/css/std/controls/bim-viewer/img/stretch.svg +11 -0
- package/css/std/controls/bim-viewer/style.css +13 -0
- package/dist/index.js +105 -7
- package/dist/index.js.map +1 -1
- package/dist/src/controls/BimViewer/Viewer.d.ts +1 -0
- package/dist/src/controls/Breadcrumbs/Breadcrumbs.d.ts +1 -0
- package/dist/src/controls/PdfViewer/services/PdfViewerService.d.ts +1 -0
- package/package.json +1 -1
- package/src/controls/BimViewer/js/bim-viewer-models.js +155 -4
- package/src/controls/BimViewer/js/bim-viewer.js +2462 -1490
- package/src/controls/DxfViewer/js/dxf-viewer.js +16 -16
- package/src/controls/PdfViewer/js/pdf-viewer.js +4 -4
|
@@ -446,4 +446,714 @@ div:focus-visible {
|
|
|
446
446
|
|
|
447
447
|
.TWMenuMain {
|
|
448
448
|
z-index: 99000011 !important;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
.ui-dialog-comparison-left {
|
|
452
|
+
padding: 0;
|
|
453
|
+
border: initial !important;
|
|
454
|
+
border-radius: 4px;
|
|
455
|
+
box-shadow: 0px 4px 14px 0px #0000002E;
|
|
456
|
+
box-shadow: 0px 0px 4px 0px #00000024;
|
|
457
|
+
z-index: 99000006;
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
.ui-dialog-comparison-left .ui-dialog-title {
|
|
461
|
+
font-size: 18px;
|
|
462
|
+
color: #222D44;
|
|
463
|
+
font-weight: 400 !important;
|
|
464
|
+
border-radius: initial !important;
|
|
465
|
+
margin: 0 !important;
|
|
466
|
+
padding: 0 !important;
|
|
467
|
+
border-radius: 0 !important;
|
|
468
|
+
overflow: visible;
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
.ui-dialog-comparison-left .ui-dialog-titlebar {
|
|
472
|
+
background: #dfedfd !important;
|
|
473
|
+
padding: 13px 14px 13px 14px;
|
|
474
|
+
border-bottom-left-radius: 0;
|
|
475
|
+
border-bottom-right-radius: 0;
|
|
476
|
+
border: none;
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
.ui-dialog-comparison-left .ui-dialog-titlebar-close {
|
|
480
|
+
width: 24px;
|
|
481
|
+
height: 24px;
|
|
482
|
+
background: url('img/cancel-dark-grey.svg');
|
|
483
|
+
border: none !important;
|
|
484
|
+
margin-right: 10px !important;
|
|
485
|
+
margin-top: -3px !important;
|
|
486
|
+
background-size: 106.67%;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
.ui-dialog-comparison-left .property-comparison-popup-wrap {
|
|
490
|
+
width: 100% !important;
|
|
491
|
+
padding: 0 4px 22px 8px !important;
|
|
492
|
+
margin-top: 4px;
|
|
493
|
+
height: calc(100% - 46px) !important;
|
|
494
|
+
display: flex;
|
|
495
|
+
flex-direction: column;
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
.ui-dialog-comparison-left .property-groups-container {
|
|
499
|
+
padding: 0 !important;
|
|
500
|
+
overflow-y: visible !important;
|
|
501
|
+
max-height: none !important;
|
|
502
|
+
margin-right: 4px;
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
.ui-dialog-comparison-left .property-group {
|
|
506
|
+
border-radius: 0 !important;
|
|
507
|
+
border: none !important;
|
|
508
|
+
overflow: visible;
|
|
509
|
+
margin-bottom: 0;
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
.ui-dialog-comparison-left .property-group-title,
|
|
513
|
+
.ui-dialog-comparison-left .group-header {
|
|
514
|
+
background: #F7F9FC !important;
|
|
515
|
+
font-family: 'InterMedium';
|
|
516
|
+
font-size: 14px !important;
|
|
517
|
+
font-weight: 400 !important;
|
|
518
|
+
color: #222D44;
|
|
519
|
+
padding: 7px 31px 7px 31px;
|
|
520
|
+
position: relative;
|
|
521
|
+
border-bottom: 1px solid #edeff4;
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
.ui-dialog-comparison-left .property-group-title.collapsed + .property-list,
|
|
525
|
+
.ui-dialog-comparison-left .group-header.collapsed + .properties-list {
|
|
526
|
+
display: none;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
.ui-dialog-comparison-left .property-group-title:before,
|
|
530
|
+
.ui-dialog-comparison-left .group-header:before {
|
|
531
|
+
content: '';
|
|
532
|
+
position: absolute;
|
|
533
|
+
width: 24px;
|
|
534
|
+
height: 24px;
|
|
535
|
+
left: 1px;
|
|
536
|
+
top: 3px;
|
|
537
|
+
background: url('img/collapse-bottom.svg') center center no-repeat;
|
|
538
|
+
transform: scaleY(-1);
|
|
539
|
+
background-size: 68.75%;
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
.ui-dialog-comparison-left .property-group-title.collapsed:before,
|
|
543
|
+
.ui-dialog-comparison-left .group-header.collapsed:before{
|
|
544
|
+
background: url('img/collapse-bottom.svg') center center no-repeat;
|
|
545
|
+
transform: scaleY(1);
|
|
546
|
+
background-size: 68.75%;
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
.ui-dialog-comparison-left .properties-list {
|
|
550
|
+
padding: 0 !important;
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
.ui-dialog-comparison-left .property-item {
|
|
554
|
+
padding: 0 !important;
|
|
555
|
+
margin: 0 !important;
|
|
556
|
+
border-bottom: none !important;
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
.ui-dialog-comparison-left .property-name,
|
|
560
|
+
.ui-dialog-comparison-left .property-value {
|
|
561
|
+
margin: 0 !important;
|
|
562
|
+
font-size: 14px !important;
|
|
563
|
+
font-weight: 400 !important;
|
|
564
|
+
color: #222D44;
|
|
565
|
+
border-bottom: 1px solid #edeff4;
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
.ui-dialog-comparison-left .property-name {
|
|
569
|
+
font-family: 'InterMedium';
|
|
570
|
+
padding: 7px 7px 7px 31px;
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
.ui-dialog-comparison-left .property-groups-container-geometry .property-value,
|
|
574
|
+
.vitro-property-compare-popup-footer .vitro-model-a-name,
|
|
575
|
+
.vitro-property-compare-popup-footer .vitro-model-b-name,
|
|
576
|
+
.ui-dialog-comparison-left .property-value .model-name,
|
|
577
|
+
.ui-dialog-comparison-left .property-value .value {
|
|
578
|
+
font-family: 'InterRegular' !important;
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
.ui-dialog-comparison-left .property-value .model-name {
|
|
582
|
+
display: flex;
|
|
583
|
+
align-items: flex-start;
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
.ui-dialog-comparison-left .property-value .model-name span:first-child {
|
|
587
|
+
white-space: nowrap;
|
|
588
|
+
overflow: hidden;
|
|
589
|
+
text-overflow: ellipsis;
|
|
590
|
+
max-width: calc(100% - 60px);
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
.ui-dialog-comparison-left .vitro-model-a-name span:last-child,
|
|
594
|
+
.ui-dialog-comparison-left .vitro-model-b-name span:last-child,
|
|
595
|
+
.ui-dialog-comparison-left .property-value .model-name span:last-child {
|
|
596
|
+
padding-left: 5px;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
.ui-dialog-comparison-left .property-groups-container-geometry .property-name,
|
|
600
|
+
.ui-dialog-comparison-left .property-value .model-name {
|
|
601
|
+
font-weight: 400 !important;
|
|
602
|
+
color: #222D44;
|
|
603
|
+
padding-left: 31px;
|
|
604
|
+
white-space: nowrap;
|
|
605
|
+
overflow: hidden;
|
|
606
|
+
text-overflow: ellipsis;
|
|
607
|
+
flex-grow: 1;
|
|
608
|
+
flex-shrink: 1;
|
|
609
|
+
flex-basis: 0;
|
|
610
|
+
width: auto;
|
|
611
|
+
padding: 7px 14px 7px 31px;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
.ui-dialog-comparison-left .property-groups-container-geometry .property-value,
|
|
615
|
+
.ui-dialog-comparison-left .property-value .value {
|
|
616
|
+
font-weight: 400 !important;
|
|
617
|
+
color: #222D44;
|
|
618
|
+
flex-grow: 0;
|
|
619
|
+
flex-basis: auto;
|
|
620
|
+
width: auto;
|
|
621
|
+
padding: 7px 14px 7px 14px;
|
|
622
|
+
margin: 0 !important;
|
|
623
|
+
max-width: 50%;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
.ui-dialog-comparison-left .property-value .value {
|
|
627
|
+
text-align: right;
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
.vitro-property-compare-popup-footer {
|
|
631
|
+
display: flex;
|
|
632
|
+
flex-wrap: nowrap;
|
|
633
|
+
gap: 8px;
|
|
634
|
+
padding-top: 9px;
|
|
635
|
+
margin-right: 4px;
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
.vitro-property-compare-popup-footer .vitro-model-a-name,
|
|
639
|
+
.vitro-property-compare-popup-footer .vitro-model-b-name {
|
|
640
|
+
flex: 1;
|
|
641
|
+
padding: 12px 18px 12px 18px;
|
|
642
|
+
font-size: 14px;
|
|
643
|
+
overflow: hidden;
|
|
644
|
+
text-overflow: ellipsis;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
.vitro-property-compare-popup-footer .vitro-model-a-name {
|
|
648
|
+
background: #DCEEFF;
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
.vitro-property-compare-popup-footer .vitro-model-b-name {
|
|
652
|
+
background: #F7F9FC;
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
.vitro-model-a-name,
|
|
656
|
+
.vitro-model-b-name {
|
|
657
|
+
display: flex;
|
|
658
|
+
border-radius: 4px;
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
.vitro-model-a-name span:first-child,
|
|
662
|
+
.vitro-model-b-name span:first-child {
|
|
663
|
+
white-space: nowrap;
|
|
664
|
+
overflow-x: hidden;
|
|
665
|
+
text-overflow: ellipsis;
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
.ui-dialog-comparison-left .ui-dialog-comparison-left {
|
|
669
|
+
overflow-y: auto;
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
.ui-dialog-comparison-left .vitro-property-group-list-wrap {
|
|
673
|
+
overflow-y: auto;
|
|
674
|
+
flex-grow: 1;
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
|
|
678
|
+
#compareTreeContent::-webkit-scrollbar,
|
|
679
|
+
.comparison-popup-body .uk-switcher > li::-webkit-scrollbar,
|
|
680
|
+
.ui-dialog-comparison-left .vitro-property-group-list-wrap::-webkit-scrollbar {
|
|
681
|
+
width: 4px;
|
|
682
|
+
height: 4px;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
#compareTreeContent::-webkit-scrollbar-track,
|
|
686
|
+
.comparison-popup-body .uk-switcher > li::-webkit-scrollbar-track,
|
|
687
|
+
.ui-dialog-comparison-left .vitro-property-group-list-wrap::-webkit-scrollbar-track {
|
|
688
|
+
background: transparent;
|
|
689
|
+
border-radius: 8px;
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
#compareTreeContent::-webkit-scrollbar-thumb,
|
|
693
|
+
.comparison-popup-body .uk-switcher > li::-webkit-scrollbar-thumb,
|
|
694
|
+
.ui-dialog-comparison-left .vitro-property-group-list-wrap::-webkit-scrollbar-thumb {
|
|
695
|
+
background: #E4E6EC;
|
|
696
|
+
border-radius: 4px;
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
#compareTreeContent::-webkit-scrollbar-thumb:hover,
|
|
700
|
+
.comparison-popup-body .uk-switcher > li::-webkit-scrollbar-thumb:hover,
|
|
701
|
+
.ui-dialog-comparison-left .vitro-property-group-list-wrap::-webkit-scrollbar-thumb:hover {
|
|
702
|
+
background: #E4E6EC;
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
.ui-dialog-comparison-left .property-groups-container-geometry .property-list .property-item {
|
|
706
|
+
display: flex;
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
.vitro-compare-label-model-a,
|
|
710
|
+
.vitro-compare-label-model-b,
|
|
711
|
+
.vitro-compare-label-one-over-one {
|
|
712
|
+
font-size: 12px;
|
|
713
|
+
color: #ffffff;
|
|
714
|
+
background: #4c556a;
|
|
715
|
+
border-radius: 4px;
|
|
716
|
+
padding: 7px 9px 7px 9px;
|
|
717
|
+
position: absolute;
|
|
718
|
+
font-family: 'InterRegular';
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
.vitro-compare-label-one-over-one {
|
|
722
|
+
display: flex;
|
|
723
|
+
max-width: 440px;
|
|
724
|
+
flex-wrap: nowrap;
|
|
725
|
+
left: 16px;
|
|
726
|
+
top: 17px;
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
.vitro-compare-label-one-over-one .vitro-separator {
|
|
730
|
+
width: 44px;
|
|
731
|
+
flex: 0 0 44px;
|
|
732
|
+
background: url('img/separator.svg') center center no-repeat;
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
.vitro-compare-label-model-b span:first-child,
|
|
736
|
+
.vitro-compare-label-model-a span:first-child,
|
|
737
|
+
.vitro-compare-label-one-over-one > span > span:first-child {
|
|
738
|
+
overflow: hidden;
|
|
739
|
+
text-overflow: ellipsis;
|
|
740
|
+
white-space: nowrap;
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
.vitro-compare-label-one-over-one > span:first-child,
|
|
744
|
+
.vitro-compare-label-one-over-one > span:last-child {
|
|
745
|
+
overflow: hidden;
|
|
746
|
+
flex-grow: 1;
|
|
747
|
+
display: flex;
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
.vitro-compare-label-model-b,
|
|
751
|
+
.vitro-compare-label-model-a {
|
|
752
|
+
max-width: 332px;
|
|
753
|
+
display: flex;
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
.vitro-compare-label-one-over-one > span > span:last-child,
|
|
757
|
+
.vitro-compare-label-model-b span:last-child,
|
|
758
|
+
.vitro-compare-label-model-a span:last-child {
|
|
759
|
+
padding-left: 5px;
|
|
760
|
+
}
|
|
761
|
+
|
|
762
|
+
.vitro-compare-label-model-a {
|
|
763
|
+
top: 17px;
|
|
764
|
+
left: 16px;
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
.vitro-compare-label-model-b {
|
|
768
|
+
top: 17px;
|
|
769
|
+
right: 16px;
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
|
|
773
|
+
|
|
774
|
+
|
|
775
|
+
.ui-dialog-comparison {
|
|
776
|
+
padding: 0;
|
|
777
|
+
height: calc(100% - 50px);
|
|
778
|
+
top: 51px !important;
|
|
779
|
+
right: 0;
|
|
780
|
+
bottom: 0;
|
|
781
|
+
border-bottom: none !important;
|
|
782
|
+
border-right: none !important;
|
|
783
|
+
border-top: none !important;
|
|
784
|
+
border-color: #e4e6eb !important;
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
.ui-dialog-comparison .comparison-popup-wrap {
|
|
788
|
+
padding: 17px 16px 0 16px;
|
|
789
|
+
height: 100% !important;
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
.ui-dialog-comparison .comparison-popup-body {
|
|
793
|
+
height: calc(100% - 184px);
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
.ui-dialog-comparison .comparison-popup-body .uk-tab {
|
|
797
|
+
margin-left: 0;
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
.ui-dialog-comparison .comparison-popup-body .uk-tab > li {
|
|
801
|
+
padding-left: 0 !important;
|
|
802
|
+
flex: 1
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
|
|
806
|
+
.ui-dialog-comparison .comparison-popup-body .uk-tab > * > a {
|
|
807
|
+
text-transform: none;
|
|
808
|
+
font-size: 14px;
|
|
809
|
+
color: #4A556C;
|
|
810
|
+
padding-bottom: 17px;
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
.ui-dialog-comparison .comparison-popup-body .uk-tab > * > a:hover {
|
|
814
|
+
color: #3274E0;
|
|
815
|
+
}
|
|
816
|
+
|
|
817
|
+
.ui-dialog-comparison .comparison-popup-body .uk-tab > .uk-active > a {
|
|
818
|
+
color: #3274E0 !important;
|
|
819
|
+
border-color: #3274E0;
|
|
820
|
+
font-family: 'InterMedium';
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
.ui-dialog-comparison .ui-resizable-ne,
|
|
824
|
+
.ui-dialog-comparison .ui-resizable-se,
|
|
825
|
+
.ui-dialog-comparison .ui-resizable-sw,
|
|
826
|
+
.ui-dialog-comparison .ui-resizable-nw,
|
|
827
|
+
.ui-dialog-comparison .ui-resizable-n,
|
|
828
|
+
.ui-dialog-comparison .ui-resizable-e,
|
|
829
|
+
.ui-dialog-comparison .ui-resizable-s {
|
|
830
|
+
display: none !important;
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
.ui-dialog-comparison .ui-resizable-w:after {
|
|
834
|
+
content: '';
|
|
835
|
+
background-position: center;
|
|
836
|
+
height: 30px;
|
|
837
|
+
width: 6px;
|
|
838
|
+
background-repeat: no-repeat;
|
|
839
|
+
position: absolute;
|
|
840
|
+
top: calc(50% - 15px);
|
|
841
|
+
left: 1px;
|
|
842
|
+
background-image: url('img/splitter-handle-bar-drag.svg');
|
|
843
|
+
}
|
|
844
|
+
|
|
845
|
+
.ui-dialog-comparison .ui-dialog-titlebar {
|
|
846
|
+
display: none;
|
|
847
|
+
}
|
|
848
|
+
|
|
849
|
+
.comparison-popup-head {
|
|
850
|
+
gap: 12px;
|
|
851
|
+
padding: 0;
|
|
852
|
+
margin-bottom: 17px;
|
|
853
|
+
height: auto;
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
.comparison-popup-head-item {
|
|
857
|
+
width: calc(33.333% - 6px);
|
|
858
|
+
text-align: left;
|
|
859
|
+
border-bottom: none !important;
|
|
860
|
+
border-right: none !important;
|
|
861
|
+
border-top: none !important;
|
|
862
|
+
border-radius: 4px;
|
|
863
|
+
margin: 0 !important;
|
|
864
|
+
background: #f8f9fa;
|
|
865
|
+
height: 56px;
|
|
866
|
+
padding: 9px;
|
|
867
|
+
cursor: pointer;
|
|
868
|
+
}
|
|
869
|
+
|
|
870
|
+
.comparison-popup-head-item:hover {
|
|
871
|
+
background: #f3f8ff;
|
|
872
|
+
}
|
|
873
|
+
|
|
874
|
+
.comparison-popup-head-item.vitro-selected {
|
|
875
|
+
background: #dceeff;
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
.comparison-popup-head-item.added {
|
|
879
|
+
border-left: 4px solid #72af86;
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
.comparison-popup-head-item.removed {
|
|
883
|
+
border-left: 4px solid #c1423f;/*#da626A;*/
|
|
884
|
+
}
|
|
885
|
+
|
|
886
|
+
.comparison-popup-head-item.changed {
|
|
887
|
+
border-left: 4px solid #efe8a0; /*#e9ef75;*/
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
.comparison-popup-head-item .count,
|
|
891
|
+
.comparison-popup-head-item .label {
|
|
892
|
+
text-align: left;
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
.comparison-popup-head-item .label {
|
|
896
|
+
margin-top: 3px;
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
.comparison-popup-head-item .count {
|
|
900
|
+
font-size: 18px;
|
|
901
|
+
font-weight: 500;
|
|
902
|
+
color: #222D44;
|
|
903
|
+
font-family: 'InterMedium';
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
.comparison-popup-head-item.active {
|
|
907
|
+
background: #dceeff;
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
.comparison-popup-head-item.active:hover {
|
|
911
|
+
background: #f3f8ff;
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
.vitro-compare-popup-title {
|
|
915
|
+
background: #f7f9fc;
|
|
916
|
+
position: relative;
|
|
917
|
+
margin-bottom: 17px;
|
|
918
|
+
padding: 0 8px 0 8px;
|
|
919
|
+
}
|
|
920
|
+
|
|
921
|
+
.vitro-compare-popup-title .vitro-title {
|
|
922
|
+
font-size: 14px;
|
|
923
|
+
font-family: 'InterMedium';
|
|
924
|
+
font-weight: 500;
|
|
925
|
+
line-height: 42px;
|
|
926
|
+
padding-left: 8px;
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
.vitro-compare-popup-title .vitro-button {
|
|
930
|
+
cursor: pointer;
|
|
931
|
+
width: 24px;
|
|
932
|
+
height: 24px;
|
|
933
|
+
background: url('img/download.svg') center center no-repeat;
|
|
934
|
+
position: absolute;
|
|
935
|
+
top: 9px;
|
|
936
|
+
right: 10px;
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
.vitro-search-wrap {
|
|
940
|
+
margin-bottom: 17px;
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
.vitro-search-input {
|
|
944
|
+
border: 1px solid #4c556a;
|
|
945
|
+
border-radius: 4px;
|
|
946
|
+
height: 34px;
|
|
947
|
+
width: 100%;
|
|
948
|
+
padding-left: 43px;
|
|
949
|
+
background: url('img/search.png') 13px 9px no-repeat; /* TODO - change icon!!! */
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
#xeokitCompareCanvas {
|
|
953
|
+
border-color: #e4e6eb;
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
.comparison-popup-body .uk-switcher {
|
|
957
|
+
height: calc(100% - 65px);
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
.comparison-popup-body .list-items li {
|
|
961
|
+
border-radius: 2px;
|
|
962
|
+
line-height: 21px !important;
|
|
963
|
+
padding-top: 4px;
|
|
964
|
+
padding-bottom: 4px;
|
|
965
|
+
}
|
|
966
|
+
|
|
967
|
+
.comparison-popup-body .list-items li .name {
|
|
968
|
+
font-weight: normal !important;
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
.comparison-popup-body .item-added {
|
|
972
|
+
border-left-color: #72af86;
|
|
973
|
+
}
|
|
974
|
+
|
|
975
|
+
.comparison-popup-body .item-removed {
|
|
976
|
+
border-left-color: #c1423f;
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
.comparison-popup-body .item-changed {
|
|
980
|
+
border-left-color: #efe8a0;
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
.comparison-popup-body .uk-switcher > li {
|
|
984
|
+
height: 100%;
|
|
985
|
+
overflow-y: auto;
|
|
986
|
+
}
|
|
987
|
+
|
|
988
|
+
.comparison-popup-body .list-items li.vitro-selected {
|
|
989
|
+
background-color: #dceeff;
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
.comparison-popup-body .list-items li:hover {
|
|
993
|
+
background-color: #f3f8ff;
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
.vitro-compare-tree-header {
|
|
997
|
+
background: #f7f9fc;
|
|
998
|
+
padding-left: 10px;
|
|
999
|
+
line-height: 42px;
|
|
1000
|
+
}
|
|
1001
|
+
|
|
1002
|
+
#compareTreeContent {
|
|
1003
|
+
height: calc(100% - 42px);
|
|
1004
|
+
overflow: auto;
|
|
1005
|
+
}
|
|
1006
|
+
|
|
1007
|
+
#compareTreeContent .jstree-anchor .jstree-themeicon {
|
|
1008
|
+
display: none;
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
#compareTreeContent .jstree-default .jstree-icon:empty {
|
|
1012
|
+
width: 32px !important;
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
#compareTreeContent .jstree-closed > .jstree-icon.jstree-ocl {
|
|
1016
|
+
background-image: url('img/collapse-bottom-black.svg');
|
|
1017
|
+
background-repeat: no-repeat;
|
|
1018
|
+
background-position: center 8px !important;
|
|
1019
|
+
transform: rotate(-90deg);
|
|
1020
|
+
background-size: 72%;
|
|
1021
|
+
margin-top: 5px;
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
#compareTreeContent .jstree-open > .jstree-icon.jstree-ocl {
|
|
1025
|
+
background-image: url('img/collapse-bottom-black.svg');
|
|
1026
|
+
background-repeat: no-repeat;
|
|
1027
|
+
background-position: 8px center !important;
|
|
1028
|
+
background-size: 75%;
|
|
1029
|
+
margin-top: 5px;
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
#compareTreeContent .jstree-default > .jstree-no-dots .jstree-leaf > .jstree-ocl {
|
|
1033
|
+
background: transparent;
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
.comparison-popup-body .jstree-default .jstree-wholerow-clicked {
|
|
1037
|
+
background-color: #DCEEFF !important;
|
|
1038
|
+
background: #DCEEFF !important;
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1041
|
+
.comparison-popup-body .jstree-default .jstree-wholerow {
|
|
1042
|
+
height: 34px !important;
|
|
1043
|
+
border-bottom: 1px solid #f1f3f5;
|
|
1044
|
+
}
|
|
1045
|
+
|
|
1046
|
+
.comparison-popup-body .jstree-default .jstree-wholerow-hovered,
|
|
1047
|
+
.comparison-popup-body .jstree-default .jstree-wholerow-hovered:hover,
|
|
1048
|
+
.comparison-popup-body .jstree-default .jstree-wholerow:hover {
|
|
1049
|
+
background-color: #f3f8ff !important;
|
|
1050
|
+
background: #f3f8ff !important;
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
.comparison-popup-body .jstree-default .jstree-anchor {
|
|
1054
|
+
line-height: 34px !important;
|
|
1055
|
+
height: 34px !important;
|
|
1056
|
+
padding-left: 8px !important;
|
|
1057
|
+
display: inline-flex;
|
|
1058
|
+
width: calc(100% - 24px);
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
.comparison-popup-body .uk-tab::before {
|
|
1062
|
+
left: 0 !important;
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
.comparison-popup-body .change-type-change .jstree-anchor:before,
|
|
1066
|
+
.comparison-popup-body .change-type-del .jstree-anchor:before,
|
|
1067
|
+
.comparison-popup-body .change-type-add .jstree-anchor:before {
|
|
1068
|
+
content: "";
|
|
1069
|
+
position: absolute;
|
|
1070
|
+
left: 2px;
|
|
1071
|
+
top: 4px;
|
|
1072
|
+
height: 25px;
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1075
|
+
.comparison-popup-body .change-type-add .jstree-anchor:before {
|
|
1076
|
+
border-left: 2px solid #72af86;
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
.comparison-popup-body .change-type-del .jstree-anchor:before {
|
|
1080
|
+
border-left: 2px solid #c1423f;
|
|
1081
|
+
}
|
|
1082
|
+
|
|
1083
|
+
.comparison-popup-body .change-type-change .jstree-anchor:before {
|
|
1084
|
+
border-left: 2px solid #efe8a0;
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
.comparison-popup-body .jstree-leaf .jstree-icon:empty:before {
|
|
1088
|
+
width: 5px !important;
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1091
|
+
.comparison-popup-body .jstree-leaf .jstree-icon {
|
|
1092
|
+
width: 11px !important;
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
.vitro-count-wrap {
|
|
1096
|
+
padding-left: 4px;
|
|
1097
|
+
padding-right: 4px;
|
|
1098
|
+
margin-left: auto;
|
|
1099
|
+
min-width: 90px;
|
|
1100
|
+
text-align: center;
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1103
|
+
.vitro-count-add,
|
|
1104
|
+
.vitro-count-del,
|
|
1105
|
+
.vitro-count-change {
|
|
1106
|
+
margin-left: 4px;
|
|
1107
|
+
margin-right: 4px;
|
|
1108
|
+
position: relative;
|
|
1109
|
+
padding-right: 2px;
|
|
1110
|
+
padding-left: 1px;
|
|
1111
|
+
}
|
|
1112
|
+
|
|
1113
|
+
.vitro-count-add:before,
|
|
1114
|
+
.vitro-count-del:before,
|
|
1115
|
+
.vitro-count-change:before {
|
|
1116
|
+
content: '';
|
|
1117
|
+
position: absolute;
|
|
1118
|
+
bottom: 0;
|
|
1119
|
+
left: 0;
|
|
1120
|
+
right: 0;
|
|
1121
|
+
}
|
|
1122
|
+
|
|
1123
|
+
.vitro-count-add:before {
|
|
1124
|
+
border-bottom: 2px solid #72af86;
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1127
|
+
.vitro-count-del:before {
|
|
1128
|
+
border-bottom: 2px solid #c1423f;
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
.vitro-count-change:before {
|
|
1132
|
+
border-bottom: 2px solid #efe8a0;
|
|
1133
|
+
}
|
|
1134
|
+
|
|
1135
|
+
.comparison-popup-body .vitro-text {
|
|
1136
|
+
max-width: calc(100% - 90px);
|
|
1137
|
+
min-width: 0;
|
|
1138
|
+
overflow-x: hidden;
|
|
1139
|
+
text-overflow: ellipsis;
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1142
|
+
.jstree-default > .jstree-container-ul > .jstree-node {
|
|
1143
|
+
max-width: 100%;
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1146
|
+
#compareTreeContent,
|
|
1147
|
+
.jstree-container-ul {
|
|
1148
|
+
width: 100%;
|
|
1149
|
+
}
|
|
1150
|
+
|
|
1151
|
+
.vitro-compare-tree-header {
|
|
1152
|
+
display: flex;
|
|
1153
|
+
}
|
|
1154
|
+
|
|
1155
|
+
.vitro-compare-tree-header span:last-child {
|
|
1156
|
+
text-align: center;
|
|
1157
|
+
width: 94px;
|
|
1158
|
+
margin-left: auto;
|
|
449
1159
|
}
|