@vitrosoftware/common-ui-ts 1.1.84 → 1.1.85
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/{common.css → std/common.css} +0 -10
- package/css/std/controls/bim-viewer/bim-viewer-index.css +6 -0
- package/css/std/controls/bim-viewer/bim-viewer.css +6 -0
- package/css/std/controls/file-version-select/file-version-select.css +11 -0
- package/css/std/controls/pdf-viewer/pdf-viewer-index.css +10 -3
- package/css/std/controls/pdf-viewer/pdf-viewer.css +10 -3
- package/css/std/controls/scrollbar/scrollbar.css +2 -0
- package/css/std/controls/sidebar/sidebar-item.css +214 -40
- package/css/std/controls/sidebar/sidebar.css +20 -7
- package/css/std/controls/table-view/treegrid.css +42 -27
- package/css/std/controls/tree-view/tree-view.css +2 -0
- package/css/white/common.css +21 -0
- package/dist/index.css +251 -58
- package/dist/index.js +246 -43
- package/dist/index.js.map +1 -1
- package/dist/src/constants/MobileView.d.ts +3 -0
- package/dist/src/controls/ScrollBar/ScrollBar.d.ts +1 -0
- package/dist/src/controls/Sidebar/GroupItem.d.ts +16 -0
- package/dist/src/controls/Sidebar/Item.d.ts +4 -2
- package/dist/src/controls/Sidebar/LinkItem.d.ts +5 -3
- package/dist/src/controls/Sidebar/Section.d.ts +7 -2
- package/dist/src/controls/Sidebar/SectionList.d.ts +3 -0
- package/dist/src/controls/Sidebar/SidebarItem.d.ts +6 -4
- package/dist/src/index.d.ts +1 -1
- package/package.json +2 -2
- package/src/controls/BimViewer/js/bim-viewer.js +2 -2
- package/src/controls/PdfViewer/js/pdf-viewer.js +2 -2
|
@@ -1,14 +1,4 @@
|
|
|
1
1
|
@import url('@vitrosoftware/common-ui-ts/css/third-party/kendo/kendo.css');
|
|
2
|
-
@import url('@vitrosoftware/common-ui-ts/css/third-party/perfect-scrollbar/perfect-scrollbar.css');
|
|
3
|
-
@import url('@vitrosoftware/common-ui-ts/css/third-party/jstree/style.min.css');
|
|
4
|
-
@import url('@vitrosoftware/common-ui-ts/css/third-party/jquery-ui/jquery-ui.min.css');
|
|
5
|
-
@import url('@vitrosoftware/common-ui-ts/css/third-party/jquery-ui/jquery-ui.structure.css');
|
|
6
|
-
@import url('@vitrosoftware/common-ui-ts/css/third-party/jquery-ui/jquery-ui.theme.min.css');
|
|
7
|
-
@import url('@vitrosoftware/common-ui-ts/css/third-party/jquery-contextMenu/jquery.contextMenu.min.css');
|
|
8
|
-
@import url('@vitrosoftware/common-ui-ts/css/third-party/jquery-svg/jquery.svg.css');
|
|
9
|
-
@import url('@vitrosoftware/common-ui-ts/css/third-party/sweetalert2/sweetalert2.css');
|
|
10
|
-
@import url('@vitrosoftware/common-ui-ts/css/third-party/jquery-growl/jquery.growl.css');
|
|
11
|
-
@import url('@vitrosoftware/common-ui-ts/css/third-party/uikit/uikit.css');
|
|
12
2
|
|
|
13
3
|
html, body {
|
|
14
4
|
overscroll-behavior-x: none;
|
|
@@ -1045,6 +1045,12 @@ a.ui-button:active,
|
|
|
1045
1045
|
margin-right: 0;
|
|
1046
1046
|
}
|
|
1047
1047
|
|
|
1048
|
+
@import url('@vitrosoftware/common-ui-ts/css/third-party/jquery-ui/jquery-ui.min.css');
|
|
1049
|
+
@import url('@vitrosoftware/common-ui-ts/css/third-party/jquery-ui/jquery-ui.structure.css');
|
|
1050
|
+
@import url('@vitrosoftware/common-ui-ts/css/third-party/jquery-ui/jquery-ui.theme.min.css');
|
|
1051
|
+
@import url('@vitrosoftware/common-ui-ts/css/third-party/jquery-growl/jquery.growl.css');
|
|
1052
|
+
@import url('@vitrosoftware/common-ui-ts/css/third-party/uikit/uikit.css');
|
|
1053
|
+
|
|
1048
1054
|
.vitro-bim-viewer-issue-detail {
|
|
1049
1055
|
position: absolute;
|
|
1050
1056
|
bottom: 0px;
|
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
@import url('@vitrosoftware/common-ui-ts/css/third-party/jquery-ui/jquery-ui.min.css');
|
|
2
|
+
@import url('@vitrosoftware/common-ui-ts/css/third-party/jquery-ui/jquery-ui.structure.css');
|
|
3
|
+
@import url('@vitrosoftware/common-ui-ts/css/third-party/jquery-ui/jquery-ui.theme.min.css');
|
|
4
|
+
@import url('@vitrosoftware/common-ui-ts/css/third-party/jquery-growl/jquery.growl.css');
|
|
5
|
+
@import url('@vitrosoftware/common-ui-ts/css/third-party/uikit/uikit.css');
|
|
6
|
+
|
|
1
7
|
.vitro-bim-viewer-issue-detail {
|
|
2
8
|
position: absolute;
|
|
3
9
|
bottom: 0px;
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
overflow: hidden;
|
|
14
14
|
min-width: 0;
|
|
15
15
|
align-items: center;
|
|
16
|
+
cursor: pointer;
|
|
16
17
|
}
|
|
17
18
|
|
|
18
19
|
.vitro-file-name {
|
|
@@ -94,6 +95,16 @@
|
|
|
94
95
|
background-image: url("data:image/svg+xml,%3Csvg width='44' height='42' viewBox='0 0 44 42' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_dd_778_105705)'%3E%3Cpath d='M20.3117 11.6584C21.0973 10.4213 22.9027 10.4213 23.6883 11.6584L29.5752 20.9278C30.4208 22.2593 29.4642 24 27.8869 24H16.1131C14.5358 24 13.5792 22.2593 14.4248 20.9278L20.3117 11.6584Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_dd_778_105705' x='0.109375' y='0.730469' width='43.7812' height='41.2695' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='4'/%3E%3CfeGaussianBlur stdDeviation='7'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.18 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_778_105705'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation='2'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.14 0'/%3E%3CfeBlend mode='normal' in2='effect1_dropShadow_778_105705' result='effect2_dropShadow_778_105705'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect2_dropShadow_778_105705' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E%0A");
|
|
95
96
|
}
|
|
96
97
|
|
|
98
|
+
.vitro-version-list :global(.ps) {
|
|
99
|
+
max-height: 364px;
|
|
100
|
+
border-radius: 4px;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.vitro-version-list :global(.ps__rail-y) {
|
|
104
|
+
border: none;
|
|
105
|
+
background-color: transparent !important;
|
|
106
|
+
}
|
|
107
|
+
|
|
97
108
|
.vitro-file-version-item {
|
|
98
109
|
padding: 8px 12px;
|
|
99
110
|
display: flex;
|
|
@@ -4561,6 +4561,13 @@ html[dir="ltr"] .treeItemToggler::before {
|
|
|
4561
4561
|
color: rgba(0, 0, 0, 1);
|
|
4562
4562
|
}
|
|
4563
4563
|
|
|
4564
|
+
@import url('@vitrosoftware/common-ui-ts/css/third-party/jquery-ui/jquery-ui.min.css');
|
|
4565
|
+
@import url('@vitrosoftware/common-ui-ts/css/third-party/jquery-ui/jquery-ui.structure.css');
|
|
4566
|
+
@import url('@vitrosoftware/common-ui-ts/css/third-party/jquery-ui/jquery-ui.theme.min.css');
|
|
4567
|
+
@import url('@vitrosoftware/common-ui-ts/css/third-party/jquery-contextMenu/jquery.contextMenu.min.css');
|
|
4568
|
+
@import url('@vitrosoftware/common-ui-ts/css/third-party/jquery-svg/jquery.svg.css');
|
|
4569
|
+
@import url('@vitrosoftware/common-ui-ts/css/third-party/sweetalert2/sweetalert2.css');
|
|
4570
|
+
|
|
4564
4571
|
html[dir='ltr'] body {
|
|
4565
4572
|
background-color: #F5F6FA;
|
|
4566
4573
|
}
|
|
@@ -4920,8 +4927,7 @@ a:focus > .thumbnail > .thumbnailSelectionRing,
|
|
|
4920
4927
|
user-select: none;
|
|
4921
4928
|
}
|
|
4922
4929
|
|
|
4923
|
-
.select
|
|
4924
|
-
content: '';
|
|
4930
|
+
.select > span {
|
|
4925
4931
|
display: block;
|
|
4926
4932
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M19.5 9L12 16.5L4.5 9' stroke='%234A556C' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
4927
4933
|
width: 24px;
|
|
@@ -4932,9 +4938,10 @@ a:focus > .thumbnail > .thumbnailSelectionRing,
|
|
|
4932
4938
|
background-size: 100%;
|
|
4933
4939
|
background-position: center;
|
|
4934
4940
|
background-repeat: no-repeat;
|
|
4941
|
+
cursor: pointer;
|
|
4935
4942
|
}
|
|
4936
4943
|
|
|
4937
|
-
.select.active
|
|
4944
|
+
.select.active > span {
|
|
4938
4945
|
transform: rotate(-180deg);
|
|
4939
4946
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M19.5 9L12 16.5L4.5 9' stroke='%233274E0' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
4940
4947
|
}
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
@import url('@vitrosoftware/common-ui-ts/css/third-party/jquery-ui/jquery-ui.min.css');
|
|
2
|
+
@import url('@vitrosoftware/common-ui-ts/css/third-party/jquery-ui/jquery-ui.structure.css');
|
|
3
|
+
@import url('@vitrosoftware/common-ui-ts/css/third-party/jquery-ui/jquery-ui.theme.min.css');
|
|
4
|
+
@import url('@vitrosoftware/common-ui-ts/css/third-party/jquery-contextMenu/jquery.contextMenu.min.css');
|
|
5
|
+
@import url('@vitrosoftware/common-ui-ts/css/third-party/jquery-svg/jquery.svg.css');
|
|
6
|
+
@import url('@vitrosoftware/common-ui-ts/css/third-party/sweetalert2/sweetalert2.css');
|
|
7
|
+
|
|
1
8
|
html[dir='ltr'] body {
|
|
2
9
|
background-color: #F5F6FA;
|
|
3
10
|
}
|
|
@@ -357,8 +364,7 @@ a:focus > .thumbnail > .thumbnailSelectionRing,
|
|
|
357
364
|
user-select: none;
|
|
358
365
|
}
|
|
359
366
|
|
|
360
|
-
.select
|
|
361
|
-
content: '';
|
|
367
|
+
.select > span {
|
|
362
368
|
display: block;
|
|
363
369
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M19.5 9L12 16.5L4.5 9' stroke='%234A556C' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
364
370
|
width: 24px;
|
|
@@ -369,9 +375,10 @@ a:focus > .thumbnail > .thumbnailSelectionRing,
|
|
|
369
375
|
background-size: 100%;
|
|
370
376
|
background-position: center;
|
|
371
377
|
background-repeat: no-repeat;
|
|
378
|
+
cursor: pointer;
|
|
372
379
|
}
|
|
373
380
|
|
|
374
|
-
.select.active
|
|
381
|
+
.select.active > span {
|
|
375
382
|
transform: rotate(-180deg);
|
|
376
383
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M19.5 9L12 16.5L4.5 9' stroke='%233274E0' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
377
384
|
}
|
|
@@ -1,28 +1,68 @@
|
|
|
1
|
-
.vitro-
|
|
2
|
-
display:
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
margin-
|
|
1
|
+
.vitro-item {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
justify-content: center;
|
|
5
|
+
margin-bottom: 8px;
|
|
6
6
|
}
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
.vitro-icon {
|
|
9
|
+
width: 24px;
|
|
10
|
+
height: 24px;
|
|
11
|
+
flex-shrink: 0;
|
|
12
|
+
margin-right: 16px;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.vitro-item button,
|
|
16
|
+
.vitro-item a {
|
|
17
|
+
text-decoration: none;
|
|
18
|
+
outline: none;
|
|
19
|
+
border: none;
|
|
20
|
+
background-color: transparent;
|
|
21
|
+
height: 40px;
|
|
22
|
+
width: 100%;
|
|
23
|
+
border-radius: 8px;
|
|
24
|
+
padding: 8px;
|
|
25
|
+
cursor: pointer;
|
|
26
|
+
display: flex;
|
|
27
|
+
align-items: center;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.vitro-item a > div,
|
|
31
|
+
.vitro-item button > div {
|
|
32
|
+
display: flex;
|
|
33
|
+
width: fit-content;
|
|
34
|
+
align-items: center;
|
|
35
|
+
overflow: hidden;
|
|
36
|
+
flex-shrink: 0;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
ul > li:last-child > ul > li:last-child .vitro-active {
|
|
40
|
+
background-color: transparent;
|
|
10
41
|
}
|
|
11
42
|
|
|
12
43
|
.vitro-item-text {
|
|
13
|
-
|
|
44
|
+
overflow: hidden;
|
|
45
|
+
text-overflow: ellipsis;
|
|
46
|
+
white-space: nowrap;
|
|
14
47
|
}
|
|
15
48
|
|
|
16
|
-
.vitro-
|
|
17
|
-
|
|
49
|
+
.vitro-icon-text {
|
|
50
|
+
text-align: center;
|
|
18
51
|
}
|
|
19
52
|
|
|
20
|
-
.vitro-
|
|
21
|
-
|
|
53
|
+
.vitro-icon-text,
|
|
54
|
+
.vitro-item-text {
|
|
55
|
+
color: #222D44;
|
|
56
|
+
font-size: 14px;
|
|
22
57
|
}
|
|
23
58
|
|
|
24
|
-
|
|
25
|
-
background-color:
|
|
59
|
+
.vitro-active {
|
|
60
|
+
background-color: #DCEEFF !important;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.vitro-hover .vitro-icon-text,
|
|
64
|
+
.vitro-hover .vitro-item-text {
|
|
65
|
+
color: #326AD6;
|
|
26
66
|
}
|
|
27
67
|
|
|
28
68
|
.vitro-active .vitro-icon-text,
|
|
@@ -32,46 +72,89 @@ ul > li:last-child > ul > li:last-child .vitro-active {
|
|
|
32
72
|
font-family: 'InterMedium';
|
|
33
73
|
}
|
|
34
74
|
|
|
35
|
-
.vitro-
|
|
36
|
-
|
|
37
|
-
|
|
75
|
+
.vitro-group-item > button,
|
|
76
|
+
.vitro-group-item > a {
|
|
77
|
+
display: flex;
|
|
78
|
+
align-items: center;
|
|
38
79
|
}
|
|
39
80
|
|
|
40
|
-
|
|
41
|
-
|
|
81
|
+
|
|
82
|
+
.vitro-group-item > .vitro-item-list > .vitro-item:last-child {
|
|
83
|
+
margin-bottom: 0;
|
|
42
84
|
}
|
|
43
85
|
|
|
44
|
-
.vitro-item
|
|
86
|
+
.vitro-group-item > .vitro-item-list > .vitro-item a,
|
|
87
|
+
.vitro-group-item > .vitro-item-list > .vitro-item button {
|
|
45
88
|
display: flex;
|
|
46
|
-
|
|
89
|
+
flex-direction: row;
|
|
47
90
|
align-items: center;
|
|
91
|
+
padding-left: 24px;
|
|
48
92
|
}
|
|
49
93
|
|
|
50
|
-
.vitro-item a
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
94
|
+
.vitro-group-item > .vitro-item-list > .vitro-item > a::before,
|
|
95
|
+
.vitro-group-item > .vitro-item-list > .vitro-item > button::before {
|
|
96
|
+
content: '';
|
|
97
|
+
display: block;
|
|
98
|
+
flex-shrink: 0;
|
|
99
|
+
height: 24px;
|
|
100
|
+
width: 24px;
|
|
101
|
+
background-size: 100%;
|
|
102
|
+
background-position: center;
|
|
103
|
+
/* list-marker.svg URL-encoder for svg */
|
|
104
|
+
background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='3' fill='%23222D44'/%3E%3C/svg%3E%0A");
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.vitro-group-item > .vitro-item-list > .vitro-item > .vitro-active::before,
|
|
108
|
+
.vitro-group-item > .vitro-item-list > .vitro-item > .vitro-hover::before {
|
|
109
|
+
/* list-marker-active.svg URL-encoder for svg */
|
|
110
|
+
background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='3' fill='%23326AD6'/%3E%3C/svg%3E%0A");
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.vitro-expanded,
|
|
114
|
+
.vitro-collapsed {
|
|
56
115
|
cursor: pointer;
|
|
57
|
-
margin-bottom: 8px;
|
|
58
116
|
display: block;
|
|
117
|
+
flex-shrink: 0;
|
|
118
|
+
margin-left: auto;
|
|
119
|
+
width: 16px;
|
|
120
|
+
height: 16px;
|
|
121
|
+
background-size: 100%;
|
|
122
|
+
background-repeat: no-repeat;
|
|
123
|
+
background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 6L8 11L3 6' stroke='%23222D44' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.vitro-expanded {
|
|
127
|
+
transform: rotateX(180deg);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.vitro-active .vitro-expanded,
|
|
131
|
+
.vitro-hover .vitro-expanded,
|
|
132
|
+
.vitro-active .vitro-collapsed,
|
|
133
|
+
.vitro-hover .vitro-collapsed {
|
|
134
|
+
content: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 6L8 11L3 6' stroke='%23326AD6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
|
|
59
135
|
}
|
|
60
136
|
|
|
137
|
+
.vitro-display-none {
|
|
138
|
+
display: none;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
:global(.vitro-bottom-menu) .vitro-icon-text,
|
|
61
142
|
:global(.vitro-bottom-menu) .vitro-item-text {
|
|
62
143
|
display: block;
|
|
63
144
|
color: #4A556C;
|
|
64
145
|
font-size: 12px;
|
|
65
146
|
line-height: 12px;
|
|
66
147
|
text-align: center;
|
|
148
|
+
overflow: visible;
|
|
149
|
+
white-space: normal;
|
|
67
150
|
}
|
|
68
151
|
|
|
69
|
-
:global(.vitro-bottom-menu) .vitro-icon
|
|
70
|
-
|
|
152
|
+
:global(.vitro-bottom-menu) .vitro-icon {
|
|
153
|
+
margin-right: 0;
|
|
71
154
|
}
|
|
72
155
|
|
|
73
156
|
:global(.vitro-bottom-menu) .vitro-active {
|
|
74
|
-
background: transparent;
|
|
157
|
+
background: transparent !important;
|
|
75
158
|
position: relative;
|
|
76
159
|
}
|
|
77
160
|
|
|
@@ -86,17 +169,13 @@ ul > li:last-child > ul > li:last-child .vitro-active {
|
|
|
86
169
|
bottom: -8px;
|
|
87
170
|
}
|
|
88
171
|
|
|
89
|
-
.vitro-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
.vitro-item {
|
|
95
|
-
display: flex;
|
|
96
|
-
justify-content: center;
|
|
172
|
+
:global(.vitro-bottom-menu) .vitro-item {
|
|
173
|
+
margin-bottom: 0;
|
|
174
|
+
align-items: center;
|
|
97
175
|
}
|
|
98
176
|
|
|
99
|
-
:global(.vitro-bottom-menu) .vitro-item > a
|
|
177
|
+
:global(.vitro-bottom-menu) .vitro-item > a,
|
|
178
|
+
:global(.vitro-bottom-menu) .vitro-item > button {
|
|
100
179
|
background: transparent;
|
|
101
180
|
position: relative;
|
|
102
181
|
display: flex;
|
|
@@ -107,4 +186,99 @@ ul > li:last-child > ul > li:last-child .vitro-active {
|
|
|
107
186
|
height: 100%;
|
|
108
187
|
padding: 0;
|
|
109
188
|
margin-bottom: 0;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.vitro-popup-container {
|
|
192
|
+
transform: translate3d(0px, 0, 0px) !important;
|
|
193
|
+
height: 100%;
|
|
194
|
+
width: 100%;
|
|
195
|
+
padding: 0 0 56px 0;
|
|
196
|
+
display: flex;
|
|
197
|
+
flex-direction: column;
|
|
198
|
+
background: rgba(34, 45, 68, 0.56);
|
|
199
|
+
z-index: 1;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.vitro-scrollbar {
|
|
203
|
+
max-height: 292px;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.vitro-scrollbar :global(.ps__rail-y) {
|
|
207
|
+
background: transparent !important;
|
|
208
|
+
border: none;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.vitro-scrollbar :global(.ps__thumb-y) {
|
|
212
|
+
width: 2px !important;
|
|
213
|
+
right: 3px !important;
|
|
214
|
+
background-color: #E4E6EC !important;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.vitro-scrollbar > div:first-child {
|
|
218
|
+
max-height: 292px;
|
|
219
|
+
height: fit-content;
|
|
220
|
+
padding: 0 24px;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.vitro-popup-item-list {
|
|
224
|
+
background: #F7F9FC;
|
|
225
|
+
width: 100%;
|
|
226
|
+
border-radius: 8px 8px 0 0;
|
|
227
|
+
padding: 0 0 4px 0;
|
|
228
|
+
margin: auto 0 0 0;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.vitro-popup-item-list .vitro-item {
|
|
232
|
+
margin-bottom: 8px;
|
|
233
|
+
width: 100% !important;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.vitro-popup-item-list .vitro-item > a,
|
|
237
|
+
.vitro-popup-item-list .vitro-item > button {
|
|
238
|
+
background-color: #fff;
|
|
239
|
+
padding: 12px;
|
|
240
|
+
height: 48px;
|
|
241
|
+
border-radius: 8px;
|
|
242
|
+
width: 100%;
|
|
243
|
+
box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.25);
|
|
244
|
+
justify-content: flex-start;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.vitro-popup-item-list .vitro-item > a::before,
|
|
248
|
+
.vitro-popup-item-list .vitro-item > button::before {
|
|
249
|
+
content: '';
|
|
250
|
+
display: block;
|
|
251
|
+
flex-shrink: 0;
|
|
252
|
+
height: 24px;
|
|
253
|
+
width: 24px;
|
|
254
|
+
margin-right: 8px;
|
|
255
|
+
background-size: 100%;
|
|
256
|
+
background-position: center;
|
|
257
|
+
/* list-marker.svg URL-encoder for svg */
|
|
258
|
+
background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='3' fill='%23222D44'/%3E%3C/svg%3E%0A");
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.vitro-popup-item-list .vitro-active {
|
|
262
|
+
background-color: #DCEEFF !important;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.vitro-popup-item-list .vitro-active .vitro-item-text {
|
|
266
|
+
font-family: 'InterRegular';
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.vitro-popup-item-list .vitro-item-text {
|
|
270
|
+
font-size: 16px;
|
|
271
|
+
line-height: 24px;
|
|
272
|
+
color: #222D44;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.vitro-button-close {
|
|
276
|
+
background-color: #8E98A3;
|
|
277
|
+
width: 32px;
|
|
278
|
+
height: 4px;
|
|
279
|
+
display: block;
|
|
280
|
+
outline: none;
|
|
281
|
+
border: none;
|
|
282
|
+
border-radius: 2px;
|
|
283
|
+
margin: 12px auto;
|
|
110
284
|
}
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
align-items: center;
|
|
10
10
|
flex-direction: column;
|
|
11
11
|
padding-top: 80px !important;
|
|
12
|
-
padding: 0 8px 6px 8px;
|
|
13
12
|
top: 0;
|
|
14
13
|
}
|
|
15
14
|
|
|
@@ -35,10 +34,6 @@
|
|
|
35
34
|
justify-content: space-between;
|
|
36
35
|
}
|
|
37
36
|
|
|
38
|
-
.vitro-sidebar ul > li:last-child > ul > li:last-child a {
|
|
39
|
-
margin-bottom: 0;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
37
|
.vitro-sidebar ul > li:last-child > ul > li:last-child a:hover {
|
|
43
38
|
background-color: transparent;
|
|
44
39
|
}
|
|
@@ -52,9 +47,25 @@
|
|
|
52
47
|
font-weight: 400 !important;
|
|
53
48
|
}
|
|
54
49
|
|
|
50
|
+
.vitro-scrollbar :global(.ps__rail-y) {
|
|
51
|
+
background-color: transparent !important;
|
|
52
|
+
border: none;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.vitro-scrollbar > div:first-child {
|
|
56
|
+
padding: 0 8px;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.vitro-sidebar-section-list {
|
|
60
|
+
height: 100%;
|
|
61
|
+
display: flex;
|
|
62
|
+
flex-direction: column;
|
|
63
|
+
justify-content: space-between;
|
|
64
|
+
}
|
|
65
|
+
|
|
55
66
|
:global(.vitro-bottom-menu) {
|
|
56
67
|
width: 100%;
|
|
57
|
-
z-index:
|
|
68
|
+
z-index: 2;
|
|
58
69
|
flex-direction: row;
|
|
59
70
|
height: 60px;
|
|
60
71
|
padding: 0 21px !important;
|
|
@@ -63,6 +74,7 @@
|
|
|
63
74
|
top: initial;
|
|
64
75
|
box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.18), 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
|
|
65
76
|
border-radius: 4px 4px 0 0;
|
|
77
|
+
overflow: visible;
|
|
66
78
|
}
|
|
67
79
|
|
|
68
80
|
:global(.vitro-bottom-menu) ul {
|
|
@@ -74,7 +86,8 @@
|
|
|
74
86
|
.vitro-scroll-container {
|
|
75
87
|
height: 100%;
|
|
76
88
|
flex: 0 1 auto;
|
|
77
|
-
overflow: hidden;
|
|
89
|
+
overflow-x: hidden;
|
|
90
|
+
overflow-y: visible;
|
|
78
91
|
padding: 8px 0;
|
|
79
92
|
}
|
|
80
93
|
|