@vitrosoftware/common-ui-ts 1.1.103 → 1.1.104
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/common.css +0 -15
- package/css/std/controls/action-handler/confirm-dialog.css +6 -0
- package/css/std/controls/activity-item/activity-item.css +0 -6
- package/css/std/controls/activity-item/activity-message.css +1 -1
- package/css/std/controls/activity-item/attached-file-list.css +51 -0
- package/css/std/controls/dialog/dialog.css +5 -5
- package/css/std/controls/file/file.css +94 -0
- package/css/std/controls/file/img/file-button-context.svg +6 -0
- package/css/std/controls/file-version-select/file-version-select.css +1 -0
- package/css/std/controls/heading/heading.css +7 -0
- package/css/std/controls/image-viewer/image-viewer.css +83 -0
- package/css/std/controls/image-viewer/img/context-button-white.svg +5 -0
- package/css/std/controls/image-viewer/img/image-viewer-close.svg +3 -0
- package/css/std/controls/image-viewer/page.css +19 -0
- package/css/std/controls/linear-progress/linear-progress.css +40 -0
- package/css/std/controls/message-input/attached-file.css +26 -0
- package/css/std/controls/message-input/img/attached-file-remove.svg +4 -0
- package/css/std/controls/message-input/message-input.css +42 -15
- package/css/std/controls/pdf-viewer/pdf-viewer-index.css +1 -1
- package/css/std/controls/pdf-viewer/viewer.css +1 -1
- package/css/std/controls/scroll-view/img/scroll-view-next.svg +4 -0
- package/css/std/controls/scroll-view/img/scroll-view-prev.svg +4 -0
- package/css/std/controls/scroll-view/scroll-view.css +28 -0
- package/css/std/controls/tab-group/tab-group.css +13 -3
- package/css/std/controls/table-view/treegrid.css +20 -0
- package/dist/index.css +428 -49
- package/dist/index.js +615 -207
- package/dist/index.js.map +1 -1
- package/dist/src/controls/ActivityItem/ActivityMessage.d.ts +8 -0
- package/dist/src/controls/ActivityItem/AttachedFileList.d.ts +12 -0
- package/dist/src/controls/ActivityItem/AttachedFileListItem.d.ts +9 -0
- package/dist/src/controls/ActivityItem/ChangedValue.d.ts +1 -1
- package/dist/src/controls/Dialog/Dialog.d.ts +1 -0
- package/dist/src/controls/DropdownButton/DropdownButton.d.ts +1 -0
- package/dist/src/controls/File/File.d.ts +15 -0
- package/dist/src/controls/ImageViewer/ImageItem.d.ts +5 -0
- package/dist/src/controls/ImageViewer/ImageViewer.d.ts +9 -0
- package/dist/src/controls/ImageViewer/ImageViewerRef.d.ts +5 -0
- package/dist/src/controls/ImageViewer/Page.d.ts +7 -0
- package/dist/src/controls/LinearProgress/LinearProgress.d.ts +6 -0
- package/dist/src/controls/MessageInput/AttachedFile.d.ts +10 -0
- package/dist/src/controls/MessageInput/MessageInput.d.ts +5 -2
- package/dist/src/controls/MessageInput/MessageInputConstants.d.ts +3 -1
- package/dist/src/controls/ScrollView/ScrollView.d.ts +10 -0
- package/dist/src/controls/ScrollView/ScrollViewItem.d.ts +7 -0
- package/dist/src/controls/Sidebar/GroupItem.d.ts +1 -0
- package/dist/src/controls/Sidebar/LinkItem.d.ts +1 -0
- package/dist/src/controls/Sidebar/Section.d.ts +1 -0
- package/dist/src/controls/Sidebar/SectionList.d.ts +1 -0
- package/dist/src/controls/Sidebar/Sidebar.d.ts +1 -0
- package/dist/src/controls/TabGroup/OverflowButton.d.ts +1 -0
- package/dist/src/controls/TabGroup/TabGroup.d.ts +1 -0
- package/dist/src/controls/TabGroup/TabGroupComponent.d.ts +1 -0
- package/dist/src/controls/TabGroup/TabGroupHeader.d.ts +1 -0
- package/dist/src/controls/TableView/TableViewConstants.d.ts +3 -1
- package/dist/src/controls/View/View.d.ts +1 -0
- package/dist/src/index.d.ts +11 -0
- package/package.json +1 -1
- package/src/controls/BimViewer/js/bim-viewer.js +2 -2
- package/src/controls/PdfViewer/js/pdf-viewer.js +1 -1
package/dist/index.css
CHANGED
|
@@ -86,22 +86,7 @@ html, body {
|
|
|
86
86
|
display: flex;
|
|
87
87
|
}
|
|
88
88
|
|
|
89
|
-
.vitro-title.vitro-border-bottom {
|
|
90
|
-
border-bottom: 1px solid #E4E6EC;
|
|
91
|
-
margin-right: 12px;
|
|
92
|
-
margin-bottom: 0;
|
|
93
|
-
padding-bottom: 12px;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
89
|
@media (max-width: 800px) {
|
|
97
|
-
.vitro-title {
|
|
98
|
-
padding-bottom: 8px;
|
|
99
|
-
font-size: 18px;
|
|
100
|
-
line-height: 27px;
|
|
101
|
-
margin: 0;
|
|
102
|
-
margin-right: 12px;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
90
|
.pane > .vitro-flex {
|
|
106
91
|
flex-direction: column;
|
|
107
92
|
align-items: flex-start;
|
|
@@ -1345,6 +1330,13 @@ html, body {
|
|
|
1345
1330
|
font-weight: unset;
|
|
1346
1331
|
margin-top: 0;
|
|
1347
1332
|
margin-bottom: 0;
|
|
1333
|
+
}
|
|
1334
|
+
|
|
1335
|
+
.vitro-border-bottom {
|
|
1336
|
+
border-bottom: 1px solid #E4E6EC;
|
|
1337
|
+
margin-right: 12px;
|
|
1338
|
+
margin-bottom: 0;
|
|
1339
|
+
padding-bottom: 12px;
|
|
1348
1340
|
}
|
|
1349
1341
|
._dialog-header_vitro-dialog-header_2W3GraU {
|
|
1350
1342
|
padding: 20px;
|
|
@@ -1586,7 +1578,7 @@ html, body {
|
|
|
1586
1578
|
right: 0;
|
|
1587
1579
|
top: 0;
|
|
1588
1580
|
bottom: 0;
|
|
1589
|
-
z-index:
|
|
1581
|
+
z-index: 300;
|
|
1590
1582
|
display: flex;
|
|
1591
1583
|
align-items: center;
|
|
1592
1584
|
justify-content: center;
|
|
@@ -1641,11 +1633,11 @@ html, body {
|
|
|
1641
1633
|
transition: max-height 0.5s ease;
|
|
1642
1634
|
}
|
|
1643
1635
|
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
}
|
|
1636
|
+
._dialog_vitro-display-none_T-eWeyA {
|
|
1637
|
+
display: none;
|
|
1638
|
+
}
|
|
1648
1639
|
|
|
1640
|
+
@media (max-width: 800px) {
|
|
1649
1641
|
._dialog_vitro-dialog_2NzcRZg > div {
|
|
1650
1642
|
min-width: unset;
|
|
1651
1643
|
max-width: calc(100% - 16px);
|
|
@@ -1679,6 +1671,12 @@ html, body {
|
|
|
1679
1671
|
height: 88px;
|
|
1680
1672
|
padding: 24px 20px;
|
|
1681
1673
|
border-bottom: none;
|
|
1674
|
+
}
|
|
1675
|
+
|
|
1676
|
+
@media (max-width: 800px) {
|
|
1677
|
+
._confirm-dialog_vitro-confirm-dialog_1r-CtWW {
|
|
1678
|
+
width: 100% !important;
|
|
1679
|
+
}
|
|
1682
1680
|
}
|
|
1683
1681
|
._action-result-list_vitro-action-result-list_fJtJWdL {
|
|
1684
1682
|
width: 100%;
|
|
@@ -2031,6 +2029,7 @@ html, body {
|
|
|
2031
2029
|
._tab-group_vitro-tab_1Qb50HL .nav {
|
|
2032
2030
|
align-items: center;
|
|
2033
2031
|
justify-content: center;
|
|
2032
|
+
flex-wrap: nowrap;
|
|
2034
2033
|
}
|
|
2035
2034
|
|
|
2036
2035
|
._tab-group_vitro-tab_1Qb50HL > .vitro-content {
|
|
@@ -2071,8 +2070,10 @@ html, body {
|
|
|
2071
2070
|
padding: 8px 12px;
|
|
2072
2071
|
}
|
|
2073
2072
|
|
|
2074
|
-
._tab-group_vitro-tab_1Qb50HL .nav .dropdown-item:hover
|
|
2073
|
+
._tab-group_vitro-tab_1Qb50HL .nav .dropdown-item:hover,
|
|
2074
|
+
._tab-group_vitro-tab_1Qb50HL .nav .dropdown-item:active {
|
|
2075
2075
|
background: #F3F8FF;
|
|
2076
|
+
color: #222D44;
|
|
2076
2077
|
}
|
|
2077
2078
|
|
|
2078
2079
|
._tab-group_vitro-tab_1Qb50HL .nav .dropdown-item:first-child {
|
|
@@ -2090,6 +2091,7 @@ html, body {
|
|
|
2090
2091
|
._tab-group_vitro-tab_1Qb50HL .nav > div._tab-group_vitro-item_2YnBcmb {
|
|
2091
2092
|
flex-grow: 1;
|
|
2092
2093
|
text-align: center;
|
|
2094
|
+
overflow: hidden;
|
|
2093
2095
|
}
|
|
2094
2096
|
|
|
2095
2097
|
._tab-group_vitro-tab_1Qb50HL .nav > div .nav-link {
|
|
@@ -2110,8 +2112,9 @@ html, body {
|
|
|
2110
2112
|
}
|
|
2111
2113
|
|
|
2112
2114
|
._tab-group_vitro-tab_1Qb50HL .nav > div .nav-item a span {
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
+
white-space: nowrap;
|
|
2116
|
+
overflow: hidden;
|
|
2117
|
+
text-overflow: ellipsis;
|
|
2115
2118
|
}
|
|
2116
2119
|
|
|
2117
2120
|
._tab-group_vitro-tab_1Qb50HL .nav > div ._tab-group_active_3M-IIR2 span {
|
|
@@ -2133,6 +2136,11 @@ html, body {
|
|
|
2133
2136
|
align-items: flex-start;
|
|
2134
2137
|
}
|
|
2135
2138
|
|
|
2139
|
+
._tab-group_vitro-tab_1Qb50HL .nav > ._tab-group_vitro-dropdown-button_146jv_h .dropdown-menu {
|
|
2140
|
+
width: 241px;
|
|
2141
|
+
min-width: unset;
|
|
2142
|
+
}
|
|
2143
|
+
|
|
2136
2144
|
._tab-group_vitro-tab_1Qb50HL .nav > div .nav-item._tab-group_active_3M-IIR2 a {
|
|
2137
2145
|
color: #3274E0 !important;
|
|
2138
2146
|
border-bottom: 2px solid #3274E0;
|
|
@@ -2674,6 +2682,7 @@ html, body {
|
|
|
2674
2682
|
padding: 4px;
|
|
2675
2683
|
text-align: center;
|
|
2676
2684
|
overflow: hidden;
|
|
2685
|
+
flex-shrink: 0;
|
|
2677
2686
|
}
|
|
2678
2687
|
|
|
2679
2688
|
._file-version-select_vitro-file-version-item_38KWa8a ._file-version-select_vitro-version-name_1821bal {
|
|
@@ -5102,12 +5111,6 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
5102
5111
|
overflow-wrap: anywhere;
|
|
5103
5112
|
}
|
|
5104
5113
|
|
|
5105
|
-
._activity-item_vitro-message_1ndqhgR img {
|
|
5106
|
-
max-width: calc(100% - 20px);
|
|
5107
|
-
display: block;
|
|
5108
|
-
margin: 4px 0;
|
|
5109
|
-
}
|
|
5110
|
-
|
|
5111
5114
|
._activity-item_vitro-flex_37IxBWe {
|
|
5112
5115
|
display: flex;
|
|
5113
5116
|
}
|
|
@@ -5549,6 +5552,156 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
5549
5552
|
position: relative;
|
|
5550
5553
|
}
|
|
5551
5554
|
|
|
5555
|
+
._file_vitro-file_2xkXgkS {
|
|
5556
|
+
border-radius: 4px;
|
|
5557
|
+
height: 80px;
|
|
5558
|
+
width: 142px;
|
|
5559
|
+
display: flex;
|
|
5560
|
+
justify-content: center;
|
|
5561
|
+
flex-direction: column;
|
|
5562
|
+
align-items: center;
|
|
5563
|
+
padding: 8px;
|
|
5564
|
+
position: relative;
|
|
5565
|
+
box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1), 0px 0px 2px 0px rgba(0, 0, 0, 0.12);
|
|
5566
|
+
}
|
|
5567
|
+
|
|
5568
|
+
._file_vitro-preview_2RVdrbm {
|
|
5569
|
+
padding: 0 !important;
|
|
5570
|
+
}
|
|
5571
|
+
|
|
5572
|
+
._file_vitro-preview-container_2dmbDD7 {
|
|
5573
|
+
max-width: 100%;
|
|
5574
|
+
max-height: 100%;
|
|
5575
|
+
min-width: 36px;
|
|
5576
|
+
min-height: 36px;
|
|
5577
|
+
width: auto;
|
|
5578
|
+
height: auto;
|
|
5579
|
+
cursor: pointer;
|
|
5580
|
+
}
|
|
5581
|
+
|
|
5582
|
+
._file_vitro-preview_2RVdrbm ._file_vitro-preview-container_2dmbDD7 {
|
|
5583
|
+
width: 100%;
|
|
5584
|
+
height: 100%;
|
|
5585
|
+
overflow: hidden;
|
|
5586
|
+
border-radius: 4px;
|
|
5587
|
+
}
|
|
5588
|
+
|
|
5589
|
+
._file_vitro-preview_2RVdrbm ._file_vitro-preview-container_2dmbDD7 img {
|
|
5590
|
+
width: 100%;
|
|
5591
|
+
height: 100%;
|
|
5592
|
+
-o-object-fit: cover;
|
|
5593
|
+
object-fit: cover;
|
|
5594
|
+
}
|
|
5595
|
+
|
|
5596
|
+
._file_vitro-flex_3nGTlWX {
|
|
5597
|
+
display: flex;
|
|
5598
|
+
align-items: center;
|
|
5599
|
+
grid-gap: 4px;
|
|
5600
|
+
margin-top: 4px;
|
|
5601
|
+
width: 100%;
|
|
5602
|
+
}
|
|
5603
|
+
|
|
5604
|
+
._file_vitro-flex_3nGTlWX > div {
|
|
5605
|
+
display: flex;
|
|
5606
|
+
flex-direction: column;
|
|
5607
|
+
overflow: hidden;
|
|
5608
|
+
}
|
|
5609
|
+
|
|
5610
|
+
._file_vitro-image_2Bt3otk {
|
|
5611
|
+
width: 24px;
|
|
5612
|
+
height: 24px;
|
|
5613
|
+
flex-shrink: 0;
|
|
5614
|
+
}
|
|
5615
|
+
|
|
5616
|
+
._file_vitro-file-name_2t9Y643 {
|
|
5617
|
+
color: #222D44;
|
|
5618
|
+
font-size: 11px;
|
|
5619
|
+
line-height: 145%;
|
|
5620
|
+
overflow: hidden;
|
|
5621
|
+
white-space: nowrap;
|
|
5622
|
+
text-overflow: ellipsis;
|
|
5623
|
+
display: block;
|
|
5624
|
+
}
|
|
5625
|
+
|
|
5626
|
+
._file_vitro-file-size_15f_E_0 {
|
|
5627
|
+
color: #6C757D;
|
|
5628
|
+
font-size: 10px;
|
|
5629
|
+
line-height: 145%;
|
|
5630
|
+
}
|
|
5631
|
+
|
|
5632
|
+
._file_vitro-dropdown-button_3MgI2n9 {
|
|
5633
|
+
position: absolute;
|
|
5634
|
+
top: 4px;
|
|
5635
|
+
right: 4px;
|
|
5636
|
+
border-radius: 50%;
|
|
5637
|
+
width: 24px;
|
|
5638
|
+
height: 24px;
|
|
5639
|
+
background-color: #E9ECEF;
|
|
5640
|
+
}
|
|
5641
|
+
|
|
5642
|
+
._file_vitro-dropdown-button_3MgI2n9 .dropdown-menu {
|
|
5643
|
+
width: 185px;
|
|
5644
|
+
min-width: 185px;
|
|
5645
|
+
}
|
|
5646
|
+
|
|
5647
|
+
._file_vitro-dropdown-button_3MgI2n9 .btn > span {
|
|
5648
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/file/img/file-button-context.svg');
|
|
5649
|
+
}
|
|
5650
|
+
|
|
5651
|
+
._attached-file-list_vitro-file-list-container_5PIFyI7 {
|
|
5652
|
+
display: flex;
|
|
5653
|
+
padding: 4px 6px;
|
|
5654
|
+
grid-gap: 8px 12px;
|
|
5655
|
+
flex-wrap: wrap;
|
|
5656
|
+
}
|
|
5657
|
+
|
|
5658
|
+
._attached-file-list_vitro-overflow-button_39QxX1m {
|
|
5659
|
+
width: -moz-fit-content;
|
|
5660
|
+
width: fit-content;
|
|
5661
|
+
height: -moz-fit-content;
|
|
5662
|
+
height: fit-content;
|
|
5663
|
+
position: relative;
|
|
5664
|
+
}
|
|
5665
|
+
|
|
5666
|
+
._attached-file-list_vitro-item-count_35PIT1U {
|
|
5667
|
+
background: rgba(192, 202, 213, 0.7);
|
|
5668
|
+
width: 100%;
|
|
5669
|
+
height: 100%;
|
|
5670
|
+
border-radius: 4px;
|
|
5671
|
+
position: absolute;
|
|
5672
|
+
z-index: 1;
|
|
5673
|
+
display: flex;
|
|
5674
|
+
align-items: center;
|
|
5675
|
+
justify-content: center;
|
|
5676
|
+
cursor: pointer;
|
|
5677
|
+
}
|
|
5678
|
+
|
|
5679
|
+
._attached-file-list_vitro-item-count_35PIT1U > div {
|
|
5680
|
+
width: 36px;
|
|
5681
|
+
height: 36px;
|
|
5682
|
+
background-color: #fff;
|
|
5683
|
+
border-radius: 50%;
|
|
5684
|
+
font-size: 14px;
|
|
5685
|
+
color: #222D44;
|
|
5686
|
+
line-height: 130%;
|
|
5687
|
+
display: flex;
|
|
5688
|
+
align-items: center;
|
|
5689
|
+
justify-content: center;
|
|
5690
|
+
}
|
|
5691
|
+
|
|
5692
|
+
@media (max-width: 800px) {
|
|
5693
|
+
._attached-file-list_vitro-overflow-button_39QxX1m,
|
|
5694
|
+
._attached-file-list_vitro-file_2mPE3Rq {
|
|
5695
|
+
width: calc(100% / 2 - 12px);
|
|
5696
|
+
max-width: 142px;
|
|
5697
|
+
}
|
|
5698
|
+
|
|
5699
|
+
._attached-file-list_vitro-overflow-button_39QxX1m ._attached-file-list_vitro-file_2mPE3Rq {
|
|
5700
|
+
width: 100%;
|
|
5701
|
+
}
|
|
5702
|
+
}
|
|
5703
|
+
|
|
5704
|
+
|
|
5552
5705
|
._activity-message_vitro-activity-message_3GdyQuC {
|
|
5553
5706
|
display: flex;
|
|
5554
5707
|
flex-direction: column;
|
|
@@ -5595,7 +5748,7 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
5595
5748
|
|
|
5596
5749
|
._activity-message_vitro-message_25otUOy {
|
|
5597
5750
|
font-family: 'InterRegular' !important;
|
|
5598
|
-
white-space:
|
|
5751
|
+
white-space: pre-wrap;
|
|
5599
5752
|
}
|
|
5600
5753
|
|
|
5601
5754
|
._activity-message_vitro-field-name_hdjdQbg {
|
|
@@ -5617,33 +5770,54 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
5617
5770
|
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/activity-item/img/activity-arrow.svg');
|
|
5618
5771
|
}
|
|
5619
5772
|
|
|
5773
|
+
._attached-file_vitro-attached-file-container_3AhHHlm {
|
|
5774
|
+
position: relative;
|
|
5775
|
+
}
|
|
5776
|
+
|
|
5777
|
+
._attached-file_vitro-attached-file_1R6PPQN {
|
|
5778
|
+
width: 80px;
|
|
5779
|
+
height: 80px;
|
|
5780
|
+
padding: 4px;
|
|
5781
|
+
align-items: flex-start;
|
|
5782
|
+
}
|
|
5783
|
+
|
|
5784
|
+
._attached-file_vitro-button-remove_3ehToHf {
|
|
5785
|
+
width: 16px;
|
|
5786
|
+
height: 16px;
|
|
5787
|
+
background-size: 100%;
|
|
5788
|
+
background-repeat: no-repeat;
|
|
5789
|
+
background-color: #E9ECEF;
|
|
5790
|
+
border: none;
|
|
5791
|
+
border-radius: 50%;
|
|
5792
|
+
outline: none;
|
|
5793
|
+
position: absolute;
|
|
5794
|
+
z-index: 1;
|
|
5795
|
+
top: 4px;
|
|
5796
|
+
right: 4px;
|
|
5797
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/message-input/img/attached-file-remove.svg');
|
|
5798
|
+
}
|
|
5799
|
+
|
|
5800
|
+
._flex-box_vitro-flex-box_3jGTD6k {
|
|
5801
|
+
display: flex;
|
|
5802
|
+
align-items: center;
|
|
5803
|
+
}
|
|
5620
5804
|
._message-input_vitro-message-input_3MkcjWD {
|
|
5621
5805
|
display: flex;
|
|
5622
5806
|
position: absolute;
|
|
5623
|
-
width: calc(100%
|
|
5624
|
-
max-width: calc(100% - 32px);
|
|
5625
|
-
bottom: 0;
|
|
5807
|
+
width: calc(100%);
|
|
5626
5808
|
align-items: flex-end;
|
|
5627
|
-
background: #fff;
|
|
5628
5809
|
bottom: 1px;
|
|
5810
|
+
z-index: 2;
|
|
5629
5811
|
}
|
|
5630
5812
|
|
|
5631
5813
|
._message-input_vitro-message-input_3MkcjWD ._message-input_vitro-control_1PUSjq9 {
|
|
5632
|
-
|
|
5633
|
-
width: 100%;
|
|
5814
|
+
width: calc(100% - 48px);
|
|
5634
5815
|
position: relative;
|
|
5635
5816
|
border-radius: 4px;
|
|
5636
5817
|
border: 1px solid #C0CAD5;
|
|
5637
5818
|
min-height: 36px;
|
|
5638
|
-
display: flex;
|
|
5639
|
-
justify-content: space-between;
|
|
5640
|
-
align-items: center;
|
|
5641
5819
|
word-break: break-all;
|
|
5642
|
-
|
|
5643
|
-
|
|
5644
|
-
._message-input_vitro-message-input_3MkcjWD .ps > div:first-child {
|
|
5645
|
-
padding: 0;
|
|
5646
|
-
padding: 6px 16px 6px 8px !important;
|
|
5820
|
+
background-color: #fff;
|
|
5647
5821
|
}
|
|
5648
5822
|
|
|
5649
5823
|
._message-input_vitro-message-input_3MkcjWD .ps__rail-y {
|
|
@@ -5662,6 +5836,7 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
5662
5836
|
}
|
|
5663
5837
|
|
|
5664
5838
|
._message-input_vitro-placeholder_1FBfIqN {
|
|
5839
|
+
display: block;
|
|
5665
5840
|
color: #8E98A3;
|
|
5666
5841
|
font-weight: unset;
|
|
5667
5842
|
font-size: 12px;
|
|
@@ -5672,6 +5847,7 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
5672
5847
|
-webkit-user-select: none;
|
|
5673
5848
|
-moz-user-select: none;
|
|
5674
5849
|
user-select: none;
|
|
5850
|
+
white-space: nowrap;
|
|
5675
5851
|
}
|
|
5676
5852
|
|
|
5677
5853
|
._message-input_vitro-button-add-file_1qdtHHq {
|
|
@@ -5679,6 +5855,7 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
5679
5855
|
width: 24px;
|
|
5680
5856
|
min-width: 24px;
|
|
5681
5857
|
min-height: 24px;
|
|
5858
|
+
margin-right: 7px;
|
|
5682
5859
|
background-color: #fff;
|
|
5683
5860
|
border: none;
|
|
5684
5861
|
outline: none;
|
|
@@ -5688,7 +5865,9 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
5688
5865
|
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/message-input/img/paperclip.svg');
|
|
5689
5866
|
}
|
|
5690
5867
|
|
|
5691
|
-
._message-input_vitro-button-send_1vktQrZ
|
|
5868
|
+
._message-input_vitro-button-send_1vktQrZ,
|
|
5869
|
+
._message-input_vitro-button-send_1vktQrZ:hover,
|
|
5870
|
+
._message-input_vitro-button-send_1vktQrZ:active {
|
|
5692
5871
|
height: 36px;
|
|
5693
5872
|
width: 36px;
|
|
5694
5873
|
min-width: 36px;
|
|
@@ -5712,6 +5891,38 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
5712
5891
|
background-color: none;
|
|
5713
5892
|
border: none;
|
|
5714
5893
|
outline: none;
|
|
5894
|
+
}
|
|
5895
|
+
|
|
5896
|
+
._message-input_vitro-display-none_2dYTZ22 {
|
|
5897
|
+
display: none;
|
|
5898
|
+
}
|
|
5899
|
+
|
|
5900
|
+
._message-input_vitro-attached-file-list_l95S4VR {
|
|
5901
|
+
display: flex;
|
|
5902
|
+
flex-direction: column;
|
|
5903
|
+
align-items: center;
|
|
5904
|
+
}
|
|
5905
|
+
|
|
5906
|
+
._message-input_vitro-attached-file-list_l95S4VR::after {
|
|
5907
|
+
content: '';
|
|
5908
|
+
display: block;
|
|
5909
|
+
height: 1px;
|
|
5910
|
+
background: #E9ECEF;
|
|
5911
|
+
width: calc(100% - 16px);
|
|
5912
|
+
}
|
|
5913
|
+
|
|
5914
|
+
._message-input_vitro-attached-file-list_l95S4VR .ps {
|
|
5915
|
+
max-height: 97px;
|
|
5916
|
+
padding: 6px 8px 10px 8px;
|
|
5917
|
+
}
|
|
5918
|
+
|
|
5919
|
+
._message-input_vitro-attached-file-list_l95S4VR .ps > div:first-child {
|
|
5920
|
+
grid-gap: 12px;
|
|
5921
|
+
}
|
|
5922
|
+
|
|
5923
|
+
._message-input_vitro-flex_18M_7xU .ps > div:first-child {
|
|
5924
|
+
padding: 10px 16px 10px 8px !important;
|
|
5925
|
+
min-height: 36px;
|
|
5715
5926
|
}
|
|
5716
5927
|
._image-picker_vitro-image-picker-root_AqOYRhP {
|
|
5717
5928
|
width: 88px;
|
|
@@ -6045,10 +6256,6 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
6045
6256
|
height: 20px;
|
|
6046
6257
|
width: 20px;
|
|
6047
6258
|
}
|
|
6048
|
-
._flex-box_vitro-flex-box_3jGTD6k {
|
|
6049
|
-
display: flex;
|
|
6050
|
-
align-items: center;
|
|
6051
|
-
}
|
|
6052
6259
|
._search-input_vitro-search-input_3M9i4Gi {
|
|
6053
6260
|
height: 32px;
|
|
6054
6261
|
border-radius: 4px;
|
|
@@ -6534,6 +6741,137 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
6534
6741
|
margin-right: 8px;
|
|
6535
6742
|
border-radius: 50%;
|
|
6536
6743
|
}
|
|
6744
|
+
._scroll-view_vitro-scroll-view_TXQ8QQh {
|
|
6745
|
+
width: 100%;
|
|
6746
|
+
height: 100%;
|
|
6747
|
+
}
|
|
6748
|
+
|
|
6749
|
+
._scroll-view_vitro-scroll-view_TXQ8QQh .k-scrollview-next,
|
|
6750
|
+
._scroll-view_vitro-scroll-view_TXQ8QQh .k-scrollview-prev {
|
|
6751
|
+
height: 60px;
|
|
6752
|
+
width: 32px;
|
|
6753
|
+
}
|
|
6754
|
+
|
|
6755
|
+
._scroll-view_vitro-scroll-view_TXQ8QQh .k-i-arrowhead-e::before {
|
|
6756
|
+
content: url('@vitrosoftware/common-ui-ts/css/std/controls/scroll-view/img/scroll-view-next.svg');
|
|
6757
|
+
}
|
|
6758
|
+
|
|
6759
|
+
._scroll-view_vitro-scroll-view_TXQ8QQh .k-i-arrowhead-w::before {
|
|
6760
|
+
content: url('@vitrosoftware/common-ui-ts/css/std/controls/scroll-view/img/scroll-view-prev.svg');
|
|
6761
|
+
}
|
|
6762
|
+
|
|
6763
|
+
._scroll-view_vitro-scroll-view_TXQ8QQh .k-scrollview-nav .k-link {
|
|
6764
|
+
border-color: #E4E6EC !important;
|
|
6765
|
+
background-color: #E4E6EC !important;
|
|
6766
|
+
}
|
|
6767
|
+
|
|
6768
|
+
._scroll-view_vitro-scroll-view_TXQ8QQh .k-scrollview-nav .k-link.k-primary {
|
|
6769
|
+
border-color: #2A63F6 !important;
|
|
6770
|
+
background-color: #2A63F6 !important;
|
|
6771
|
+
}
|
|
6772
|
+
._page_vitro-image-container_QEXhGHE {
|
|
6773
|
+
width: 100%;
|
|
6774
|
+
height: 100%;
|
|
6775
|
+
display: flex;
|
|
6776
|
+
align-items: center;
|
|
6777
|
+
justify-content: center;
|
|
6778
|
+
padding: 0 60px;
|
|
6779
|
+
}
|
|
6780
|
+
|
|
6781
|
+
._page_vitro-image-container_QEXhGHE img {
|
|
6782
|
+
max-height: 100%;
|
|
6783
|
+
max-width: 100%;
|
|
6784
|
+
}
|
|
6785
|
+
|
|
6786
|
+
@media (max-width: 800px) {
|
|
6787
|
+
._page_vitro-image-container_QEXhGHE {
|
|
6788
|
+
padding: 0;
|
|
6789
|
+
}
|
|
6790
|
+
}
|
|
6791
|
+
|
|
6792
|
+
._image-viewer_vitro-image-viewer_19T7Auc {
|
|
6793
|
+
position: absolute;
|
|
6794
|
+
top: 0;
|
|
6795
|
+
left: 0;
|
|
6796
|
+
width: 100%;
|
|
6797
|
+
height: 100%;
|
|
6798
|
+
z-index: 200;
|
|
6799
|
+
}
|
|
6800
|
+
|
|
6801
|
+
._image-viewer_vitro-header_1KIbDWk {
|
|
6802
|
+
width: 100%;
|
|
6803
|
+
position: absolute;
|
|
6804
|
+
left: 0;
|
|
6805
|
+
top: 0;
|
|
6806
|
+
z-index: 1;
|
|
6807
|
+
padding: 20px;
|
|
6808
|
+
display: flex;
|
|
6809
|
+
justify-content: space-between;
|
|
6810
|
+
}
|
|
6811
|
+
|
|
6812
|
+
._image-viewer_vitro-button-close_36TY-iY {
|
|
6813
|
+
width: 32px;
|
|
6814
|
+
height: 32px;
|
|
6815
|
+
background: transparent;
|
|
6816
|
+
outline: none;
|
|
6817
|
+
border: none;
|
|
6818
|
+
background-repeat: no-repeat;
|
|
6819
|
+
background-size: 100%;
|
|
6820
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/image-viewer/img/image-viewer-close.svg');
|
|
6821
|
+
}
|
|
6822
|
+
|
|
6823
|
+
._image-viewer_vitro-scroll-view_3nuGD7c {
|
|
6824
|
+
background-color: #212529 !important;
|
|
6825
|
+
padding: 79px 0;
|
|
6826
|
+
}
|
|
6827
|
+
|
|
6828
|
+
._image-viewer_vitro-scroll-view_3nuGD7c .k-scrollview-prev {
|
|
6829
|
+
left: 20px !important;
|
|
6830
|
+
}
|
|
6831
|
+
|
|
6832
|
+
._image-viewer_vitro-scroll-view_3nuGD7c .k-scrollview-next {
|
|
6833
|
+
right: 20px !important;
|
|
6834
|
+
}
|
|
6835
|
+
|
|
6836
|
+
._image-viewer_vitro-dropdown-button_2TOT1pw .btn,
|
|
6837
|
+
._image-viewer_vitro-dropdown-button_2TOT1pw .btn:hover,
|
|
6838
|
+
._image-viewer_vitro-dropdown-button_2TOT1pw .btn:focus,
|
|
6839
|
+
._image-viewer_vitro-dropdown-button_2TOT1pw .btn:active,
|
|
6840
|
+
._image-viewer_vitro-dropdown-button_2TOT1pw .btn > span {
|
|
6841
|
+
width: 32px;
|
|
6842
|
+
height: 32px;
|
|
6843
|
+
}
|
|
6844
|
+
|
|
6845
|
+
._image-viewer_vitro-dropdown-button_2TOT1pw .btn > span {
|
|
6846
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/image-viewer/img/context-button-white.svg');
|
|
6847
|
+
}
|
|
6848
|
+
|
|
6849
|
+
._image-viewer_vitro-pager_1FiaoGR {
|
|
6850
|
+
width: 60px;
|
|
6851
|
+
display: flex;
|
|
6852
|
+
align-items: center;
|
|
6853
|
+
justify-content: center;
|
|
6854
|
+
color: #fff;
|
|
6855
|
+
font-size: 20px;
|
|
6856
|
+
line-height: 24px;
|
|
6857
|
+
position: absolute;
|
|
6858
|
+
bottom: 28px;
|
|
6859
|
+
left: calc(50% - 30px);
|
|
6860
|
+
}
|
|
6861
|
+
|
|
6862
|
+
@media (max-width: 800px) {
|
|
6863
|
+
._image-viewer_vitro-image-viewer_19T7Auc {
|
|
6864
|
+
z-index: 301;
|
|
6865
|
+
}
|
|
6866
|
+
|
|
6867
|
+
._image-viewer_vitro-scroll-view_3nuGD7c .k-scrollview-prev {
|
|
6868
|
+
left: 0 !important;
|
|
6869
|
+
}
|
|
6870
|
+
|
|
6871
|
+
._image-viewer_vitro-scroll-view_3nuGD7c .k-scrollview-next {
|
|
6872
|
+
right: 0 !important;
|
|
6873
|
+
}
|
|
6874
|
+
}
|
|
6537
6875
|
._page-layout_vitro-page_GzZ3agH {
|
|
6538
6876
|
height: 100%;
|
|
6539
6877
|
display: flex;
|
|
@@ -7190,3 +7528,44 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
|
|
|
7190
7528
|
width: 100%;
|
|
7191
7529
|
margin-top: 16px;
|
|
7192
7530
|
}
|
|
7531
|
+
|
|
7532
|
+
._linear-progress_vitro-linear-progress_1i4VVyb {
|
|
7533
|
+
height: 2px;
|
|
7534
|
+
position: relative;
|
|
7535
|
+
overflow: hidden;
|
|
7536
|
+
}
|
|
7537
|
+
|
|
7538
|
+
._linear-progress_vitro-bar_2rwmbp3 {
|
|
7539
|
+
width: 22%;
|
|
7540
|
+
height: 2px;
|
|
7541
|
+
background-color: #326AD6;
|
|
7542
|
+
animation: _linear-progress_progress_11DTdlB 2.7s ease-in-out infinite;
|
|
7543
|
+
position: absolute;
|
|
7544
|
+
left: 0;
|
|
7545
|
+
}
|
|
7546
|
+
|
|
7547
|
+
@keyframes _linear-progress_progress_11DTdlB {
|
|
7548
|
+
0% {
|
|
7549
|
+
transform: scaleX(1);
|
|
7550
|
+
transform-origin: bottom left;
|
|
7551
|
+
left: 0;
|
|
7552
|
+
}
|
|
7553
|
+
25% {
|
|
7554
|
+
transform: scaleX(1.75);
|
|
7555
|
+
transform-origin: bottom left;
|
|
7556
|
+
}
|
|
7557
|
+
50% {
|
|
7558
|
+
transform-origin: bottom left;
|
|
7559
|
+
transform: scaleX(1);
|
|
7560
|
+
left: 78%;
|
|
7561
|
+
}
|
|
7562
|
+
75% {
|
|
7563
|
+
transform: scaleX(1.75);
|
|
7564
|
+
transform-origin: bottom right;
|
|
7565
|
+
}
|
|
7566
|
+
100% {
|
|
7567
|
+
transform: scaleX(1);
|
|
7568
|
+
transform-origin: bottom right;
|
|
7569
|
+
left: 0;
|
|
7570
|
+
}
|
|
7571
|
+
}
|