@vitrosoftware/common-ui-ts 1.1.12 → 1.1.13
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 +27 -1
- package/css/std/controls/action-handler/action-handler-info.css +103 -0
- package/css/std/controls/action-handler/action-handler.css +247 -0
- package/css/std/controls/alert/alert.css +184 -0
- package/css/std/controls/breadcrumbs/breadcrumbs.css +137 -0
- package/css/std/controls/button/button.css +67 -0
- package/css/std/controls/command-menu/command-menu-button.css +18 -0
- package/css/std/controls/command-menu/command-menu-dropdown-button.css +155 -0
- package/css/std/controls/command-menu/command-menu-item.css +14 -0
- package/css/std/controls/command-menu/command-menu-lookup-picker.css +48 -0
- package/css/std/controls/command-menu/command-menu.css +18 -0
- package/css/std/controls/control-group/control-group.css +27 -0
- package/css/std/controls/date-picker/date-picker.css +311 -0
- package/css/std/controls/dialog/dialog-button-close.css +34 -0
- package/css/std/controls/dialog/dialog-button.css +3 -0
- package/css/std/controls/dialog/dialog-content.css +29 -0
- package/css/std/controls/dialog/dialog-footer.css +9 -0
- package/css/std/controls/dialog/dialog-header.css +5 -0
- package/css/std/controls/dialog/dialog.css +35 -0
- package/css/std/controls/input/input.css +145 -0
- package/css/std/controls/label/label.css +8 -0
- package/css/std/controls/login/img/login-background.png +0 -0
- package/css/std/controls/login/login.css +230 -0
- package/css/std/controls/lookup-picker/lookup-picker-selected-item.css +4 -0
- package/css/std/controls/lookup-picker/lookup-picker-value-list.css +52 -0
- package/css/std/controls/lookup-picker/lookup-picker.css +144 -0
- package/css/std/controls/sidebar/sidebar-item.css +49 -0
- package/css/std/controls/sidebar/sidebar.css +78 -0
- package/css/std/controls/tab-group/tab-group.css +117 -0
- package/css/std/controls/table-view/table-view-custom-date-edit.css +24 -0
- package/css/std/controls/table-view/table-view-custom-lookup-edit.css +4 -0
- package/css/std/controls/table-view/table-view.css +45 -0
- package/css/std/controls/table-view/treegrid.css +588 -0
- package/css/std/controls/task-tile/task-tile.css +91 -0
- package/css/std/controls/time-picker/time-picker.css +286 -0
- package/css/std/controls/tree-view/tree-view-context-menu.css +77 -0
- package/css/std/controls/tree-view/tree-view.css +110 -0
- package/css/std/controls/uploader/uploader.css +465 -0
- package/css/std/controls/view/view.css +5 -0
- package/css/std/controls/view-part/view-part.css +5 -0
- package/css/white/controls/sidebar/sidebar-item.css +54 -0
- package/css/white/controls/sidebar/sidebar.css +75 -0
- package/dist/constants/Ctrl.d.ts +28 -0
- package/dist/constants/Event.d.ts +5 -1
- package/dist/controls/ActionHandler/ActionHandler.d.ts +6 -3
- package/dist/controls/ActionHandler/ActionHandlerConstants.d.ts +13 -6
- package/dist/controls/ActionHandler/ActionInfo.d.ts +12 -0
- package/dist/controls/ActionHandler/ActionInfoItem.d.ts +13 -0
- package/dist/controls/Alert/Alert.d.ts +19 -0
- package/dist/controls/Alert/AlertConstants.d.ts +5 -0
- package/dist/controls/Breadcrumbs/Breadcrumbs.d.ts +6 -2
- package/dist/controls/Breadcrumbs/Item.d.ts +2 -1
- package/dist/controls/Button/Button.d.ts +14 -0
- package/dist/controls/CommandMenu/CommandMenu.d.ts +6 -0
- package/dist/controls/CommandMenu/CommandMenuButton.d.ts +13 -0
- package/dist/controls/CommandMenu/CommandMenuDropdownButton.d.ts +17 -0
- package/dist/controls/CommandMenu/CommandMenuItemHeader.d.ts +11 -0
- package/dist/controls/CommandMenu/CommandMenuLookupPicker.d.ts +32 -0
- package/dist/controls/CommandMenu/CommandMenuSubItem.d.ts +12 -0
- package/dist/controls/DatePicker/DatePicker.d.ts +26 -0
- package/dist/controls/DatePicker/DatePickerConstants.d.ts +12 -0
- package/dist/controls/Dialog/Dialog.d.ts +13 -0
- package/dist/controls/Dialog/DialogButton.d.ts +9 -0
- package/dist/controls/Dialog/DialogCloseButton.d.ts +8 -0
- package/dist/controls/Dialog/DialogComponent.d.ts +9 -0
- package/dist/controls/Dialog/DialogConstants.d.ts +5 -0
- package/dist/controls/Dialog/DialogContent.d.ts +6 -0
- package/dist/controls/Dialog/DialogFooter.d.ts +11 -0
- package/dist/controls/Dialog/DialogHeader.d.ts +6 -0
- package/dist/controls/Input/Input.d.ts +32 -0
- package/dist/controls/Input/InputConstants.d.ts +11 -0
- package/dist/controls/Label/Label.d.ts +9 -0
- package/dist/controls/Label/LabelConstants.d.ts +3 -0
- package/dist/controls/Login/Login.d.ts +17 -0
- package/dist/controls/Login/LoginConstants.d.ts +18 -0
- package/dist/controls/Login/LoginFooter.d.ts +10 -0
- package/dist/controls/Login/LoginInput.d.ts +17 -0
- package/dist/controls/LookupPicker/LookupPicker.d.ts +32 -0
- package/dist/controls/LookupPicker/LookupPickerConstants.d.ts +3 -0
- package/dist/controls/LookupPicker/SelectedValueList.d.ts +11 -0
- package/dist/controls/LookupPicker/ValueList.d.ts +16 -0
- package/dist/controls/Sidebar/Item.d.ts +9 -0
- package/dist/controls/Sidebar/LinkItem.d.ts +15 -0
- package/dist/controls/Sidebar/Section.d.ts +10 -0
- package/dist/controls/Sidebar/SectionList.d.ts +9 -0
- package/dist/controls/Sidebar/Sidebar.d.ts +13 -0
- package/dist/controls/Sidebar/SidebarConstants.d.ts +4 -0
- package/dist/controls/Sidebar/SidebarItem.d.ts +10 -0
- package/dist/controls/Sidebar/SidebarSection.d.ts +7 -0
- package/dist/controls/TableView/TableViewConstants.d.ts +4 -0
- package/dist/controls/TaskTile/TaskTile.d.ts +18 -0
- package/dist/controls/TelerikUploader/TelerikUploaderConstants.d.ts +14 -2
- package/dist/controls/TelerikUploader/TelerikUploaderContextImpl.d.ts +22 -2
- package/dist/controls/TimePicker/TimePicker.d.ts +20 -0
- package/dist/controls/TimePicker/TimePickerConstants.d.ts +12 -0
- package/dist/index.css +3129 -465
- package/dist/index.d.ts +62 -26
- package/dist/index.js +4659 -314
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +4641 -317
- package/dist/index.modern.js.map +1 -1
- package/lib/third-party.js +48552 -0
- package/package.json +4 -2
- /package/css/{third-party/treegrid → white/controls/table-view}/treegrid.css +0 -0
|
@@ -0,0 +1,588 @@
|
|
|
1
|
+
.TWMain, .TWMain * {
|
|
2
|
+
font-size: 14px;
|
|
3
|
+
line-height: 16px;
|
|
4
|
+
font-family: "InterRegular";
|
|
5
|
+
color: #222D44 !important;
|
|
6
|
+
border: none;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.TWMenuMain {
|
|
10
|
+
z-index: 1000;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.TWCustScroll3X .TWHScrollSpace {
|
|
14
|
+
width: 12px;
|
|
15
|
+
height: 12px;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.TWVScroll {
|
|
19
|
+
width: 10px !important;
|
|
20
|
+
border: 1px solid #F7F9FC;
|
|
21
|
+
box-sizing: border-box;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.TWHScroll {
|
|
25
|
+
height: 10px !important;
|
|
26
|
+
box-sizing: border-box;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.TWHScrollLeft, .TWHScrollMid, .TWHScrollRight {
|
|
30
|
+
border: 1px solid #F7F9FC !important;
|
|
31
|
+
background: #fff
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.TWCustScroll3Right, .TWCustScroll3RightHidden {
|
|
35
|
+
height: 10px;
|
|
36
|
+
background: #fff;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.TWCustScroll3Left, .TWCustScroll3LeftHover {
|
|
40
|
+
padding: 3px 5px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.TWCustScroll3Down, .TWCustScroll3DownHidden {
|
|
44
|
+
width: 10px;
|
|
45
|
+
background: #fff
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.TWCustScroll3Up, .TWCustScroll3UpHover {
|
|
49
|
+
padding: 5px 3px;
|
|
50
|
+
background: #fff
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.TWCustScroll3SliderRight, .TWCustScroll3SliderLeft,
|
|
54
|
+
.TWCustScroll3SliderRightHover, .TWCustScroll3SliderLeftHover {
|
|
55
|
+
background: #E4E6EC;
|
|
56
|
+
height: 4px;
|
|
57
|
+
margin: 0;
|
|
58
|
+
border-radius: 4px;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.TWCustScroll3SliderDown, .TWCustScroll3SliderUp,
|
|
62
|
+
.TWCustScroll3SliderDownHover, .TWCustScroll3SliderUpHover {
|
|
63
|
+
background: #E4E6EC;
|
|
64
|
+
width: 4px;
|
|
65
|
+
margin: 0;
|
|
66
|
+
border-radius: 4px;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.TWCellHeader {
|
|
70
|
+
font-family: "InterMedium" !important;
|
|
71
|
+
background: #F7F9FC;
|
|
72
|
+
padding: 4px 8px !important;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.TWHeaderButton {
|
|
76
|
+
padding: 0 !important;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.TWHeaderFont {
|
|
80
|
+
font-weight: unset;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.TWInt, .TWFloat, .TWDate {
|
|
84
|
+
text-align: unset;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.TWDataRow td {
|
|
88
|
+
border-bottom: 1px solid #E4E6EC !important;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.TWCellFilter, .TWCellFilterPanel, .TWGanttFilter {
|
|
92
|
+
background-color: #F7F9FC;
|
|
93
|
+
border-top: 1px solid #E4E6EC !important;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.TWFilter0Left, .TWFilter0Right, .TWFilter0Menu {
|
|
97
|
+
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.50781 11.4946L8.00315 7.99924L11.4985 11.4946M11.4985 4.50391L8.00248 7.99924L4.50781 4.50391' stroke='%238E98A3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.TWCellBase.TWCellPanel,
|
|
101
|
+
.TWCellBase.TWCellPanel {
|
|
102
|
+
padding: 0 8px;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.TWHeaderButton {
|
|
106
|
+
padding: 0 !important;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.TWLow .TWIconLeft {
|
|
110
|
+
padding-left: 39px !important;
|
|
111
|
+
background-position: 7px;
|
|
112
|
+
background-size: 24px;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.TWLow .TWIconRight {
|
|
116
|
+
background-position-x: -8px;
|
|
117
|
+
background-size: 24px;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.TWFillRow {
|
|
121
|
+
border: none !important;
|
|
122
|
+
border-bottom: none !important;
|
|
123
|
+
background: #fff !important;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.TWFocusRowBackground {
|
|
127
|
+
background: #0085FF !important;
|
|
128
|
+
opacity: 0.13 !important;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.TWMenuMain {
|
|
132
|
+
width: 241px !important;
|
|
133
|
+
margin-top: 8px !important;
|
|
134
|
+
border: none;
|
|
135
|
+
border-radius: 4px;
|
|
136
|
+
box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.15), 0px 0px 4px 0px rgba(0, 0, 0, 0.12);
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.TWMenuMain::before {
|
|
140
|
+
content: '';
|
|
141
|
+
display: block;
|
|
142
|
+
height: 11px;
|
|
143
|
+
width: 16px;
|
|
144
|
+
background-position: center;
|
|
145
|
+
background-size: 100%;
|
|
146
|
+
background-repeat: no-repeat;
|
|
147
|
+
position: absolute;
|
|
148
|
+
right: 26px;
|
|
149
|
+
top: -11px;
|
|
150
|
+
/* dropdown-arrow.svg URL-encoder for SVG */
|
|
151
|
+
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.31554 1.65838L0.382812 11H15.6249L9.69214 1.65838C8.90651 0.421336 7.10117 0.421335 6.31554 1.65838Z' fill='white'/%3E%3C/svg%3E%0A");
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.TWMenuOuter {
|
|
155
|
+
padding: 0;
|
|
156
|
+
margin: 0;
|
|
157
|
+
border-radius: 4px !important;
|
|
158
|
+
border: none !important;
|
|
159
|
+
min-width: 241px !important;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.TWMenuBody {
|
|
163
|
+
margin: 0 !important;
|
|
164
|
+
width: 100%;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.TWMenuBody {
|
|
168
|
+
cursor: default;
|
|
169
|
+
margin: 0px 1px 0px 1px;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.TWMenuFocus, .TWMenuHover {
|
|
173
|
+
background: #F3F8FF !important;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.TWMenuItem {
|
|
177
|
+
margin: 0 !important;
|
|
178
|
+
padding: 8px 0 !important;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.TWMenuItemText {
|
|
182
|
+
line-height: 150%;
|
|
183
|
+
padding-left: 12px;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.TWMenuItemIcon {
|
|
187
|
+
height: 20px;
|
|
188
|
+
width: 32px;
|
|
189
|
+
background-size: 20px;
|
|
190
|
+
background-position-x: 12px;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.TWCell {
|
|
194
|
+
padding: 0 8px !important;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.TWCheck0Left,
|
|
198
|
+
.TWMenuUncheckedIconLeft, .TWMenuUncheckedIconRight,
|
|
199
|
+
.TWBool0, .TWBool0RO {
|
|
200
|
+
/* ico-tableview-checkbox-empty.svg URL-encoder for SVG */
|
|
201
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 64 64'%3E%3Crect fill='none' stroke='%23bdbdbd' stroke-width='2' x='10' y='10' width='40' height='40' rx='5' ry='5'/%3E%3C/svg%3E") !important;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.TWCheck1Left,
|
|
205
|
+
.TWMenuCheckedIconLeft, .TWMenuCheckedIconRight,
|
|
206
|
+
.TWFilter1, .TWGroup1, .TWSearch1,
|
|
207
|
+
.TWBool1, .TWBool1RO {
|
|
208
|
+
/* ico-tableview-checkbox-full.svg URL-encoder for SVG */
|
|
209
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 64 64'%3E%3Crect fill='%23fff' stroke='%23bdbdbd' stroke-width='2' x='10' y='10' width='40' height='40' rx='5' ry='5'/%3E%3Cpolyline fill='none' stroke='%23ff5b2d' stroke-width='6' points='16,28 28,38 44,20'/%3E%3C/svg%3E") !important;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.TWPickEmpty {
|
|
213
|
+
/* ico-tableview-calendar-empty.svg URL-encoder for SVG */
|
|
214
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 64 64'%3E%3Cpath fill='%23ff5b2d' d='M45.6,14.4C37,5.9,23,5.9,14.4,14.4s-8.6,22.5,0,31.1s22.5,8.6,31.1,0S54.1,23,45.6,14.4z M38.5,41.3L30,32.8l-8.5,8.5l-2.8-2.8l8.5-8.5l-8.5-8.5l2.8-2.8l8.5,8.5l8.5-8.5l2.8,2.8L32.8,30l8.5,8.5L38.5,41.3z' stroke='%23fff'/%3E%3C/svg%3E") !important;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.TWSort1Left, .TWSort1Right,
|
|
218
|
+
.TWSort2Left, .TWSort2Right,
|
|
219
|
+
.TWSort3Left, .TWSort3Right {
|
|
220
|
+
background-repeat: no-repeat !important;
|
|
221
|
+
height: 24px !important;
|
|
222
|
+
width: 24px !important;
|
|
223
|
+
background-size: 100% !important;
|
|
224
|
+
background-position: center !important;
|
|
225
|
+
/* tableview-sort-top.svg URL-encoder for SVG */
|
|
226
|
+
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.06251 10.2031C8.86803 10.3976 8.55298 10.3985 8.35743 10.2051C8.16035 10.0101 8.15947 9.69209 8.35547 9.49609L11.3571 6.49447C11.6303 6.2213 12.0731 6.22108 12.3465 6.49397L15.3549 9.49627C15.5512 9.69212 15.5505 10.0103 15.3533 10.2052C15.1579 10.3985 14.843 10.3977 14.6486 10.2033L12.5303 8.08496C12.4673 8.02194 12.3595 8.06662 12.3596 8.15575L12.3668 17.4293C12.367 17.7056 12.1431 17.9297 11.8668 17.9297C11.5908 17.9297 11.367 17.7061 11.3668 17.4301L11.3596 8.14741C11.3595 8.05835 11.2518 8.0138 11.1889 8.07677L9.06251 10.2031Z' fill='%234292F7'/%3E%3C/svg%3E%0A") !important;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.TWSort4Left, .TWSort4Right,
|
|
230
|
+
.TWSort6Left, .TWSort6Right {
|
|
231
|
+
background-repeat: no-repeat !important;
|
|
232
|
+
height: 24px !important;
|
|
233
|
+
width: 24px !important;
|
|
234
|
+
background-size: 100% !important;
|
|
235
|
+
background-position: center !important;
|
|
236
|
+
/* tableview-sort-bottom.svg URL-encoder for SVG */
|
|
237
|
+
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.9375 13.7969C15.132 13.6024 15.447 13.6015 15.6426 13.7949C15.8397 13.9899 15.8405 14.3079 15.6445 14.5039L12.6429 17.5055C12.3697 17.7787 11.9269 17.7789 11.6535 17.506L8.64508 14.5037C8.44883 14.3079 8.44955 13.9897 8.64668 13.7948C8.84213 13.6015 9.15701 13.6023 9.35139 13.7967L11.4697 15.915C11.5327 15.9781 11.6405 15.9334 11.6404 15.8442L11.6332 6.5707C11.633 6.29441 11.8569 6.07031 12.1332 6.07031C12.4092 6.07031 12.633 6.29393 12.6332 6.56992L12.6404 15.8526C12.6405 15.9416 12.7482 15.9862 12.8111 15.9232L14.9375 13.7969Z' fill='%234292F7'/%3E%3C/svg%3E%0A") !important;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.TWSort0Left, .TWSort0Right {
|
|
241
|
+
background-image: none !important;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.TWP0200, .TWPx200, .TWP02x0, .TWP020x, .TWPx2x0, .TWPx20x, .TWP02xx, .TWPx2xx, .TWPanelSelectOn {
|
|
245
|
+
background-size: 24px;
|
|
246
|
+
/* checkbox-active.svg URL-encoder for SVG */
|
|
247
|
+
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%3Crect x='4' y='4' width='16' height='16' rx='2' fill='%234292F7'/%3E%3Cpath d='M15.765 9.20474C16.0661 9.48915 16.0797 9.96383 15.7953 10.265L11.5453 14.765C11.4061 14.9123 11.2133 14.997 11.0107 14.9999C10.8081 15.0028 10.6129 14.9236 10.4697 14.7803L8.21967 12.5303C7.92678 12.2374 7.92678 11.7626 8.21967 11.4697C8.51256 11.1768 8.98744 11.1768 9.28033 11.4697L10.9846 13.174L14.7047 9.23503C14.9891 8.9339 15.4638 8.92033 15.765 9.20474Z' fill='white'/%3E%3C/svg%3E%0A") !important;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.TWPanelSelect {
|
|
251
|
+
background-size: 24px;
|
|
252
|
+
/* checkbox-empty.svg URL-encoder for SVG */
|
|
253
|
+
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%3Crect x='4.5' y='4.5' width='15' height='15' rx='1.5' stroke='%23C0CAD5'/%3E%3C/svg%3E%0A");
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.TWNE, .TWNER {
|
|
257
|
+
/* tree-closed.svg URL-encoder for SVG */
|
|
258
|
+
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.5 7L14.5 12L9.5 17' stroke='%238E98A3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.TWNC, .TWNCR {
|
|
262
|
+
/* tree-closed-black.svg URL-encoder for SVG */
|
|
263
|
+
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Chevron-tree-down'%3E%3Cpath id='Vector 9' d='M17 10L12 15L7 10' stroke='%23222D44' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E%0A");
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.TWNC, .TWNCR,
|
|
267
|
+
.TWNE, .TWNER {
|
|
268
|
+
background-size: 100%;
|
|
269
|
+
background-position: right !important;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.TWNTree, .TWNTreeImage {
|
|
273
|
+
background-size: 24px 24px;
|
|
274
|
+
background-position: right center;
|
|
275
|
+
background-repeat: no-repeat;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
.TWIconRight.TWCellFilter {
|
|
279
|
+
background-size: 16px 16px !important;
|
|
280
|
+
background-position: 0 !important;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.TWRightSplitter {
|
|
284
|
+
background: #4292F7;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.GWGanttBaseOut {
|
|
288
|
+
background: none !important;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.GWGanttHtmlIn > div {
|
|
292
|
+
width: 100%;
|
|
293
|
+
height: 100%;
|
|
294
|
+
border-radius: 6px;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.TWClassReadOnly {
|
|
298
|
+
color: #8E98A3 !important;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.GWGanttHtmlLeft0.GWGanttHtml > span,
|
|
302
|
+
.GWGanttHtmlRight0 .GWGanttHtml > span {
|
|
303
|
+
font-size: 12px;
|
|
304
|
+
width: fit-content;
|
|
305
|
+
height: fit-content;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.GWGanttHtml {
|
|
309
|
+
overflow: visible !important;
|
|
310
|
+
padding: 0 !important;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.GWGantt.TWCell > div {
|
|
314
|
+
overflow: visible !important;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.TWGanttHeader {
|
|
318
|
+
padding: 0 !important;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.TWGanttHeader1,
|
|
322
|
+
.TWGanttHeader2,
|
|
323
|
+
.TWGanttHeader3 {
|
|
324
|
+
border-left: 1px solid #E4E6EC !important;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.TWGanttHeader1 {
|
|
328
|
+
border-bottom: 1px solid #E4E6EC !important;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.TWGanttHeader3 {
|
|
332
|
+
border-top: 1px solid #E4E6EC !important;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
.TWHeadRight {
|
|
336
|
+
border-left: 1px solid #E4E6EC !important;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.TWGanttHeaderBase {
|
|
340
|
+
background: #F7F9FC;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.GWGanttHtmlOut + div {
|
|
344
|
+
overflow: visible !important;
|
|
345
|
+
margin-left: 100% !important;
|
|
346
|
+
margin-top: -16px !important;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.GWGanttHtmlOut + div > div {
|
|
350
|
+
font-size: 12px;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.vitro-table-full-width {
|
|
354
|
+
width: 100%
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.GWGanttMark {
|
|
358
|
+
background: #fffc85 !important;
|
|
359
|
+
opacity: 0.4 !important;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.TWPageMessage, .GridMessage {
|
|
363
|
+
border: none !important;
|
|
364
|
+
box-shadow: none !important;
|
|
365
|
+
/* ico-preloader.svg URL-encoder for SVG */
|
|
366
|
+
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");
|
|
367
|
+
background-repeat: no-repeat;
|
|
368
|
+
background-position: center 20px;
|
|
369
|
+
background-size: 24px 24px;
|
|
370
|
+
padding-top: 56px !important;
|
|
371
|
+
text-align: center !important;
|
|
372
|
+
font-family: "GraphikRegular" !important;
|
|
373
|
+
font-size: 10pt !important;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.TWMessage {
|
|
377
|
+
font-family: inherit;
|
|
378
|
+
border-radius: 8px;
|
|
379
|
+
border: 1px solid #e0e0e0;
|
|
380
|
+
font-size: inherit;
|
|
381
|
+
padding: 16px;
|
|
382
|
+
min-width: 240px;
|
|
383
|
+
white-space: normal;
|
|
384
|
+
text-align: left;
|
|
385
|
+
box-shadow: none;
|
|
386
|
+
z-index: 100000;
|
|
387
|
+
top: 50% !important;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.TWMessage .vitro-flex {
|
|
391
|
+
align-items: center;
|
|
392
|
+
font-family: "GraphikRegular";
|
|
393
|
+
font-size: 10pt;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.TWMessage .TWMessageButtons {
|
|
397
|
+
display: flex;
|
|
398
|
+
width: 100%;
|
|
399
|
+
padding: 0;
|
|
400
|
+
justify-content: flex-end;
|
|
401
|
+
margin: 0;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.TWMessage .vitro-icon-before {
|
|
405
|
+
/* ico-question.svg URL-encoder for SVG */
|
|
406
|
+
background-image: url("data:image/svg+xml,%3Csvg width='49' height='49' viewBox='0 0 49 49' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24.1631 44.1426C35.2088 44.1426 44.1631 35.1883 44.1631 24.1426C44.1631 13.0969 35.2088 4.14258 24.1631 4.14258C13.1174 4.14258 4.16309 13.0969 4.16309 24.1426C4.16309 35.1883 13.1174 44.1426 24.1631 44.1426Z' stroke='%23BDBDBD' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M18.3428 18.1426C18.813 16.806 19.7411 15.6788 20.9627 14.9609C22.1843 14.2429 23.6206 13.9805 25.0171 14.22C26.4137 14.4596 27.6804 15.1857 28.5929 16.2697C29.5055 17.3537 30.0049 18.7257 30.0028 20.1426C30.0028 24.1426 24.0028 26.1426 24.0028 26.1426' stroke='%23BDBDBD' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M24.1631 34.1426H24.1831' stroke='%23BDBDBD' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/svg%3E");
|
|
407
|
+
background-size: cover;
|
|
408
|
+
width: 32px;
|
|
409
|
+
height: 32px;
|
|
410
|
+
margin-right: 8px;
|
|
411
|
+
padding-right: 0;
|
|
412
|
+
flex-shrink: 0;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
.TWMessage .TWMessageButtons > button, .TWLow .TWMenuButton, .TWProgressButtons > button {
|
|
416
|
+
height: 32px;
|
|
417
|
+
line-height: 32px;
|
|
418
|
+
background: #0097ff;
|
|
419
|
+
color: #fff;
|
|
420
|
+
width: auto;
|
|
421
|
+
padding: 0 12px;
|
|
422
|
+
min-width: 96px;
|
|
423
|
+
margin: 8px 0 0 8px;
|
|
424
|
+
border-radius: 8px;
|
|
425
|
+
border: none;
|
|
426
|
+
padding: 0 !important;
|
|
427
|
+
font-weight: 500;
|
|
428
|
+
outline: none;
|
|
429
|
+
font-family: GraphikRegular;
|
|
430
|
+
font-size: 10pt;
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
.TWMessage .TWMessageButtons > button:hover, .TWLow .TWMenuButton:hover, .TWProgressButtons > button:hover {
|
|
434
|
+
background: rgba(0, 151, 255, .8);
|
|
435
|
+
border-color: transparent;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
.TWMessage .TWMessageButtons > button:first-child {
|
|
439
|
+
margin-left: 0;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
.TWMessage .TWMessageButtons > button:last-child,
|
|
443
|
+
.TWMenuFoot > button:last-child,
|
|
444
|
+
.TWProgressButtons > button:last-child {
|
|
445
|
+
background: #fff;
|
|
446
|
+
color: #0097ff;
|
|
447
|
+
border: 1px solid #0097ff;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
.TWMessage .TWMessageButtons > button:last-child:hover,
|
|
451
|
+
.TWMenuFoot > button:last-child:hover,
|
|
452
|
+
.TWProgressButtons > button:last-child {
|
|
453
|
+
background: #fff;
|
|
454
|
+
border-color: rgba(0, 151, 255, .8);
|
|
455
|
+
color: rgba(0, 151, 255, .8);
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
.TWFilter12Left, .TWFilter12Right, .TWFilter12Menu {
|
|
459
|
+
/*ico-tableview-contains-not.svg URL-encoder for SVG*/
|
|
460
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 64 64'%3E%3Cg fill='%23ff5b2d'%3E%3Cpolygon points='12,24 12,40 24,32'/%3E%3Cpolygon points='52,40 52,24 40,32'/%3E%3Cpolygon points='28,33.3 36,28 36,20 40,20 40,12 24,12 24,20 28,20'/%3E%3Cpolygon points='36,32 28,37.3 28,44 24,44 24,52 40,52 40,44 36,44'/%3E%3Cpolygon fill='%23ff5b2d' points='48,20 48,16 12,40 12,44'/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
.TWFilter11Left, .TWFilter11Right, .TWFilter11Menu {
|
|
464
|
+
/*ico-tableview-contains.svg URL-encoder for SVG*/
|
|
465
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 64 64'%3E%3Cg fill='%23ff5b2d'%3E%3Cpolygon points='40,20 40,12 24,12 24,20 28,20 28,44 24,44 24,52 40,52 40,44 36,44 36,20'/%3E%3Cpolygon points='12,24 12,40 24,32'/%3E%3Cpolygon points='52,40 52,24 40,32'/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.TWFilter10Left, .TWFilter10Right, .TWFilter10Menu {
|
|
469
|
+
/*ico-tableview-end-with-not.svg URL-encoder for SVG*/
|
|
470
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 64 64'%3E%3Cg fill='%23ff5b2d'%3E%3Cpolygon points='12,24 12,40 24,32'/%3E%3Cpolygon points='28,33.3 36,28 36,20 40,20 40,12 24,12 24,20 28,20'/%3E%3Cpolygon points='36,32 28,37.3 28,44 24,44 24,52 40,52 40,44 36,44'/%3E%3Cpolygon fill='%23ff5b2d' points='48,20 48,16 12,40 12,44'/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
.TWFilter9Left, .TWFilter9Right, .TWFilter9Menu {
|
|
474
|
+
/*ico-tableview-end-with.svg URL-encoder for SVG*/
|
|
475
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 64 64'%3E%3Cpolygon fill='%23ff5b2d' points='44,20 44,12 28,12 28,20 32,20 32,44 28,44 28,52 44,52 44,44 40,44 40,20'/%3E%3Cpolygon fill='%23ff5b2d' points='16,24 16,40 28,32'/%3E%3C/svg%3E") !important;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
.TWFilter8Left, .TWFilter8Right, .TWFilter8Menu {
|
|
479
|
+
/*ico-tableview-start-with-not.svg URL-encoder for SVG*/
|
|
480
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 64 64'%3E%3Cg fill='%23ff5b2d'%3E%3Cpolygon points='24,36 32,30.7 32,20 36,20 36,12 20,12 20,20 24,20'/%3E%3Cpolygon points='32,34.7 24,40 24,44 20,44 20,52 36,52 36,44 32,44'/%3E%3Cpolygon points='36,32 36,40 48,32 42,28'/%3E%3Cpolygon fill='%23ff5b2d' points='48,20 48,16 12,40 12,44'/%3E%3C/g%3E%3C/svg%3E") !important;
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
.TWFilter7Left, .TWFilter7Right, .TWFilter7Menu {
|
|
484
|
+
/*ico-tableview-start-with.svg URL-encoder for SVG*/
|
|
485
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 64 64'%3E%3Cpolygon fill='%23ff5b2d' points='36,20 36,12 20,12 20,20 24,20 24,44 20,44 20,52 36,52 36,44 32,44 32,20'/%3E%3Cpolygon fill='%23ff5b2d' points='36,24 36,40 48,32'/%3E%3C/svg%3E") !important;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
.TWFilter6Left, .TWFilter6Right, .TWFilter6Menu {
|
|
489
|
+
/*ico-tableview-more-equal.svg URL-encoder for SVG*/
|
|
490
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 64 64'%3E%3Cpolygon fill='%23ff5b2d' points='16,12 48,24 48,32 16,44 16,36 37.3,28 16,20'/%3E%3Crect fill='%23ff5b2d' x='16' y='44' width='32' height='8'/%3E%3C/svg%3E") !important;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
.TWFilter5Left, .TWFilter5Right, .TWFilter5Menu {
|
|
494
|
+
/*ico-tableview-more.svg URL-encoder for SVG*/
|
|
495
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 64 64'%3E%3Cpolygon fill='%23ff5b2d' points='16,12 48,28 48,36 16,52 16,44 40,32 16,20'/%3E%3C/svg%3E") !important;
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
.TWFilter4Left, .TWFilter4Right, .TWFilter4Menu {
|
|
499
|
+
/*ico-tableview-less-equal.svg URL-encoder for SVG*/
|
|
500
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 64 64'%3E%3Cpolygon fill='%23ff5b2d' points='48,12 16,24 16,32 48,44 48,36 26.7,28 48,20'/%3E%3Crect fill='%23ff5b2d' x='16' y='44' width='32' height='8'/%3E%3C/svg%3E") !important;
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
.TWFilter3Left, .TWFilter3Right, .TWFilter3Menu {
|
|
504
|
+
/*ico-tableview-less.svg URL-encoder for SVG*/
|
|
505
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 64 64'%3E%3Cpolygon fill='%23ff5b2d' points='48,12 16,28 16,36 48,52 48,44 24,32 48,20'/%3E%3C/svg%3E") !important;
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
.TWFilter2Left, .TWFilter2Right, .TWFilter2Menu {
|
|
509
|
+
/*ico-tableview-not-equal.svg URL-encoder for SVG*/
|
|
510
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 64 64'%3E%3Cg fill='%23ff5b2d'%3E%3Crect x='12' y='20' width='40' height='8'/%3E%3Crect x='12' y='36' width='40' height='8'/%3E%3C/g%3E%3Cpolygon fill='%23ff5b2d' points='48,12 24,52 16,52 40,12'/%3E%3C/svg%3E") !important;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
.TWFilter1Left, .TWFilter1Right, .TWFilter1Menu {
|
|
514
|
+
/*ico-tableview-equal.svg URL-encoder for SVG*/
|
|
515
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 64 64'%3E%3Crect fill='%23ff5b2d' x='12' y='20' width='40' height='8'/%3E%3Crect fill='%23ff5b2d' x='12' y='36' width='40' height='8'/%3E%3C/svg%3E") !important;
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
.TWNoDataRow {
|
|
519
|
+
background: #fff;
|
|
520
|
+
border: none !important;
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
.TWNoDataRow .TWSpaceWidthInner {
|
|
524
|
+
text-align: center;
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
.TWFocusRowBackground {
|
|
528
|
+
background: #0083ff !important;
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
.TWFilter0Value u.TWFilter1, .TWFilter0Value u.TWFilter0,
|
|
532
|
+
.TWCellHeaderPanel .TWPanelDelete {
|
|
533
|
+
display: none;
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
.TWHintHeaderOuter > div,
|
|
537
|
+
.TWHintDataOuter > div {
|
|
538
|
+
overflow: visible !important;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
.TWProgressOuter {
|
|
542
|
+
background-color: #fff;
|
|
543
|
+
width: 220px !important;
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
.TWProgressInner {
|
|
547
|
+
height: 26px !important;
|
|
548
|
+
width: 100% !important;
|
|
549
|
+
/* ico-preloader.svg URL-encoder for SVG */
|
|
550
|
+
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") !important;
|
|
551
|
+
background-repeat: no-repeat;
|
|
552
|
+
background-position: center;
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
.TWProgressMain {
|
|
556
|
+
text-align: center;
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
.TWProgressButtons {
|
|
560
|
+
margin: 0;
|
|
561
|
+
display: flex;
|
|
562
|
+
flex-direction: row-reverse;
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
.TWProgressButtons > button {
|
|
566
|
+
min-width: 80px;
|
|
567
|
+
font-size: 9pt;
|
|
568
|
+
height: 26px;
|
|
569
|
+
line-height: 26px;
|
|
570
|
+
margin: 4px;
|
|
571
|
+
padding: 0 8px !important;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
.TWMenuItemText {
|
|
575
|
+
white-space: normal;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
.TWMenuItem.TWCfgMenuItem#TGMenu-0-style {
|
|
579
|
+
display: none;
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
.TWEditInput {
|
|
583
|
+
background: white;
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
.TWCellBase.vitro-table-view-deleted {
|
|
587
|
+
color: #BDBDBD;
|
|
588
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
.vitro-task-tile {
|
|
2
|
+
position: relative;
|
|
3
|
+
background-color: #fff;
|
|
4
|
+
border-radius: 4px;
|
|
5
|
+
padding: 12px;
|
|
6
|
+
margin: 12px 0;
|
|
7
|
+
box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 2px 6px 0px rgba(0, 0, 0, 0.10);
|
|
8
|
+
min-height: 85px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.vitro-task-tile.vitro-active {
|
|
12
|
+
background: #DCEEFF;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.vitro-content {
|
|
16
|
+
margin-top: 2px;
|
|
17
|
+
margin-bottom: -3px;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.vitro-description,
|
|
21
|
+
.vitro-comment {
|
|
22
|
+
font-size: 14px;
|
|
23
|
+
line-height: 21px;
|
|
24
|
+
color: #6C757D;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.vitro-comment {
|
|
28
|
+
margin-top: 18px;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.vitro-title {
|
|
32
|
+
color: #222D44;
|
|
33
|
+
font-size: 14px;
|
|
34
|
+
line-height: 21px;
|
|
35
|
+
margin-right: 48px;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.vitro-top-right {
|
|
39
|
+
position: absolute;
|
|
40
|
+
right: 23px;
|
|
41
|
+
top: 17px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.vitro-dropdown-button {
|
|
45
|
+
margin-right: -1px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.vitro-bottom-right {
|
|
49
|
+
position: absolute;
|
|
50
|
+
right: 12px;
|
|
51
|
+
bottom: 12px;
|
|
52
|
+
text-align: right;
|
|
53
|
+
color: #6C757D;
|
|
54
|
+
font-size: 14px;
|
|
55
|
+
line-height: 150%;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.vitro-task-tile :global(.vitro-task-tile-status-indicator) {
|
|
59
|
+
height: 2px;
|
|
60
|
+
position: absolute;
|
|
61
|
+
top: 0;
|
|
62
|
+
left: 4px;
|
|
63
|
+
right: 4px;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.vitro-task-tile :global(.vitro-task-tile-expired-indicator) {
|
|
67
|
+
width: 2px;
|
|
68
|
+
position: absolute;
|
|
69
|
+
top: 4px;
|
|
70
|
+
left: 0;
|
|
71
|
+
bottom: 4px;
|
|
72
|
+
background: #ff5b2d;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.vitro-button-cancel {
|
|
76
|
+
cursor: pointer;
|
|
77
|
+
height: 24px;
|
|
78
|
+
width: 24px;
|
|
79
|
+
position: absolute;
|
|
80
|
+
top: 12px;
|
|
81
|
+
right: 12px;
|
|
82
|
+
background-size: 100%;
|
|
83
|
+
background-repeat: no-repeat;
|
|
84
|
+
background-position: center;
|
|
85
|
+
/* clos�.svg URL-encoder for SVG */
|
|
86
|
+
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='iconoir:cancel'%3E%3Cpath id='Vector' d='M6.75781 17.2438L12.0008 12.0008L17.2438 17.2438M17.2438 6.75781L11.9998 12.0008L6.75781 6.75781' stroke='%234A556C' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E%0A");
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
:global(.vitro-time-log-history) .vitro-task-tile:first-child {
|
|
90
|
+
margin-top: 0px;
|
|
91
|
+
}
|