@vitrosoftware/common-ui-ts 1.0.1 → 1.0.2
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/white/common.css +3 -0
- package/css/white/controls/breadcrumbs/breadcrumbs.css +178 -0
- package/css/white/controls/table-view/table-view.css +57 -0
- package/css/white/controls/top-level-menu/top-level-menu.css +89 -0
- package/css/white/controls/tree-view/tree-view-context-menu.css +77 -0
- package/css/white/controls/tree-view/tree-view.css +109 -0
- package/css/white/controls/uploader/uploader.css +74 -0
- package/css/white/third-party/jstree/32px.png +0 -0
- package/css/white/third-party/jstree/40px.png +0 -0
- package/css/white/third-party/jstree/style.min.css +1 -0
- package/css/white/third-party/jstree/throbber.gif +0 -0
- package/css/white/third-party/kendo.css +25 -0
- package/css/white/third-party/treegrid.css +482 -0
- package/dist/controls/Breadcrumbs/Breadcrumbs.d.ts +9 -0
- package/dist/controls/Breadcrumbs/BreadcrumbsItem.d.ts +4 -0
- package/dist/controls/Breadcrumbs/Item.d.ts +8 -0
- package/dist/controls/MicroFrontend/MicroFrontend.d.ts +8 -0
- package/dist/controls/MicroFrontend/MicroFrontendState.d.ts +8 -0
- package/dist/controls/MicroFrontend/renderMicrofrontend.d.ts +2 -0
- package/dist/controls/TableView/TableView.d.ts +19 -0
- package/dist/controls/TableView/TableViewCol.d.ts +3 -0
- package/dist/controls/TableView/TableViewContext.d.ts +50 -0
- package/dist/controls/TableView/TableViewEventHandler.d.ts +4 -0
- package/dist/controls/TableView/TableViewRow.d.ts +3 -0
- package/dist/controls/TableView/TreeGrid.d.ts +20 -0
- package/dist/controls/TableView/TreeGridTableViewContextImpl.d.ts +56 -0
- package/dist/controls/TableView/constants.d.ts +14 -0
- package/dist/controls/TelerikUploader/TelerikUploader.d.ts +9 -0
- package/dist/controls/TelerikUploader/TelerikUploaderContext.d.ts +6 -0
- package/dist/controls/TelerikUploader/TelerikUploaderContextImpl.d.ts +16 -0
- package/dist/controls/TelerikUploader/TelerikUploaderSettings.d.ts +11 -0
- package/dist/controls/TelerikUploader/constants.d.ts +5 -0
- package/dist/controls/TopLevelMenu/LinkItem.d.ts +9 -0
- package/dist/{control → controls}/TopLevelMenu/TopLevelMenu.d.ts +1 -7
- package/dist/controls/TopLevelMenu/TopLevelMenuItem.d.ts +7 -0
- package/dist/{control/TreeView/TreeView.d.ts → controls/TreeView/JsTreeViewContextImpl.d.ts} +9 -18
- package/dist/controls/TreeView/TreeView.d.ts +10 -0
- package/dist/{control → controls}/TreeView/TreeViewConfig.d.ts +0 -0
- package/dist/controls/TreeView/TreeViewContext.d.ts +22 -0
- package/dist/controls/TreeView/TreeViewEventHandler.d.ts +4 -0
- package/dist/{control → controls}/TreeView/constants.d.ts +0 -0
- package/dist/index.css +391 -26
- package/dist/index.d.ts +20 -5
- package/dist/index.js +7054 -34
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +7073 -50
- package/dist/index.modern.js.map +1 -1
- package/package.json +9 -7
- package/dist/control/Breadcrumbs/Breadcrumbs.d.ts +0 -23
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
.vitro-breadcrumbs ::-webkit-scrollbar {
|
|
2
|
+
width: 4px;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.vitro-breadcrumbs ::-webkit-scrollbar-track {
|
|
6
|
+
background: #fff;
|
|
7
|
+
border-radius: 8px;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.vitro-breadcrumbs ::-webkit-scrollbar-thumb {
|
|
11
|
+
background: #e0e0e0;
|
|
12
|
+
border-radius: 2px;
|
|
13
|
+
height: 20px;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.vitro-breadcrumbs ::-webkit-scrollbar-thumb:hover {
|
|
17
|
+
background: #828282;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.vitro-breadcrumbs {
|
|
21
|
+
height: 28px;
|
|
22
|
+
display: flex;
|
|
23
|
+
flex-direction: column;
|
|
24
|
+
border-left: 1px solid #BDBDBD;
|
|
25
|
+
padding: 0 0 0 12px;
|
|
26
|
+
position: relative;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.vitro-breadcrumbs .vitro-breadcrumbs-list-wrap {
|
|
30
|
+
display: flex;
|
|
31
|
+
position: relative;
|
|
32
|
+
justify-content: space-between;
|
|
33
|
+
flex-direction: row-reverse;
|
|
34
|
+
justify-content: flex-end;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.vitro-breadcrumbs .breadcrumbs-button {
|
|
38
|
+
height: 12px;
|
|
39
|
+
width: 12px;
|
|
40
|
+
cursor: pointer;
|
|
41
|
+
margin-right: 8px;
|
|
42
|
+
position: relative;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.vitro-breadcrumbs .breadcrumbs-button::after {
|
|
46
|
+
content: '<<';
|
|
47
|
+
color: #828282;
|
|
48
|
+
display: inline-block;
|
|
49
|
+
font-size: 13px;
|
|
50
|
+
line-height: 10px;
|
|
51
|
+
height: 10px;
|
|
52
|
+
position: absolute;
|
|
53
|
+
right: 0;
|
|
54
|
+
top: 0;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.vitro-breadcrumbs .vitro-breadcrumbs-list {
|
|
58
|
+
list-style-type: none;
|
|
59
|
+
margin: 0;
|
|
60
|
+
padding: 0;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.vitro-breadcrumbs .vitro-breadcrumbs-list > li {
|
|
64
|
+
margin-right: 6px;
|
|
65
|
+
color: #828282;
|
|
66
|
+
font-size: 10px;
|
|
67
|
+
line-height: 10px;
|
|
68
|
+
cursor: pointer;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.vitro-breadcrumbs .site-name {
|
|
72
|
+
font-size: 13px;
|
|
73
|
+
line-height: 13px;
|
|
74
|
+
color: #4F4F4F;
|
|
75
|
+
margin-bottom: 4px;
|
|
76
|
+
align-self: flex-start;
|
|
77
|
+
cursor: pointer;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.vitro-breadcrumbs .site-name::after {
|
|
81
|
+
content: '>';
|
|
82
|
+
display: inline-block;
|
|
83
|
+
margin-left: 8px;
|
|
84
|
+
font-size: 16px;
|
|
85
|
+
transform: rotate(90deg);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.vitro-breadcrumbs .site-name.opened::after {
|
|
89
|
+
display: inline-block;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.vitro-breadcrumbs .site-name.closed::after {
|
|
93
|
+
display: none;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.vitro-breadcrumbs .drop-down-list {
|
|
97
|
+
background: white;
|
|
98
|
+
position: absolute;
|
|
99
|
+
top: 100%;
|
|
100
|
+
left: 0;
|
|
101
|
+
margin-top: 8px;
|
|
102
|
+
border-radius: 8px;
|
|
103
|
+
box-shadow: rgb(0 0 0 / 13%) 0px 3.2px 7.2px 0px, rgb(0 0 0 / 11%) 0px 0.6px 1.8px 0px;
|
|
104
|
+
padding: 0;
|
|
105
|
+
overflow: hidden;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.vitro-breadcrumbs .drop-down-list ul {
|
|
109
|
+
max-height: 172px;
|
|
110
|
+
padding: 0;
|
|
111
|
+
display: flex;
|
|
112
|
+
flex-direction: column-reverse;
|
|
113
|
+
list-style-type: none;
|
|
114
|
+
font-size: 10px;
|
|
115
|
+
color: #828282;
|
|
116
|
+
margin-bottom: 0px;
|
|
117
|
+
overflow-y: auto;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.vitro-breadcrumbs .drop-down-list ul > li {
|
|
121
|
+
line-height: 24px;
|
|
122
|
+
cursor: pointer;
|
|
123
|
+
padding: 0 12px;
|
|
124
|
+
white-space: nowrap;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.vitro-breadcrumbs .drop-down-list ul > li:hover {
|
|
128
|
+
background: #F5F6FA;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.vitro-breadcrumbs .vitro-breadcrumbs-list {
|
|
132
|
+
display: flex;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.vitro-breadcrumbs .vitro-breadcrumbs-list > li:not(:last-child)::after {
|
|
136
|
+
content: '>';
|
|
137
|
+
display: inline-block;
|
|
138
|
+
margin-left: 8px;
|
|
139
|
+
font-size: 13px;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.vitro-breadcrumbs .drop-down-list ul > li::after {
|
|
143
|
+
content: '>';
|
|
144
|
+
display: inline-block;
|
|
145
|
+
transform: rotate(-90deg);
|
|
146
|
+
margin-left: 8px;
|
|
147
|
+
font-size: 13px;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
@media (max-width: 800px) {
|
|
151
|
+
.vitro-breadcrumbs .vitro-breadcrumbs-list-wrap {
|
|
152
|
+
flex-direction: row;
|
|
153
|
+
justify-content: space-between;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.vitro-breadcrumbs .breadcrumbs-button {
|
|
157
|
+
margin-right: 0;
|
|
158
|
+
/* archive.svg URL-encoder for SVG */
|
|
159
|
+
background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' standalone='no'%3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 20010904//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'%3E%3Csvg version='1.0' xmlns='http://www.w3.org/2000/svg' width='12.000000pt' height='12.000000pt' viewBox='0 0 512.000000 512.000000' preserveAspectRatio='xMidYMid meet'%3E%3Cg transform='translate(0.000000,512.000000) scale(0.100000,-0.100000)'%0Afill='%23000000' stroke='none'%3E%3Cpath d='M1485 4445 c-478 -117 -886 -222 -905 -232 -19 -10 -45 -36 -57 -58%0Al-23 -40 0 -1548 c0 -1298 2 -1553 14 -1581 22 -53 62 -83 135 -100 172 -41%0A2089 -426 2121 -426 42 0 92 30 124 73 19 26 21 45 24 187 l3 159 229 3 c251%0A3 254 4 304 72 21 27 21 36 24 911 l2 883 53 12 c78 17 177 28 320 36 l127 7%0A0 -94 c0 -76 4 -100 19 -123 42 -63 114 -74 177 -27 82 61 560 489 581 521 28%0A40 29 75 5 115 -25 40 -584 497 -627 512 -83 29 -155 -35 -155 -137 l0 -57%0A-67 -12 c-95 -17 -256 -72 -352 -120 l-80 -41 -3 399 c-3 386 -4 401 -24 427%0A-11 15 -33 37 -48 48 -27 20 -41 21 -446 24 l-419 3 -3 157 c-3 147 -5 159%0A-27 191 -26 36 -91 71 -131 70 -14 0 -416 -97 -895 -214z m923 -2192 c13 -18%0A90 -74 187 -135 l165 -103 0 -697 c0 -384 -2 -698 -4 -698 -2 0 -356 72 -787%0A159 -431 88 -902 184 -1046 213 l-263 53 0 1516 0 1516 333 81 c182 45 568%0A140 857 210 l525 128 5 -1105 5 -1106 23 -32z m912 1399 l0 -428 -46 -44%0Ac-105 -101 -205 -263 -252 -405 -25 -75 -52 -203 -52 -247 0 -49 32 -95 75%0A-107 69 -19 107 6 162 106 26 45 61 97 80 115 l33 32 0 -817 0 -817 -200 0%0A-199 0 -3 518 -3 517 -23 32 c-13 18 -90 74 -187 135 l-165 103 0 868 0 867%0A390 0 390 0 0 -428z m1050 -331 c118 -97 214 -181 213 -185 0 -5 -99 -95 -220%0A-201 l-218 -192 -5 71 c-9 126 -36 146 -197 146 -307 0 -554 -49 -691 -136%0Al-52 -34 26 53 c130 258 406 445 744 503 52 9 103 20 113 26 26 13 57 68 57%0A101 0 15 3 27 8 26 4 0 104 -80 222 -178z'/%3E%3C/g%3E%3C/svg%3E");
|
|
160
|
+
background-size: cover;
|
|
161
|
+
background-repeat: no-repeat;
|
|
162
|
+
background-position: center center;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.vitro-breadcrumbs .breadcrumbs-button::after {
|
|
166
|
+
display: none;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.vitro-breadcrumbs .drop-down-list {
|
|
170
|
+
right: 0;
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
@media (max-width: 414px) {
|
|
175
|
+
.vitro-breadcrumbs {
|
|
176
|
+
margin-left: 20px;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
#TableView {
|
|
2
|
+
border-radius: 8px;
|
|
3
|
+
padding: 6px;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
#TableView, .vitro-table-view {
|
|
7
|
+
height: 100%;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.vitro-table-view {
|
|
11
|
+
width: 100%;
|
|
12
|
+
flex: 1 1;
|
|
13
|
+
background: #fff;
|
|
14
|
+
position: relative;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.vitro-table-view-status .vitro-status {
|
|
18
|
+
border-radius: 50%;
|
|
19
|
+
display: inline-block;
|
|
20
|
+
min-height: 12px;
|
|
21
|
+
min-width: 12px;
|
|
22
|
+
height: 12px;
|
|
23
|
+
width: 12px;
|
|
24
|
+
vertical-align: sub;
|
|
25
|
+
margin-right: 6px;
|
|
26
|
+
border: 1px solid transparent;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.TWEnumHeaderLeft .vitro-table-view-status > span:not(.vitro-status) {
|
|
30
|
+
display: none;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.vitro-table-view .TWClassReadOnly .vitro-readonly-cell {
|
|
34
|
+
color: #BDBDBD;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.vitro-table-view .vitro-editable-cell {
|
|
38
|
+
font-weight: bold;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.vitro-tableview-progress-message {
|
|
42
|
+
border: none !important;
|
|
43
|
+
box-shadow: none !important;
|
|
44
|
+
/* ico-preloader.svg URL-encoder for SVG */
|
|
45
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24px' height='24px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid' style='margin: auto; background-image: none; display: block; shape-rendering: auto; background-position: initial initial; background-repeat: initial initial;' class='ng-star-inserted'%3E%3Cg transform='rotate(0 50 50)'%3E%3Crect x='46' y='6' rx='3.84' ry='3.84' width='8' height='24' fill='%23FF5B2D'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.875s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(45 50 50)'%3E%3Crect x='46' y='6' rx='3.84' ry='3.84' width='8' height='24' fill='%23FF5B2D'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.75s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(90 50 50)'%3E%3Crect x='46' y='6' rx='3.84' ry='3.84' width='8' height='24' fill='%23FF5B2D'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.625s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(135 50 50)'%3E%3Crect x='46' y='6' rx='3.84' ry='3.84' width='8' height='24' fill='%23FF5B2D'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.5s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(180 50 50)'%3E%3Crect x='46' y='6' rx='3.84' ry='3.84' width='8' height='24' fill='%23FF5B2D'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.375s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(225 50 50)'%3E%3Crect x='46' y='6' rx='3.84' ry='3.84' width='8' height='24' fill='%23FF5B2D'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.25s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(270 50 50)'%3E%3Crect x='46' y='6' rx='3.84' ry='3.84' width='8' height='24' fill='%23FF5B2D'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.125s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(315 50 50)'%3E%3Crect x='46' y='6' rx='3.84' ry='3.84' width='8' height='24' fill='%23FF5B2D'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='0s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3C/svg%3E");
|
|
46
|
+
background-position: center 20px;
|
|
47
|
+
background-size: 24px 24px;
|
|
48
|
+
padding-top: 56px !important;
|
|
49
|
+
text-align: center !important;
|
|
50
|
+
font-family: "GraphikRegular" !important;
|
|
51
|
+
font-size: 10pt !important;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.vitro-tableview-progress-message.vitro-table-view-export-message {
|
|
55
|
+
background-color: #fff;
|
|
56
|
+
border: 1px solid #ff5b2d !important;
|
|
57
|
+
}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
.vitro-top-level-menu {
|
|
2
|
+
display: flex;
|
|
3
|
+
justify-content: space-between;
|
|
4
|
+
padding: 0;
|
|
5
|
+
margin: 0;
|
|
6
|
+
margin-right: auto;
|
|
7
|
+
border-left: 1px solid #BDBDBD;
|
|
8
|
+
font-size: 14px;
|
|
9
|
+
font-family: 'GraphikRegular';
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.vitro-top-level-menu li {
|
|
13
|
+
list-style-type: none;
|
|
14
|
+
cursor: pointer;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.vitro-top-level-menu > li {
|
|
18
|
+
margin: 0 17px;
|
|
19
|
+
white-space: nowrap;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.vitro-top-level-menu > li:hover > a {
|
|
23
|
+
color: #0097ff;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.vitro-top-level-menu > li:last-child:hover {
|
|
27
|
+
color: #0097ff;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.vitro-top-level-menu > li:last-child {
|
|
31
|
+
position: relative;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.vitro-top-level-menu ul {
|
|
35
|
+
padding: 0;
|
|
36
|
+
margin-left: 0;
|
|
37
|
+
left: -12px;
|
|
38
|
+
top: 24px;
|
|
39
|
+
position: absolute;
|
|
40
|
+
background: #fff;
|
|
41
|
+
z-index: 5;
|
|
42
|
+
box-shadow: 0 4px 16px rgb(0 0 0 / 10%);
|
|
43
|
+
border-radius: 8px;
|
|
44
|
+
overflow: hidden;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.vitro-top-level-menu ul > li {
|
|
48
|
+
display: flex;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.vitro-top-level-menu ul > li:hover {
|
|
52
|
+
background: #F5F6FA;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.vitro-top-level-menu ul > li:hover a {
|
|
56
|
+
color: #222d44;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.vitro-top-level-menu ul > li > a {
|
|
60
|
+
color: #222d44;
|
|
61
|
+
padding: 12px 12px;
|
|
62
|
+
width: 100%;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.vitro-top-level-menu a {
|
|
66
|
+
color: #222d44;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.vitro-top-level-menu a:hover {
|
|
70
|
+
text-decoration: none;
|
|
71
|
+
color: inherit;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.vitro-top-level-menu .vitro-active a {
|
|
75
|
+
color: #0097ff;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.vitro-top-level-menu #all-services::after {
|
|
79
|
+
content: '';
|
|
80
|
+
width: 20px;
|
|
81
|
+
height: 20px;
|
|
82
|
+
display: inline-block;
|
|
83
|
+
vertical-align: middle;
|
|
84
|
+
margin-left: 24px;
|
|
85
|
+
background-position: center center !important;
|
|
86
|
+
background-repeat: no-repeat;
|
|
87
|
+
/* menu.svg URL-encoder for SVG */
|
|
88
|
+
background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 16 16' style='enable-background:new 0 0 16 16;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23BDBDBD;%7D%0A%3C/style%3E%3Cg%3E%3Ccircle class='st0' cx='1.8' cy='1.8' r='1.8'/%3E%3Ccircle class='st0' cx='8.2' cy='7.8' r='1.8'/%3E%3Ccircle class='st0' cx='1.8' cy='7.8' r='1.8'/%3E%3Ccircle class='st0' cx='1.8' cy='14.2' r='1.8'/%3E%3Ccircle class='st0' cx='8.2' cy='14.2' r='1.8'/%3E%3Ccircle class='st0' cx='8.2' cy='1.8' r='1.8'/%3E%3Ccircle class='st0' cx='14.2' cy='1.8' r='1.8'/%3E%3Ccircle class='st0' cx='14.2' cy='7.8' r='1.8'/%3E%3Ccircle class='st0' cx='14.2' cy='14.2' r='1.8'/%3E%3C/g%3E%3C/svg%3E%0A");
|
|
89
|
+
}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
.vakata-context, .vakata-context ul {
|
|
2
|
+
background: white;
|
|
3
|
+
border: none;
|
|
4
|
+
box-shadow: 0 4px 16px rgb(0 0 0 / 10%);
|
|
5
|
+
border-radius: 8px;
|
|
6
|
+
z-index: 30;
|
|
7
|
+
padding: 0;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.vakata-context > li {
|
|
11
|
+
box-shadow: none;
|
|
12
|
+
position: relative;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.vakata-context > li:hover {
|
|
16
|
+
box-shadow: none;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.vakata-context li > a {
|
|
20
|
+
line-height: 40px;
|
|
21
|
+
padding: 0 20px;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.vakata-context li > a.vakata-context-parent {
|
|
25
|
+
background-image: none;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.vakata-context li > a.vakata-context-parent::after {
|
|
29
|
+
content: '';
|
|
30
|
+
position: absolute;
|
|
31
|
+
right: 12px;
|
|
32
|
+
top: 15px;
|
|
33
|
+
width: 10px;
|
|
34
|
+
height: 10px;
|
|
35
|
+
display: inline-block;
|
|
36
|
+
background-position: center center !important;
|
|
37
|
+
background-size: 8px;
|
|
38
|
+
background-repeat: no-repeat;
|
|
39
|
+
/* closed.svg URL-encoder for SVG */
|
|
40
|
+
background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 16 16' style='enable-background:new 0 0 16 16;' xml:space='preserve'%3E%3Cpath d='M5.3,0.3l6.9,6.9c0.2,0.2,0.3,0.5,0.3,0.8v0c0,0.3-0.1,0.6-0.3,0.8l-6.9,6.9c-0.4,0.4-1.1,0.4-1.6,0h0 c-0.4-0.4-0.4-1.1,0-1.6l6-6.1c0,0,0,0,0,0l-6-6c-0.4-0.4-0.4-1.2,0-1.6l0,0C4.2-0.1,4.9-0.1,5.3,0.3z'/%3E%3C/svg%3E%0A") !important;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.vakata-context li > a:hover {
|
|
44
|
+
border: none;
|
|
45
|
+
background: #F5F6FA;
|
|
46
|
+
box-shadow: none;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.vakata-context .vakata-context-hover > a {
|
|
50
|
+
border: none;
|
|
51
|
+
background: #F5F6FA;
|
|
52
|
+
box-shadow: none;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.vakata-context > li:first-child > a {
|
|
56
|
+
border-radius: 8px 8px 0 0;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.vakata-context > li:last-child > a {
|
|
60
|
+
border-radius: 0 0 8px 8px;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.vakata-context ul > li:first-child > a {
|
|
64
|
+
border-radius: 8px 8px 0 0;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.vakata-context ul > li:last-child > a {
|
|
68
|
+
border-radius: 0 0 8px 8px;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.vakata-context li > a .vakata-contextmenu-sep {
|
|
72
|
+
display: none;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.vakata-context li > a i {
|
|
76
|
+
display: none;
|
|
77
|
+
}
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
:global(#TreeView) {
|
|
2
|
+
padding: 20px 24px;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.vitro-tree-view :global(.jstree-anchor) {
|
|
6
|
+
line-height: 28px;
|
|
7
|
+
height: 28px;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.vitro-tree-view :global(.jstree-wholerow) {
|
|
11
|
+
height: 28px;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.vitro-tree-view :global(.jstree-wholerow-hovered) {
|
|
15
|
+
background: #F4F4F4;
|
|
16
|
+
box-shadow: none;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.vitro-tree-view :global(.jstree-wholerow-clicked) {
|
|
20
|
+
background: #E0E0E0;
|
|
21
|
+
box-shadow: none;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.vitro-tree-view :global(.jstree-wholerow-clicked.jstree-wholerow-hovered) {
|
|
25
|
+
background: #E0E0E0;
|
|
26
|
+
box-shadow: none;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.vitro-tree-view :global(.jstree-themeicon) {
|
|
30
|
+
margin-right: 10px;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.vitro-tree-view :global(.jstree-themeicon.folder) {
|
|
34
|
+
/* folder.svg URL-encoder for SVG */
|
|
35
|
+
background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 11 16'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:url(%23linear-gradient);%7D.cls-2%7Bfill:url(%23linear-gradient-2);%7D.cls-3%7Bfill:%23fddd76;%7D.cls-4%7Bfill:%23ffeeb6;%7D%3C/style%3E%3ClinearGradient id='linear-gradient' x1='3' y1='6.71' x2='14' y2='6.71' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0.22' stop-color='%23e8c462'/%3E%3Cstop offset='1' stop-color='%23fee388'/%3E%3C/linearGradient%3E%3ClinearGradient id='linear-gradient-2' x1='4.87' y1='16' x2='4.87' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23ffe086'/%3E%3Cstop offset='0.82' stop-color='%23ffeaa5'/%3E%3C/linearGradient%3E%3C/defs%3E%3Ctitle%3Efolder%3C/title%3E%3Cpath class='cls-1' d='M14,9.15l0-.05a7.61,7.61,0,0,1-.72-.76l-.15-.19V.27A.27.27,0,0,0,12.81,0H3V13.42H13.71a.29.29,0,0,0,.29-.28V9.21A.16.16,0,0,0,14,9.15Z' transform='translate(-3)'/%3E%3Cpath class='cls-2' d='M6.45,11.7a.1.1,0,0,0,0,.05v4.17a.08.08,0,0,1-.12.06L3,13.42H3V0L6.65,2.8A.24.24,0,0,1,6.74,3v8.19a.1.1,0,0,1,0,.05Z' transform='translate(-3)'/%3E%3Crect class='cls-3' x='0.23' y='0.66' width='0.08' height='12.46'/%3E%3Crect class='cls-3' x='0.46' y='0.88' width='0.08' height='12.46'/%3E%3Crect class='cls-4' x='0.31' y='0.74' width='0.08' height='12.46'/%3E%3Crect class='cls-4' x='0.53' y='0.96' width='0.08' height='12.46'/%3E%3C/svg%3E");
|
|
36
|
+
background-size: 12px !important;
|
|
37
|
+
background-position: center 6px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.vitro-tree-view :global(.jstree-themeicon.file) {
|
|
41
|
+
/* file.svg URL-encoder for SVG */
|
|
42
|
+
background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 16 16' style='enable-background:new 0 0 16 16;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:url(%23SVGID_1_);%7D .st1%7Bfill:url(%23SVGID_2_);%7D%0A%3C/style%3E%3ClinearGradient id='SVGID_1_' gradientUnits='userSpaceOnUse' x1='7.9844' y1='0.5' x2='7.9844' y2='15.5'%3E%3Cstop offset='0.3911' style='stop-color:%23FFFFFF'/%3E%3Cstop offset='0.6764' style='stop-color:%23FCFCFC'/%3E%3Cstop offset='0.8777' style='stop-color:%23F3F4F3'/%3E%3Cstop offset='0.9059' style='stop-color:%23F1F2F1'/%3E%3Cstop offset='0.9876' style='stop-color:%23FFFFFF'/%3E%3C/linearGradient%3E%3Cpath class='st0' d='M13.5,15.5h-11v-15h6l5,4.5V15.5z'/%3E%3ClinearGradient id='SVGID_2_' gradientUnits='userSpaceOnUse' x1='8' y1='0' x2='8' y2='16'%3E%3Cstop offset='0' style='stop-color:%23BEBEBE'/%3E%3Cstop offset='0.4778' style='stop-color:%23BCBCBC'/%3E%3Cstop offset='0.6499' style='stop-color:%23B5B6B6'/%3E%3Cstop offset='0.7726' style='stop-color:%23AAAAAB'/%3E%3Cstop offset='0.8717' style='stop-color:%23999A9C'/%3E%3Cstop offset='0.9557' style='stop-color:%23838589'/%3E%3Cstop offset='1' style='stop-color:%2374767B'/%3E%3C/linearGradient%3E%3Cpath class='st1' d='M8.7,0H2v16h12V6V5V4.8L8.7,0z M13,15H3V1h5v4v1h1h4V15z M9,5V1.6L12.8,5H9z'/%3E%3C/svg%3E%0A");
|
|
43
|
+
background-size: 14px !important;
|
|
44
|
+
background-position: center center;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.vitro-tree-view :global(.jstree-icon) {
|
|
48
|
+
height: 28px !important;
|
|
49
|
+
line-height: 28px !important;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.vitro-tree-view :global(.jstree-open > .jstree-icon.jstree-ocl) {
|
|
53
|
+
/* opened.svg URL-encoder for SVG */
|
|
54
|
+
background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 16 16' style='enable-background:new 0 0 16 16;' xml:space='preserve'%3E%3Cpath d='M15.7,5.3l-6.9,6.9c-0.2,0.2-0.5,0.3-0.8,0.3h0c-0.3,0-0.6-0.1-0.8-0.3L0.3,5.4c-0.4-0.4-0.4-1.1,0-1.6l0,0 c0.4-0.4,1.1-0.4,1.6,0l6.1,6c0,0,0,0,0,0l6-6c0.4-0.4,1.2-0.4,1.6,0l0,0C16.1,4.2,16.1,4.9,15.7,5.3z'/%3E%3C/svg%3E%0A");
|
|
55
|
+
background-repeat: no-repeat;
|
|
56
|
+
background-position: center center !important;
|
|
57
|
+
background-size: 8px;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.vitro-tree-view :global(.jstree-closed > .jstree-icon.jstree-ocl) {
|
|
61
|
+
/* closed.svg URL-encoder for SVG */
|
|
62
|
+
background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 16 16' style='enable-background:new 0 0 16 16;' xml:space='preserve'%3E%3Cpath d='M5.3,0.3l6.9,6.9c0.2,0.2,0.3,0.5,0.3,0.8v0c0,0.3-0.1,0.6-0.3,0.8l-6.9,6.9c-0.4,0.4-1.1,0.4-1.6,0h0 c-0.4-0.4-0.4-1.1,0-1.6l6-6.1c0,0,0,0,0,0l-6-6c-0.4-0.4-0.4-1.2,0-1.6l0,0C4.2-0.1,4.9-0.1,5.3,0.3z'/%3E%3C/svg%3E%0A");
|
|
63
|
+
background-repeat: no-repeat;
|
|
64
|
+
background-position: center center !important;
|
|
65
|
+
background-size: 8px;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
:global(#jstree-dnd .jstree-er) {
|
|
69
|
+
background-image: none !important;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
:global(#jstree-dnd .jstree-er:before) {
|
|
73
|
+
content: '';
|
|
74
|
+
width: inherit;
|
|
75
|
+
height: inherit;
|
|
76
|
+
display: block;
|
|
77
|
+
background-position: center center !important;
|
|
78
|
+
background-size: 14px;
|
|
79
|
+
background-repeat: no-repeat;
|
|
80
|
+
/* dnd-nok.svg URL-encoder for SVG */
|
|
81
|
+
background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 16 16' style='enable-background:new 0 0 16 16;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:url(%23SVGID_1_);%7D%0A%3C/style%3E%3ClinearGradient id='SVGID_1_' gradientUnits='userSpaceOnUse' x1='1.8438' y1='14.25' x2='14.25' y2='1.8438'%3E%3Cstop offset='0' style='stop-color:%23B61414'/%3E%3Cstop offset='0.1223' style='stop-color:%23BC1212'/%3E%3Cstop offset='0.28' style='stop-color:%23CC0D0D'/%3E%3Cstop offset='0.4566' style='stop-color:%23E60404'/%3E%3Cstop offset='0.5173' style='stop-color:%23F10000'/%3E%3Cstop offset='0.5293' style='stop-color:%23F31414'/%3E%3Cstop offset='0.5525' style='stop-color:%23F73434'/%3E%3Cstop offset='0.5777' style='stop-color:%23FA4E4E'/%3E%3Cstop offset='0.6053' style='stop-color:%23FC6363'/%3E%3Cstop offset='0.6363' style='stop-color:%23FE7171'/%3E%3Cstop offset='0.6738' style='stop-color:%23FF7979'/%3E%3Cstop offset='0.7351' style='stop-color:%23FF7C7C'/%3E%3Cstop offset='0.7409' style='stop-color:%23FF7F7F'/%3E%3Cstop offset='0.7848' style='stop-color:%23FC9393'/%3E%3Cstop offset='0.8348' style='stop-color:%23FAA1A1'/%3E%3Cstop offset='0.896' style='stop-color:%23F8AAAA'/%3E%3Cstop offset='1' style='stop-color:%23F8ACAC'/%3E%3C/linearGradient%3E%3Cpolygon class='st0' points='16,12.5 11.5,8 16,3.6 12.4,0 8,4.5 3.6,0.1 0.1,3.6 4.5,8 0,12.4 3.6,16 8,11.5 12.5,16 '/%3E%3C/svg%3E%0A") !important;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
:global(#jstree-dnd .jstree-ok) {
|
|
85
|
+
background-image: none !important;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
:global(#jstree-dnd .jstree-ok:before) {
|
|
89
|
+
content: '';
|
|
90
|
+
width: inherit;
|
|
91
|
+
height: inherit;
|
|
92
|
+
display: block;
|
|
93
|
+
background-position: center center !important;
|
|
94
|
+
background-size: 16px;
|
|
95
|
+
background-repeat: no-repeat;
|
|
96
|
+
/* dnd-ok.svg URL-encoder for SVG */
|
|
97
|
+
background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 16 16' style='enable-background:new 0 0 16 16;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:url(%23SVGID_1_);%7D%0A%3C/style%3E%3ClinearGradient id='SVGID_1_' gradientUnits='userSpaceOnUse' x1='7.95' y1='14.1166' x2='7.95' y2='1.6057' gradientTransform='matrix(1 0 0 -1 0 16)'%3E%3Cstop offset='0' style='stop-color:%23D6F8BA'/%3E%3Cstop offset='0.1436' style='stop-color:%23ACF078'/%3E%3Cstop offset='0.2094' style='stop-color:%23A3EB6F'/%3E%3Cstop offset='0.318' style='stop-color:%238ADC57'/%3E%3Cstop offset='0.4556' style='stop-color:%2361C430'/%3E%3Cstop offset='0.6015' style='stop-color:%232FA600'/%3E%3Cstop offset='0.8433' style='stop-color:%2334971F'/%3E%3Cstop offset='1' style='stop-color:%2336902E'/%3E%3C/linearGradient%3E%3Cpolygon class='st0' points='15.9,5.4 12.4,1.9 6.9,7.3 3.5,3.9 0,7.5 7,14.4 '/%3E%3C/svg%3E%0A") !important;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
:global(.jstree-rename-input) {
|
|
101
|
+
height: 28px !important;
|
|
102
|
+
line-height: 28px !important;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
@media (max-width: 800px) {
|
|
106
|
+
.vitro-tree-view {
|
|
107
|
+
display: none !important;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
.vitro-uploader {
|
|
2
|
+
width: 100%;
|
|
3
|
+
padding-left: 7px;
|
|
4
|
+
padding-right: 29px;
|
|
5
|
+
position: absolute;
|
|
6
|
+
bottom: 41px;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.button-close, .show, .hide {
|
|
10
|
+
background-position: center center;
|
|
11
|
+
background-size: 100%;
|
|
12
|
+
background-color: transparent;
|
|
13
|
+
position: absolute;
|
|
14
|
+
cursor: pointer;
|
|
15
|
+
z-index: 100;
|
|
16
|
+
background-repeat: no-repeat;
|
|
17
|
+
border: none;
|
|
18
|
+
outline: none;
|
|
19
|
+
width: 12px;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.vitro-uploader .button-close {
|
|
23
|
+
/* upload-close.svg URL-encoder for SVG */
|
|
24
|
+
background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' width='25.4mm' height='25.4mm' version='1.1' style='shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd'%0AviewBox='0 0 2540 2540' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cstyle type='text/css'%3E%3C!%5BCDATA%5B .fil0 %7Bfill:%23AFAFAF%7D %5D%5D%3E%3C/style%3E%3C/defs%3E%3Cg id='Слой_x0020_1'%3E%3Cmetadata id='CorelCorpID_0Corel-Layer'/%3E%3Cpath class='fil0' d='M1037.01 1269.02l-65.07 68.01c-22.73,22.73 -42.77,44.73 -65.56,67.52l-567.53 567.56c-11.37,11.36 -21.3,23.27 -33.76,32.78l-267.64 266.63c-86,85.02 -11.35,267.65 97.38,267.65l3.45 0c71.7,-0.04 99.32,-1.73 148.73,-47.43 6.14,-5.67 11.3,-10.82 16.12,-17.15 14.62,-19.16 193.57,-194.72 232.41,-233.37l73.46 -75.27c7.86,-9.41 18.64,-15.38 26.04,-24.85 18.68,-23.94 75.68,-77.05 99.13,-100.5l441.21 -439.45c3.48,-2.91 5.69,-5.49 8.9,-8.72l67.54 -65.54c6.49,-6 10.99,-12.4 18.08,-17.15 12.04,3.22 24.89,23.47 35.23,31.31l142.2 139.61c8.13,8.69 15.41,18.01 25.27,25.62 11.21,8.65 19.36,21.18 33.52,33.02 12.65,10.58 21.23,23.22 33.27,33.27 11.13,9.3 21.43,22.21 33.38,33.16 11.44,10.49 21.52,23.8 33.14,33.4 12.39,10.24 20.34,23.84 33.02,33.52 12.96,9.89 20.35,23.56 32.73,33.81 14.82,12.28 20.73,21.99 33.15,33.38 22.47,20.6 17.94,18.27 33.26,33.29 6.47,6.34 11.56,8.62 17.65,15.62 3.39,3.89 3.47,4.92 6.87,8.78 7.96,9.05 18.45,15.73 26.43,24.46l16.61 18.61c89.27,89.13 176.96,176.97 266.15,266.17l99.17 100.45c9.77,12.67 23.16,21.61 33.02,33.52 15.05,18.17 47.9,49.41 67.31,65.77 35.06,29.55 70.72,32.44 113.54,32.66l22.1 0c35.12,0 72.82,-29 95.43,-53.3 23.17,-24.91 37.89,-71.68 37.65,-115.86 -0.13,-23.15 -4.37,-45.58 -13.65,-63.79 -21.02,-41.27 -61.35,-73.96 -93.5,-106.11l-83.17 -83.18c-2.9,-2.93 -4.76,-5.1 -7.92,-7.74l-373.7 -371.94c-5.98,-5.97 -10.53,-10.81 -16.62,-16.64l-34.3 -32.24c-6.61,-6.57 -9.44,-11.63 -15.54,-17.73 -6.12,-6.12 -11.12,-8.93 -17.7,-15.57 -8.32,-8.41 -15.01,-17.85 -24.11,-24.82 -4.17,-3.19 -5.62,-4.88 -9.16,-8.45l-49.54 -50.27c-6.64,-8.7 -9.72,-8.92 -17.02,-16.25l-33.22 -33.32c-11.56,-10.17 -20.54,-24.45 -32.81,-33.74l-12.61 -12.82c-31.05,-37.27 -105.49,-104.45 -144.46,-145.18 -13.15,-13.74 -51.12,-51.54 -56.23,-61.2 14.78,-7.82 55.89,-48.24 69.07,-64.01l735.75 -737.91c37.19,-37.19 105.95,-111.81 142.66,-141.1 3.63,-2.9 5.64,-5.21 9.01,-8.61 5.99,-6.04 10.61,-10.62 16.63,-16.64l23.49 -25.44c33.92,-36.46 38.65,-79.29 38.65,-129.66 0,-71.77 -84.81,-144.82 -154.61,-144.82 -44.7,0 -77.96,8.95 -111.55,35.22 -13.43,10.52 -22.62,19.49 -34.77,31.77l-364.95 366.98c-6.66,6.59 -9.45,11.57 -15.58,17.7 -6.1,6.11 -11.16,8.93 -17.72,15.55l-433.42 435.51c-6.49,6.54 -11.62,8.92 -17.67,15.59 -20.91,23.07 -112.26,108.6 -117.88,116.98 -22.75,-15.24 -39.71,-40.14 -59.84,-55.63 -26.85,-20.66 -144.25,-149.21 -183.9,-182.06 -9.62,-7.97 -15.62,-17.54 -24.83,-26.05 -6.6,-6.1 -11.29,-8.42 -17.63,-15.65 -14.89,-17.02 -20.44,-19.75 -33.32,-33.22l-24.33 -24.59c-9.46,-7.91 -15.76,-17.84 -24.5,-26.39 -6.3,-6.16 -11.13,-8.94 -17.7,-15.56 -6.4,-6.44 -9.09,-11.19 -15.59,-17.69 -6.51,-6.51 -11.6,-9.17 -17.71,-15.55l-464.72 -468.79c-6.03,-6.02 -10.62,-10.61 -16.64,-16.64l-66.57 -66.51c-12.13,-12.07 -19.46,-21.5 -33.85,-32.68 -15.37,-11.95 -21.74,-17.07 -40.62,-25.92 -38.58,-18.09 -95.51,-15.37 -133.14,2.6 -25.84,12.34 -45.48,29.26 -63.3,50.21 -20.52,24.13 -32.16,47.65 -32.51,83.84 -0.47,49.66 7.36,90.81 32.41,118.6l364.06 367.88c18.96,17.14 32.33,33.12 38.12,38.21 22.31,19.61 61.36,63.54 76.84,75.81l337.01 338.17c4.17,4.11 7.15,5.47 10.63,8.94l18.75 20.39c7.03,7.12 13.22,10.3 19.58,17.61l19.38 19.76c27.5,21.93 51.5,53.21 77.55,77.05 12.1,11.07 28.49,29.85 41.53,36.75z'/%3E%3C/g%3E%3C/svg%3E%0A");
|
|
25
|
+
right: 39px;
|
|
26
|
+
height: 12px;
|
|
27
|
+
top: 77px;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.show {
|
|
31
|
+
/* show.svg URL-encoder for SVG */
|
|
32
|
+
background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' width='25.4mm' height='14.478mm' version='1.1' style='shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd'%0AviewBox='0 0 2540 1447.8' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cstyle type='text/css'%3E%3C!%5BCDATA%5B .fil0 %7Bfill:%23AFAFAF%7D %5D%5D%3E%3C/style%3E%3C/defs%3E%3Cg id='Слой_x0020_1'%3E%3Cmetadata id='CorelCorpID_0Corel-Layer'/%3E%3Cpath class='fil0' d='M1261.53 -0.86c33.91,0 62.68,3.49 88.88,19.14 56.44,33.71 95.27,79.94 141.69,126.34 312.77,312.11 625.73,623.79 937.27,936.88 81.09,81.05 162.84,190.94 68.07,299.02 -16.07,18.33 -32.79,33.87 -54.53,45.48 -114.25,60.97 -198.43,-16.95 -275.73,-94.42 -34.6,-38.13 -77.31,-77.5 -113.92,-114.1 -249.83,-250.22 -498.09,-501.99 -750.21,-749.91 -6.61,-6.66 -29.64,-28.92 -35.52,-30.49 -13.63,9.13 -110.64,105.71 -122.88,119.14 -260.49,252.75 -516.22,516.09 -772.64,773.49 -88.82,90.76 -188.26,172.16 -308.54,74.97 -79.28,-64.05 -81.22,-173.77 -22.87,-252.27 27.05,-36.38 78.63,-82.44 111.11,-114.9 297.9,-298.52 587.54,-606.4 895.26,-894.89 33.17,-33.34 65.6,-68.17 102.07,-97.95 4.4,-3.59 7.89,-6.38 12.18,-9.82 30.09,-24.05 55.74,-35.71 100.31,-35.71z'/%3E%3C/g%3E%3C/svg%3E%0A");
|
|
33
|
+
right: 67px;
|
|
34
|
+
height: 10px;
|
|
35
|
+
top: 79px;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.hide {
|
|
39
|
+
/* hide.svg URL-encoder for SVG */
|
|
40
|
+
background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' width='25.4mm' height='14.478mm' version='1.1' style='shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd'%0AviewBox='0 0 2540 1447.8' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cstyle type='text/css'%3E%3C!%5BCDATA%5B .fil0 %7Bfill:%23AFAFAF%7D %5D%5D%3E%3C/style%3E%3C/defs%3E%3Cg id='Слой_x0020_1'%3E%3Cmetadata id='CorelCorpID_0Corel-Layer'/%3E%3Cpath class='fil0' d='M1261.53 1448.66c33.91,0 62.68,-3.49 88.88,-19.14 56.44,-33.71 95.27,-79.94 141.69,-126.34 312.77,-312.11 625.73,-623.79 937.27,-936.88 81.09,-81.05 162.84,-190.94 68.07,-299.02 -16.07,-18.33 -32.79,-33.87 -54.53,-45.48 -114.25,-60.97 -198.43,16.95 -275.73,94.42 -34.6,38.13 -77.31,77.5 -113.92,114.1 -249.83,250.22 -498.09,501.99 -750.21,749.91 -6.61,6.66 -29.64,28.92 -35.52,30.49 -13.63,-9.13 -110.64,-105.71 -122.88,-119.14 -260.49,-252.75 -516.22,-516.09 -772.64,-773.49 -88.82,-90.76 -188.26,-172.16 -308.54,-74.97 -79.28,64.05 -81.22,173.77 -22.87,252.27 27.05,36.38 78.63,82.44 111.11,114.9 297.9,298.52 587.54,606.4 895.26,894.89 33.17,33.34 65.6,68.17 102.07,97.95 4.4,3.59 7.89,6.38 12.18,9.82 30.09,24.05 55.74,35.71 100.31,35.71z'/%3E%3C/g%3E%3C/svg%3E%0A");
|
|
41
|
+
right: 67px;
|
|
42
|
+
height: 10px;
|
|
43
|
+
top: 79px;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.vitro-uploader :global(.k-upload .k-dropzone .k-upload-status) {
|
|
47
|
+
margin-right: 60px !important;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.hidden :global(.k-upload-files) {
|
|
51
|
+
display: none;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.vitro-uploader :global(.k-dropzone) {
|
|
55
|
+
height: 100px;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.vitro-uploader :global(.k-upload .k-dropzone .k-dropzone-hint),
|
|
59
|
+
.vitro-uploader :global(.k-upload .k-dropzone .k-upload-status) {
|
|
60
|
+
margin-right: 0;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.vitro-uploader :global(.k-upload .k-dropzone .k-dropzone-hint) {
|
|
64
|
+
flex: unset;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.vitro-uploader :global(.k-upload .k-dropzone) {
|
|
68
|
+
position: relative;
|
|
69
|
+
align-items: flex-end;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
:global(#TableViewContainer .splitter:last-child > .pane.primary):has(.vitro-uploader) {
|
|
73
|
+
position: relative;
|
|
74
|
+
}
|
|
Binary file
|
|
Binary file
|