@vitrosoftware/common-ui-ts 1.1.115 → 1.1.116
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/button/button.css +2 -1
- package/css/std/controls/button-cancel/button-cancel.css +2 -1
- package/css/std/controls/command-menu/command-menu-button.css +4 -1
- package/css/std/controls/command-menu/command-menu-dropdown-button.css +23 -12
- package/css/std/controls/date-picker/date-picker.css +10 -2
- package/css/std/controls/pdf-viewer/pdf-viewer-index.css +1 -0
- package/css/std/controls/pdf-viewer/pdf-viewer.css +1 -0
- package/css/std/controls/tab-group/tab-group.css +18 -0
- package/css/std/controls/table-view/table-view.css +13 -0
- package/css/std/controls/table-view/treegrid-cell.css +70 -0
- package/css/std/controls/table-view/treegrid-cfg-menu.css +208 -0
- package/css/std/controls/table-view/treegrid-context-menu.css +164 -0
- package/css/std/controls/table-view/treegrid-filter.css +265 -0
- package/css/std/controls/table-view/treegrid-gantt.css +66 -0
- package/css/std/controls/table-view/treegrid-group.css +59 -0
- package/css/std/controls/table-view/treegrid-header.css +30 -0
- package/css/std/controls/table-view/treegrid-message.css +41 -0
- package/css/std/controls/table-view/treegrid-progress.css +47 -0
- package/css/std/controls/table-view/treegrid-scroll.css +55 -0
- package/css/std/controls/table-view/treegrid-sort.css +25 -0
- package/css/std/controls/table-view/treegrid-tab.css +45 -0
- package/css/std/controls/table-view/treegrid-tip.css +23 -0
- package/css/std/controls/table-view/treegrid.css +0 -989
- package/css/std/controls/uploader/img/error.svg +6 -0
- package/css/std/controls/uploader/img/warning.svg +10 -0
- package/css/std/controls/uploader/uploader.css +75 -35
- package/dist/index.css +146 -53
- package/dist/index.js +127 -46
- package/dist/index.js.map +1 -1
- package/dist/src/constants/KeyCode.d.ts +1 -0
- package/dist/src/controls/ActionHandler/ConfirmDialog.d.ts +2 -1
- package/dist/src/controls/ButtonGroup/ButtonGroup.d.ts +1 -1
- package/dist/src/controls/CommandMenu/CommandMenuItemHeader.d.ts +1 -0
- package/dist/src/controls/Dialog/Dialog.d.ts +2 -1
- package/dist/src/controls/Dialog/DialogFooter.d.ts +2 -1
- package/dist/src/controls/TableView/TableViewConstants.d.ts +3 -0
- package/dist/src/controls/TableView/TableViewContext.d.ts +4 -0
- package/dist/src/controls/TableView/TreeGridTableViewContextImpl.d.ts +4 -0
- package/dist/src/controls/TelerikUploader/TelerikUploaderConstants.d.ts +1 -0
- package/package.json +1 -1
- package/src/controls/BimViewer/js/bim-viewer.js +2 -2
- package/src/controls/PdfViewer/js/pdf-viewer.js +2 -2
|
@@ -0,0 +1,265 @@
|
|
|
1
|
+
.TWFilterMenuMain {
|
|
2
|
+
width: 241px !important;
|
|
3
|
+
border: none;
|
|
4
|
+
border-radius: 4px;
|
|
5
|
+
box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.15), 0px 0px 4px 0px rgba(0, 0, 0, 0.12);
|
|
6
|
+
margin-top: 8px !important;
|
|
7
|
+
margin-left: -16px;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.TWFilterMenuMain::before {
|
|
11
|
+
content: '';
|
|
12
|
+
display: block;
|
|
13
|
+
height: 21px;
|
|
14
|
+
width: 32px;
|
|
15
|
+
overflow: hidden;
|
|
16
|
+
background-position: center 0;
|
|
17
|
+
background-size: 44px 42px;
|
|
18
|
+
background-repeat: no-repeat;
|
|
19
|
+
position: absolute;
|
|
20
|
+
top: -21px;
|
|
21
|
+
left: 16px;
|
|
22
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/dropdown-menu-arrow.svg');
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.TWFilterMenuMain .TWMenuOuter {
|
|
26
|
+
padding: 0;
|
|
27
|
+
margin: 0;
|
|
28
|
+
border-radius: 4px !important;
|
|
29
|
+
border: none !important;
|
|
30
|
+
width: 241px !important;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.TWFilterMenuMain .TWMenuHover {
|
|
34
|
+
background: #F3F8FF !important;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.TWFilterMenuMain .TWMenuItem {
|
|
38
|
+
margin: 0 !important;
|
|
39
|
+
padding: 8px 0 !important;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.TWFilterMenuMain .TWMenuItemText {
|
|
43
|
+
line-height: 150%;
|
|
44
|
+
padding-left: 12px;
|
|
45
|
+
white-space: normal;
|
|
46
|
+
margin-left: 32px;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.TWFilterMenuMain .TWMenuItemIcon {
|
|
50
|
+
height: 20px;
|
|
51
|
+
width: 32px;
|
|
52
|
+
background-size: 20px;
|
|
53
|
+
background-position-x: 12px;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.TWCellFilter, .TWCellFilterPanel, .TWGanttFilter {
|
|
57
|
+
background-color: #F7F9FC;
|
|
58
|
+
border-top: 1px solid #E4E6EC !important;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.TWFilter0Left, .TWFilter0Right, .TWFilter0Menu {
|
|
62
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/cancel-grey.svg');
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.TWFilter12Left, .TWFilter12Right, .TWFilter12Menu {
|
|
66
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/filter/filter-not-contains.svg');
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.TWFilter11Left, .TWFilter11Right, .TWFilter11Menu {
|
|
70
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/filter/filter-contains.svg');
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.TWFilter10Left, .TWFilter10Right, .TWFilter10Menu {
|
|
74
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/filter/filter-not-edns-in.svg');
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.TWFilter9Left, .TWFilter9Right, .TWFilter9Menu {
|
|
78
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/filter/filter-ends-in.svg');
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.TWFilter8Left, .TWFilter8Right, .TWFilter8Menu {
|
|
82
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/filter/filter-not-start-with.svg');
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.TWFilter7Left, .TWFilter7Right, .TWFilter7Menu {
|
|
86
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/filter/filter-start-with.svg');
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.TWFilter6Left, .TWFilter6Right, .TWFilter6Menu {
|
|
90
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/filter/filter-math-equal-more.svg');
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.TWFilter5Left, .TWFilter5Right, .TWFilter5Menu {
|
|
94
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/filter/filter-math-more.svg');
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.TWFilter4Left, .TWFilter4Right, .TWFilter4Menu {
|
|
98
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/filter/filter-math-equal-lower.svg');
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.TWFilter3Left, .TWFilter3Right, .TWFilter3Menu {
|
|
102
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/filter/filter-math-lower.svg');
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.TWFilter2Left, .TWFilter2Right, .TWFilter2Menu {
|
|
106
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/filter/filter-not-equal.svg');
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.TWFilter1Left, .TWFilter1Right, .TWFilter1Menu {
|
|
110
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/filter/filter-equal.svg');
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.TWMenuItem .TWFilter0Menu,
|
|
114
|
+
.TWMenuItem .TWFilter1Menu,
|
|
115
|
+
.TWMenuItem .TWFilter2Menu,
|
|
116
|
+
.TWMenuItem .TWFilter3Menu,
|
|
117
|
+
.TWMenuItem .TWFilter4Menu,
|
|
118
|
+
.TWMenuItem .TWFilter5Menu,
|
|
119
|
+
.TWMenuItem .TWFilter6Menu,
|
|
120
|
+
.TWMenuItem .TWFilter7Menu,
|
|
121
|
+
.TWMenuItem .TWFilter8Menu,
|
|
122
|
+
.TWMenuItem .TWFilter9Menu,
|
|
123
|
+
.TWMenuItem .TWFilter10Menu,
|
|
124
|
+
.TWMenuItem .TWFilter11Menu,
|
|
125
|
+
.TWMenuItem .TWFilter12Menu {
|
|
126
|
+
width: 20px;
|
|
127
|
+
height: 20px;
|
|
128
|
+
background-repeat: no-repeat;
|
|
129
|
+
background-position: center;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.TWCellFilter.TWClassHoveredCell {
|
|
133
|
+
background-color: #DCEEFF;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.TWFilterMenuHeader {
|
|
137
|
+
padding: 0 !important;
|
|
138
|
+
margin: 0 0 0 8px !important;
|
|
139
|
+
box-shadow: none;
|
|
140
|
+
background: transparent;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.TWFilterAllMenu {
|
|
144
|
+
background-position: center !important;
|
|
145
|
+
width: 16px !important;
|
|
146
|
+
height: 16px !important;
|
|
147
|
+
background-color: #fff;
|
|
148
|
+
border-radius: 2px;
|
|
149
|
+
margin-top: 1px;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.TWCellFilter {
|
|
153
|
+
padding: 0 0 0 32px !important;
|
|
154
|
+
background-position: 8px center !important;
|
|
155
|
+
font-size: 12px;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.TWEditFilterInput {
|
|
159
|
+
background-color: #DCEEFF;
|
|
160
|
+
font-size: 12px;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.TWCellFilter.TWHiddenValue.TWFilter0Value,
|
|
164
|
+
.TWCellFilter.TWFilter1Value,
|
|
165
|
+
.TWCellFilter.TWFilter2Value,
|
|
166
|
+
.TWCellFilter.TWFilter3Value,
|
|
167
|
+
.TWCellFilter.TWFilter4Value,
|
|
168
|
+
.TWCellFilter.TWFilter5Value,
|
|
169
|
+
.TWCellFilter.TWFilter6Value,
|
|
170
|
+
.TWCellFilter.TWFilter7Value,
|
|
171
|
+
.TWCellFilter.TWFilter8Value,
|
|
172
|
+
.TWCellFilter.TWFilter9Value,
|
|
173
|
+
.TWCellFilter.TWFilter10Value,
|
|
174
|
+
.TWCellFilter.TWFilter11Value,
|
|
175
|
+
.TWCellFilter.TWFilter12Value,
|
|
176
|
+
.TWCellFilter.TWOverflowDisable,
|
|
177
|
+
.TWCellFilter.TWHiddenValue.TWSideRight {
|
|
178
|
+
background-color: #DCEEFF;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.TWIconRight.TWCellFilter {
|
|
182
|
+
background-position: center !important;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.TWIconRight.TWCellFilter {
|
|
186
|
+
background-color: #DCEEFF;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.TWFilter0Value + .TWIconRight {
|
|
190
|
+
background-color: #F7F9FC;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.TWFilterAllMenu.TWFilter0Menu,
|
|
194
|
+
.TWHiddenValue.TWFilter0Value {
|
|
195
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/filter/filter-cancel-white.svg');
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.TWFilterAllMenu.TWFilter1Menu, .TWFilterLeft.TWFilter1Value {
|
|
199
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/filter/filter-equal-white.svg');
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.TWFilterAllMenu.TWFilter2Menu, .TWFilterLeft.TWFilter2Value {
|
|
203
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/filter/filter-not-equal-white.svg');
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.TWFilterAllMenu.TWFilter3Menu, .TWFilterLeft.TWFilter3Value {
|
|
207
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/filter/filter-math-lower-white.svg');
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.TWFilterAllMenu.TWFilter4Menu, .TWFilterLeft.TWFilter4Value {
|
|
211
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/filter/filter-math-equal-lower-white.svg');
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.TWFilterAllMenu.TWFilter5Menu, .TWFilterLeft.TWFilter5Value {
|
|
215
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/filter/filter-math-more-white.svg');
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.TWFilterAllMenu.TWFilter6Menu, .TWFilterLeft.TWFilter6Value {
|
|
219
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/filter/filter-math-equal-more-white.svg');
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.TWFilterAllMenu.TWFilter7Menu, .TWFilterLeft.TWFilter7Value {
|
|
223
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/filter/filter-start-with-white.svg');
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.TWFilterAllMenu.TWFilter8Menu, .TWFilterLeft.TWFilter8Value {
|
|
227
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/filter/filter-not-start-with-white.svg');
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.TWFilterAllMenu.TWFilter9Menu, .TWFilterLeft.TWFilter9Value {
|
|
231
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/filter/filter-ends-in-white.svg');
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.TWFilterAllMenu.TWFilter10Menu, .TWFilterLeft.TWFilter10Value {
|
|
235
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/filter/filter-not-edns-in-white.svg');
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.TWFilterAllMenu.TWFilter11Menu, .TWFilterLeft.TWFilter11Value {
|
|
239
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/filter/filter-contains-white.svg');
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.TWFilterAllMenu.TWFilter12Menu, .TWFilterLeft.TWFilter12Value {
|
|
243
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/filter/filter-not-contains-white.svg');
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.TWHintFilterOuter {
|
|
247
|
+
padding: 1px 0 0 0 !important;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.TWHintFilterMain {
|
|
251
|
+
margin-left: 8px;
|
|
252
|
+
padding: 0;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.TWSideRight.TWCellFilter {
|
|
256
|
+
background-position: center !important;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.TWFilter0Value u.TWFilter1, .TWFilter0Value u.TWFilter0 {
|
|
260
|
+
display: none;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.TWFilterMenuFocus {
|
|
264
|
+
background-color: #fff;
|
|
265
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
.GWGanttBaseOut {
|
|
2
|
+
background: none !important;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.GWGanttHtmlIn > div {
|
|
6
|
+
width: 100%;
|
|
7
|
+
height: 100%;
|
|
8
|
+
border-radius: 6px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.GWGanttHtmlLeft0.GWGanttHtml > span,
|
|
12
|
+
.GWGanttHtmlRight0 .GWGanttHtml > span {
|
|
13
|
+
font-size: 12px;
|
|
14
|
+
width: fit-content;
|
|
15
|
+
height: fit-content;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.GWGanttHtml {
|
|
19
|
+
overflow: visible !important;
|
|
20
|
+
padding: 0 !important;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.GWGantt.TWCell > div {
|
|
24
|
+
overflow: visible !important;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.TWGanttHeader {
|
|
28
|
+
padding: 0 !important;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.TWGanttHeader1,
|
|
32
|
+
.TWGanttHeader2,
|
|
33
|
+
.TWGanttHeader3 {
|
|
34
|
+
border-left: 1px solid #E4E6EC !important;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.TWGanttHeader1 {
|
|
38
|
+
border-bottom: 1px solid #E4E6EC !important;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.TWGanttHeader3 {
|
|
42
|
+
border-top: 1px solid #E4E6EC !important;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.TWHeadRight {
|
|
46
|
+
border-left: 1px solid #E4E6EC !important;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.TWGanttHeaderBase {
|
|
50
|
+
background: #F7F9FC;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.GWGanttHtmlOut + div {
|
|
54
|
+
overflow: visible !important;
|
|
55
|
+
margin-left: 100% !important;
|
|
56
|
+
margin-top: -16px !important;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.GWGanttHtmlOut + div > div {
|
|
60
|
+
font-size: 12px;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.GWGanttMark {
|
|
64
|
+
background: #fffc85 !important;
|
|
65
|
+
opacity: 0.4 !important;
|
|
66
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
.TWHeaderGroup {
|
|
2
|
+
padding: 0 4px;
|
|
3
|
+
background: #fff;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.TWHeaderGroup > div {
|
|
7
|
+
font-family: 'InterMedium';
|
|
8
|
+
font-size: 12px;
|
|
9
|
+
line-height: 16px;
|
|
10
|
+
background: #DCEEFF;
|
|
11
|
+
border-radius: 4px;
|
|
12
|
+
height: 100%;
|
|
13
|
+
width: fit-content !important;
|
|
14
|
+
padding: 4px 8px;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.TWGroupRow {
|
|
18
|
+
border-right: none !important;
|
|
19
|
+
border-left: none !important;
|
|
20
|
+
border-top: none !important;
|
|
21
|
+
border-bottom: 1px solid #E4E6EC;
|
|
22
|
+
padding: 2px 12px 2px 24px;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.TWGroupRow .TWCollapseLeft {
|
|
26
|
+
background-size: 24px;
|
|
27
|
+
padding: 0 28px !important;
|
|
28
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/group-collapse-bottom.svg') !important;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.TWGroupRow .TWExpandLeft {
|
|
32
|
+
background-size: 24px;
|
|
33
|
+
padding: 0 28px !important;
|
|
34
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/group-collapse-right.svg') !important;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.group-row {
|
|
38
|
+
background-color: #F7F9FC !important;
|
|
39
|
+
border-bottom: 1px solid #E4E6EC;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.group-text {
|
|
43
|
+
color: #4A556C;
|
|
44
|
+
font-family: 'InterMedium';
|
|
45
|
+
font-size: 14px;
|
|
46
|
+
line-height: 16px;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.vitro-group-active > div {
|
|
50
|
+
border-radius: 4px;
|
|
51
|
+
border: 1px dashed #8E98A3;
|
|
52
|
+
background: #F3F8FF;
|
|
53
|
+
color: #F3F8FF !important;
|
|
54
|
+
height: 80%;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.TWHeaderGroupCustom {
|
|
58
|
+
padding: 0;
|
|
59
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
.TWCellHeader {
|
|
2
|
+
font-family: "InterMedium" !important;
|
|
3
|
+
background: #F7F9FC;
|
|
4
|
+
padding: 4px 8px !important;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.TWClassHoveredCellHeader {
|
|
8
|
+
background-color: #DCEEFF;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.TWHeaderButton {
|
|
12
|
+
padding: 0 !important;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.TWHeaderFont {
|
|
16
|
+
font-weight: unset;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.TWHeaderText {
|
|
20
|
+
color: #4A556C !important;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.TWCellHeaderPanel .TWPanelDelete {
|
|
24
|
+
display: none;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.TWHintHeaderOuter > div,
|
|
28
|
+
.TWHintDataOuter > div {
|
|
29
|
+
overflow: visible !important;
|
|
30
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
.TWPageMessage, .GridMessage {
|
|
2
|
+
border: none !important;
|
|
3
|
+
box-shadow: none !important;
|
|
4
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/preloader.svg');
|
|
5
|
+
background-repeat: no-repeat;
|
|
6
|
+
background-position: center top;
|
|
7
|
+
padding: 0;
|
|
8
|
+
padding-top: 64px !important;
|
|
9
|
+
min-width: 110px;
|
|
10
|
+
font-family: 'InterRegular';
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.TWMessage {
|
|
14
|
+
font-family: inherit;
|
|
15
|
+
border-radius: 8px;
|
|
16
|
+
border: 1px solid #e0e0e0;
|
|
17
|
+
font-size: inherit;
|
|
18
|
+
padding: 16px;
|
|
19
|
+
min-width: 240px;
|
|
20
|
+
white-space: normal;
|
|
21
|
+
text-align: left;
|
|
22
|
+
box-shadow: none;
|
|
23
|
+
z-index: 100000;
|
|
24
|
+
top: 50% !important;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.TWMessage .vitro-flex {
|
|
28
|
+
align-items: center;
|
|
29
|
+
font-family: "GraphikRegular";
|
|
30
|
+
font-size: 10pt;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.TWMessage .vitro-icon-before {
|
|
34
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/question.svg');
|
|
35
|
+
background-size: cover;
|
|
36
|
+
width: 32px;
|
|
37
|
+
height: 32px;
|
|
38
|
+
margin-right: 8px;
|
|
39
|
+
padding-right: 0;
|
|
40
|
+
flex-shrink: 0;
|
|
41
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
.TWProgressOuter {
|
|
2
|
+
background-color: #fff;
|
|
3
|
+
width: 220px !important;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.TWProgressInner {
|
|
7
|
+
height: 26px !important;
|
|
8
|
+
width: 100% !important;
|
|
9
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/preloader.svg');
|
|
10
|
+
background-repeat: no-repeat;
|
|
11
|
+
background-position: center;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.TWProgressMain {
|
|
15
|
+
text-align: center;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.TWProgressButtons {
|
|
19
|
+
margin: 0;
|
|
20
|
+
display: flex;
|
|
21
|
+
flex-direction: row-reverse;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.TWProgressButtons > button {
|
|
25
|
+
min-width: 80px;
|
|
26
|
+
font-size: 9pt;
|
|
27
|
+
height: 26px;
|
|
28
|
+
line-height: 26px;
|
|
29
|
+
margin: 4px;
|
|
30
|
+
padding: 0 8px !important;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.TWProgressRow {
|
|
34
|
+
padding: 0;
|
|
35
|
+
height: 2px;
|
|
36
|
+
border: none !important;
|
|
37
|
+
position: absolute;
|
|
38
|
+
z-index: 1;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.TWProgressRow .TWHtml {
|
|
42
|
+
padding: 0;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.TWProgressRow .TWSpaceWidthInner {
|
|
46
|
+
height: 2px;
|
|
47
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
.TWCustScroll3X .TWHScrollSpace {
|
|
2
|
+
width: 12px;
|
|
3
|
+
height: 12px;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.TWVScroll {
|
|
7
|
+
width: 10px !important;
|
|
8
|
+
border: 1px solid #F7F9FC;
|
|
9
|
+
box-sizing: border-box;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.TWHScroll {
|
|
13
|
+
height: 10px !important;
|
|
14
|
+
box-sizing: border-box;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.TWHScrollLeft, .TWHScrollMid, .TWHScrollRight {
|
|
18
|
+
border: none;
|
|
19
|
+
background: #fff
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.TWCustScroll3Right, .TWCustScroll2Right, .TWCustScroll3RightHidden, .TWCustScroll2RightHidden {
|
|
23
|
+
height: 10px;
|
|
24
|
+
background: #fff;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.TWCustScroll3Left, .TWCustScroll2Left, .TWCustScroll3LeftHover, .TWCustScroll2LeftHover {
|
|
28
|
+
padding: 3px 5px;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.TWCustScroll3Down, .TWCustScroll2Down, .TWCustScroll3DownHidden, .TWCustScroll2DownHidden {
|
|
32
|
+
width: 10px;
|
|
33
|
+
background: #fff
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.TWCustScroll3Up, .TWCustScroll2Up, .TWCustScroll3UpHover, .TWCustScroll2UpHover {
|
|
37
|
+
padding: 5px 3px;
|
|
38
|
+
background: #fff
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.TWCustScroll3SliderRight, .TWCustScroll2SliderRight, .TWCustScroll3SliderLeft, .TWCustScroll2SliderLeft,
|
|
42
|
+
.TWCustScroll3SliderRightHover, .TWCustScroll2SliderRightHover, .TWCustScroll3SliderLeftHover, .TWCustScroll2SliderLeftHover {
|
|
43
|
+
background: #E4E6EC;
|
|
44
|
+
height: 4px;
|
|
45
|
+
margin: 0;
|
|
46
|
+
border-radius: 4px;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.TWCustScroll3SliderDown, .TWCustScroll2SliderDown, .TWCustScroll3SliderUp, .TWCustScroll2SliderUp,
|
|
50
|
+
.TWCustScroll3SliderDownHover, .TWCustScroll2SliderDownHover, .TWCustScroll3SliderUpHover, .TWCustScroll2SliderUpHover {
|
|
51
|
+
background: #E4E6EC;
|
|
52
|
+
width: 4px;
|
|
53
|
+
margin: 0;
|
|
54
|
+
border-radius: 4px;
|
|
55
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
.TWSort1Left, .TWSort1Right,
|
|
2
|
+
.TWSort2Left, .TWSort2Right,
|
|
3
|
+
.TWSort3Left, .TWSort3Right {
|
|
4
|
+
background-repeat: no-repeat !important;
|
|
5
|
+
height: 24px !important;
|
|
6
|
+
width: 24px !important;
|
|
7
|
+
background-size: 100% !important;
|
|
8
|
+
background-position: center !important;
|
|
9
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/sort-top.svg');
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.TWSort4Left, .TWSort4Right,
|
|
13
|
+
.TWSort5Left, .TWSort5Right,
|
|
14
|
+
.TWSort6Left, .TWSort6Right {
|
|
15
|
+
background-repeat: no-repeat !important;
|
|
16
|
+
height: 24px !important;
|
|
17
|
+
width: 24px !important;
|
|
18
|
+
background-size: 100% !important;
|
|
19
|
+
background-position: center !important;
|
|
20
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/sort-bottom.svg');
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.TWSort0Left, .TWSort0Right {
|
|
24
|
+
background-image: none !important;
|
|
25
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
.TWTabHtmlBase {
|
|
2
|
+
border-radius: 4px 4px 0px 0px;
|
|
3
|
+
padding: 8px 16px !important;
|
|
4
|
+
font-size: 12px;
|
|
5
|
+
line-height: 16px;
|
|
6
|
+
border-top: 1px solid #E4E6EC;
|
|
7
|
+
border-right: 1px solid #E4E6EC;
|
|
8
|
+
border-left: 1px solid #E4E6EC;
|
|
9
|
+
font-weight: unset !important;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.TWTabHtmlBase:hover,
|
|
13
|
+
.TWTabHtmlBase:active,
|
|
14
|
+
.TWTabHtml1:hover,
|
|
15
|
+
.TWTabHtml1:active {
|
|
16
|
+
background-color: #F7F9FC !important;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.TWTabHtml1 {
|
|
20
|
+
background: #F7F9FC !important;
|
|
21
|
+
font-family: 'InterMedium';
|
|
22
|
+
position: relative;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.TWTabHtml1::after {
|
|
26
|
+
content: '';
|
|
27
|
+
position: absolute;
|
|
28
|
+
width: 100%;
|
|
29
|
+
display: block;
|
|
30
|
+
height: 1px;
|
|
31
|
+
background: #F7F9FC;
|
|
32
|
+
top: 100%;
|
|
33
|
+
left: 0;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.TWTabHtml1::before {
|
|
37
|
+
content: '';
|
|
38
|
+
display: inline-block;
|
|
39
|
+
height: 16px;
|
|
40
|
+
margin-right: 4px;
|
|
41
|
+
width: 16px;
|
|
42
|
+
margin-left: -6px;
|
|
43
|
+
vertical-align: sub;
|
|
44
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/check.svg');
|
|
45
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
.TWTipOuter {
|
|
2
|
+
background-color: #4A556C;
|
|
3
|
+
opacity: 1;
|
|
4
|
+
border-radius: 4px;
|
|
5
|
+
padding: 8px 10px;
|
|
6
|
+
box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 2px 6px 0px rgba(0, 0, 0, 0.10);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.TWTipBody > div {
|
|
10
|
+
color: #fff !important;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.TWTipMain.TWTipMainTop::after {
|
|
14
|
+
content: '';
|
|
15
|
+
display: block;
|
|
16
|
+
position: absolute;
|
|
17
|
+
height: 20px;
|
|
18
|
+
width: 42px;
|
|
19
|
+
left: calc(50% - 21px);
|
|
20
|
+
background-repeat: no-repeat;
|
|
21
|
+
background-position: center -2px;
|
|
22
|
+
background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/tooltip-arrow.svg');
|
|
23
|
+
}
|