@vitrosoftware/common-ui-ts 1.1.17 → 1.1.20
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 +1 -1
- package/css/std/controls/activity/activity.css +21 -0
- package/css/std/controls/activity-item/activity-item.css +74 -0
- package/css/std/controls/button/button.css +1 -1
- package/css/std/controls/checkbox/checkbox.css +54 -0
- package/css/std/controls/command-menu/command-menu-item.css +1 -1
- package/css/std/controls/date-picker/date-picker.css +16 -6
- package/css/std/controls/icon/icon.css +3 -0
- package/css/std/controls/input/input.css +8 -2
- package/css/std/controls/label/label.css +6 -0
- package/css/std/controls/login/login.css +8 -0
- package/css/std/controls/lookup-picker/lookup-picker-selected-item.css +1 -2
- package/css/std/controls/lookup-picker/lookup-picker.css +10 -3
- package/css/std/controls/sidebar/sidebar-item.css +12 -12
- package/css/std/controls/tab-group/tab-group.css +5 -1
- package/css/std/controls/table-view/treegrid.css +6 -6
- package/css/std/controls/time-picker/time-picker.css +8 -1
- package/css/std/controls/uploader/uploader.css +11 -10
- package/css/white/controls/activity/activity.css +21 -0
- package/css/white/controls/activity-item/activity-item.css +65 -0
- package/dist/controls/Activity/Activity.d.ts +9 -0
- package/dist/controls/ActivityItem/ActivityItem.d.ts +16 -0
- package/dist/controls/Checkbox/Checkbox.d.ts +11 -0
- package/dist/controls/Icon/Icon.d.ts +11 -0
- package/dist/controls/Login/Login.d.ts +1 -1
- package/dist/controls/TelerikUploader/TelerikUploaderConstants.d.ts +0 -1
- package/dist/controls/TelerikUploader/TelerikUploaderContextImpl.d.ts +2 -2
- package/dist/controls/TelerikUploader/TelerikUploaderSettings.d.ts +6 -4
- package/dist/controls/TreeView/TreeViewConstants.d.ts +2 -1
- package/dist/controls/ViewPart/ViewPart.d.ts +1 -0
- package/dist/index.css +247 -41
- package/dist/index.d.ts +8 -0
- package/dist/index.js +295 -186
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +284 -179
- package/dist/index.modern.js.map +1 -1
- package/package.json +2 -2
- package/src/controls/PdfViewer/js/pdf-viewer.js +1 -3
package/css/common.css
CHANGED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
.vitro-title {
|
|
2
|
+
color: #bdbdbd;
|
|
3
|
+
margin-bottom: 12px;
|
|
4
|
+
text-align: center;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.vitro-title > h3 {
|
|
8
|
+
text-transform: uppercase;
|
|
9
|
+
font-size: 12pt;
|
|
10
|
+
margin: 0;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.vitro-dropdown-button {
|
|
14
|
+
position: absolute;
|
|
15
|
+
right: 0;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.vitro-activity :global(.preview-roller-wrapper) {
|
|
19
|
+
height: 100px;
|
|
20
|
+
position: relative;
|
|
21
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
.vitro-item {
|
|
2
|
+
margin-bottom: 22px;
|
|
3
|
+
min-height: 32px;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.vitro-item.vitro-active {
|
|
7
|
+
background: #F3F8FF;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.vitro-item > :global(.vitro-flex) {
|
|
11
|
+
width: 100%;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.vitro-title span {
|
|
15
|
+
color: #222d44;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.vitro-due-date {
|
|
19
|
+
font-size: 8pt;
|
|
20
|
+
color: #bdbdbd;
|
|
21
|
+
float: right;
|
|
22
|
+
white-space: nowrap;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.vitro-content {
|
|
26
|
+
margin-top: -1px;
|
|
27
|
+
width: 100%;
|
|
28
|
+
display: flex;
|
|
29
|
+
justify-content: space-between;
|
|
30
|
+
align-items: center;
|
|
31
|
+
margin-right: 4px;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.vitro-content p {
|
|
35
|
+
margin-block-start: 0px;
|
|
36
|
+
margin-block-end: 0px;
|
|
37
|
+
margin-bottom: 0px;
|
|
38
|
+
color: #bdbdbd;
|
|
39
|
+
font-size: 9pt;
|
|
40
|
+
line-height: 14px;
|
|
41
|
+
margin-top: 3px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.vitro-content p span {
|
|
45
|
+
font-size: 9pt !important;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.vitro-content :global(.vitro-status-changed) {
|
|
49
|
+
font-style: normal;
|
|
50
|
+
color: #27AE60;
|
|
51
|
+
font-size: 9pt;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.vitro-message {
|
|
55
|
+
overflow-wrap: anywhere;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.vitro-message img {
|
|
59
|
+
max-width: calc(100% - 20px);
|
|
60
|
+
display: block;
|
|
61
|
+
margin: 4px 0;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.vitro-flex {
|
|
65
|
+
display: flex;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.vitro-dropdown-button {
|
|
69
|
+
align-self: flex-start;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.vitro-avatar {
|
|
73
|
+
margin-right: 4px;
|
|
74
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
.vitro-control {
|
|
2
|
+
width: 100%;
|
|
3
|
+
position: relative;
|
|
4
|
+
margin-bottom: 32px;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.vitro-checkbox-content {
|
|
8
|
+
width: 100%;
|
|
9
|
+
display: flex;
|
|
10
|
+
align-items: center;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.vitro-checkbox-content input {
|
|
14
|
+
width: 24px;
|
|
15
|
+
height: 24px;
|
|
16
|
+
margin-right: 6px;
|
|
17
|
+
cursor: pointer;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.vitro-checkbox-content input::before,
|
|
21
|
+
.vitro-checkbox-content input:checked::before {
|
|
22
|
+
content: '';
|
|
23
|
+
display: block;
|
|
24
|
+
width: 24px;
|
|
25
|
+
height: 24px;
|
|
26
|
+
background: #fff;
|
|
27
|
+
background-size: 100%;
|
|
28
|
+
background-position: center;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.vitro-checkbox-content input::before {
|
|
32
|
+
/* checkbox-big-empty.svg URL-encoder for SVG */
|
|
33
|
+
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='Checkbox-big'%3E%3Crect id='Background' x='2.5' y='2.5' width='19' height='19' rx='3.5' stroke='%23C0CAD5'/%3E%3C/g%3E%3C/svg%3E%0A");
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.vitro-checkbox-content input:checked::before {
|
|
37
|
+
/* checkbox-big-active.svg URL-encoder for SVG */
|
|
38
|
+
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='2' width='20' height='20' rx='2.5' fill='%234292F7'/%3E%3Cpath d='M16.7062 8.50593C17.0826 8.86144 17.0996 9.45479 16.7441 9.83121L11.4316 15.4562C11.2577 15.6404 11.0166 15.7463 10.7634 15.7499C10.5101 15.7535 10.2662 15.6545 10.0871 15.4754L7.27459 12.6629C6.90847 12.2968 6.90847 11.7032 7.27459 11.3371C7.6407 10.971 8.2343 10.971 8.60041 11.3371L10.7308 13.4675L15.3809 8.54379C15.7364 8.16737 16.3298 8.15042 16.7062 8.50593Z' fill='white'/%3E%3C/svg%3E%0A");
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.vitro-label {
|
|
42
|
+
color: #222D44;
|
|
43
|
+
font-size: 14px;
|
|
44
|
+
line-height: 135%;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.vitro-left-label {
|
|
48
|
+
display: flex;
|
|
49
|
+
align-items: center;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.vitro-left-label .vitro-label {
|
|
53
|
+
margin-right: 6px;
|
|
54
|
+
}
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
.vitro-read-only :global(.k-picker-wrap .k-select) {
|
|
64
|
-
display: none;
|
|
64
|
+
display: none !important;
|
|
65
65
|
}
|
|
66
66
|
|
|
67
67
|
.vitro-error .vitro-label {
|
|
@@ -89,12 +89,16 @@
|
|
|
89
89
|
}
|
|
90
90
|
|
|
91
91
|
.vitro-error-text {
|
|
92
|
-
display:
|
|
93
|
-
align
|
|
92
|
+
display: inline-block;
|
|
93
|
+
vertical-align: text-top;
|
|
94
94
|
color: #D13438;
|
|
95
95
|
font-size: 14px;
|
|
96
96
|
line-height: 135%;
|
|
97
97
|
margin-top: 2px;
|
|
98
|
+
width: 100%;
|
|
99
|
+
text-overflow: ellipsis;
|
|
100
|
+
white-space: nowrap;
|
|
101
|
+
overflow: hidden;
|
|
98
102
|
}
|
|
99
103
|
|
|
100
104
|
.vitro-focus .vitro-error-text {
|
|
@@ -104,8 +108,11 @@
|
|
|
104
108
|
.vitro-error-text::before {
|
|
105
109
|
content: '';
|
|
106
110
|
display: inline-block;
|
|
111
|
+
vertical-align: text-top;
|
|
107
112
|
height: 16px;
|
|
108
113
|
width: 16px;
|
|
114
|
+
min-width: 16px;
|
|
115
|
+
min-height: 16px;
|
|
109
116
|
margin-right: 4px;
|
|
110
117
|
background-size: 100%;
|
|
111
118
|
background-position: center;
|
|
@@ -159,8 +166,11 @@
|
|
|
159
166
|
}
|
|
160
167
|
|
|
161
168
|
:global(.k-i-calendar) {
|
|
162
|
-
|
|
163
|
-
|
|
169
|
+
height: 20px !important;
|
|
170
|
+
width: 20px !important;
|
|
171
|
+
display: flex !important;
|
|
172
|
+
align-items: center;
|
|
173
|
+
justify-content: center;
|
|
164
174
|
}
|
|
165
175
|
|
|
166
176
|
:global(.k-i-calendar)::before {
|
|
@@ -172,7 +182,7 @@
|
|
|
172
182
|
background-size: 100%;
|
|
173
183
|
background-position: center;
|
|
174
184
|
/* date-picker.svg URL-encoder for SVG */
|
|
175
|
-
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0
|
|
185
|
+
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Vector'%3E%3Cpath d='M12.1216 8.06594C12.1725 8.11674 12.2129 8.17709 12.2405 8.24353C12.268 8.30997 12.2822 8.38119 12.2822 8.45312C12.2822 8.52506 12.268 8.59628 12.2405 8.66272C12.2129 8.72916 12.1725 8.78951 12.1216 8.84031L8.84031 12.1216C8.78951 12.1725 8.72916 12.2129 8.66272 12.2405C8.59628 12.268 8.52506 12.2822 8.45312 12.2822C8.38119 12.2822 8.30997 12.268 8.24353 12.2405C8.17709 12.2129 8.11674 12.1725 8.06594 12.1216L6.42531 10.4809C6.37447 10.4301 6.33413 10.3697 6.30661 10.3033C6.2791 10.2369 6.26493 10.1657 6.26493 10.0938C6.26493 10.0218 6.2791 9.95064 6.30661 9.88421C6.33413 9.81777 6.37447 9.75741 6.42531 9.70656C6.528 9.60387 6.66728 9.54618 6.8125 9.54618C6.88441 9.54618 6.95561 9.56035 7.02204 9.58786C7.08848 9.61538 7.14884 9.65572 7.19969 9.70656L8.45312 10.9611L11.3472 8.06594C11.398 8.01501 11.4583 7.9746 11.5248 7.94703C11.5912 7.91946 11.6624 7.90527 11.7344 7.90527C11.8063 7.90527 11.8775 7.91946 11.944 7.94703C12.0104 7.9746 12.0708 8.01501 12.1216 8.06594Z' fill='%234A556C'/%3E%3Cpath d='M4.07812 0.25C4.22317 0.25 4.36227 0.307617 4.46482 0.410176C4.56738 0.512735 4.625 0.651835 4.625 0.796875V1.34375H13.375V0.796875C13.375 0.651835 13.4326 0.512735 13.5352 0.410176C13.6377 0.307617 13.7768 0.25 13.9219 0.25C14.0669 0.25 14.206 0.307617 14.3086 0.410176C14.4111 0.512735 14.4688 0.651835 14.4688 0.796875V1.34375H15.5625C16.1427 1.34375 16.6991 1.57422 17.1093 1.98445C17.5195 2.39469 17.75 2.95109 17.75 3.53125V15.5625C17.75 16.1427 17.5195 16.6991 17.1093 17.1093C16.6991 17.5195 16.1427 17.75 15.5625 17.75H2.4375C1.85734 17.75 1.30094 17.5195 0.890704 17.1093C0.480468 16.6991 0.25 16.1427 0.25 15.5625V3.53125C0.25 2.95109 0.480468 2.39469 0.890704 1.98445C1.30094 1.57422 1.85734 1.34375 2.4375 1.34375H3.53125V0.796875C3.53125 0.651835 3.58887 0.512735 3.69143 0.410176C3.79398 0.307617 3.93308 0.25 4.07812 0.25ZM1.34375 4.625V15.5625C1.34375 15.8526 1.45898 16.1308 1.6641 16.3359C1.86922 16.541 2.14742 16.6562 2.4375 16.6562H15.5625C15.8526 16.6562 16.1308 16.541 16.3359 16.3359C16.541 16.1308 16.6562 15.8526 16.6562 15.5625V4.625H1.34375Z' fill='%234A556C'/%3E%3C/g%3E%3C/svg%3E%0A");
|
|
176
186
|
}
|
|
177
187
|
|
|
178
188
|
:global(.k-picker-wrap.k-state-default > .k-select) {
|
|
@@ -106,12 +106,15 @@
|
|
|
106
106
|
}
|
|
107
107
|
|
|
108
108
|
.vitro-error-text {
|
|
109
|
-
display:
|
|
110
|
-
align-items: center;
|
|
109
|
+
display: inline-block;
|
|
111
110
|
color: #D13438;
|
|
112
111
|
font-size: 14px;
|
|
113
112
|
line-height: 135%;
|
|
114
113
|
margin-top: 2px;
|
|
114
|
+
width: 100%;
|
|
115
|
+
text-overflow: ellipsis;
|
|
116
|
+
white-space: nowrap;
|
|
117
|
+
overflow: hidden;
|
|
115
118
|
}
|
|
116
119
|
|
|
117
120
|
.vitro-focus .vitro-error-text {
|
|
@@ -121,8 +124,11 @@
|
|
|
121
124
|
.vitro-error-text::before {
|
|
122
125
|
content: '';
|
|
123
126
|
display: inline-block;
|
|
127
|
+
vertical-align: text-top;
|
|
124
128
|
height: 16px;
|
|
125
129
|
width: 16px;
|
|
130
|
+
min-width: 16px;
|
|
131
|
+
min-height: 16px;
|
|
126
132
|
margin-right: 4px;
|
|
127
133
|
background-size: 100%;
|
|
128
134
|
background-position: center;
|
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
.vitro-label {
|
|
2
2
|
font-size: inherit;
|
|
3
3
|
margin-left: 0;
|
|
4
|
+
display: inline-block;
|
|
5
|
+
white-space: nowrap;
|
|
6
|
+
text-overflow: ellipsis;
|
|
7
|
+
overflow: hidden;
|
|
8
|
+
max-width: calc(100% - 20px);
|
|
4
9
|
}
|
|
5
10
|
|
|
6
11
|
.vitro-label .vitro-required {
|
|
7
12
|
color: red;
|
|
13
|
+
margin-left: 2px;
|
|
8
14
|
}
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
border-radius: 4px;
|
|
9
9
|
display: flex;
|
|
10
10
|
width: 100%;
|
|
11
|
-
flex-wrap:
|
|
11
|
+
flex-wrap: nowrap;
|
|
12
12
|
align-items: center;
|
|
13
13
|
height: 40px;
|
|
14
14
|
padding: 8px 32px 8px 16px;
|
|
@@ -52,12 +52,16 @@
|
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
.vitro-error-text {
|
|
55
|
-
display:
|
|
55
|
+
display: inline-block;
|
|
56
56
|
align-items: center;
|
|
57
57
|
color: #D13438;
|
|
58
58
|
font-size: 14px;
|
|
59
59
|
line-height: 135%;
|
|
60
60
|
margin-top: 2px;
|
|
61
|
+
width: 100%;
|
|
62
|
+
text-overflow: ellipsis;
|
|
63
|
+
white-space: nowrap;
|
|
64
|
+
overflow: hidden;
|
|
61
65
|
}
|
|
62
66
|
|
|
63
67
|
.vitro-focus .vitro-error-text {
|
|
@@ -67,8 +71,11 @@
|
|
|
67
71
|
.vitro-error-text::before {
|
|
68
72
|
content: '';
|
|
69
73
|
display: inline-block;
|
|
74
|
+
vertical-align: text-top;
|
|
70
75
|
height: 16px;
|
|
71
76
|
width: 16px;
|
|
77
|
+
min-width: 16px;
|
|
78
|
+
min-height: 16px;
|
|
72
79
|
margin-right: 4px;
|
|
73
80
|
background-size: 100%;
|
|
74
81
|
background-position: center;
|
|
@@ -80,7 +87,7 @@
|
|
|
80
87
|
width: 20px;
|
|
81
88
|
display: inline-block;
|
|
82
89
|
right: 0;
|
|
83
|
-
/* copy.svg URL-encoder for SVG */
|
|
90
|
+
/* copy.svg URL-encoder for SVG */
|
|
84
91
|
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='copy-icon'%3E%3Cpath id='Vector' d='M4.33594 4.14517V3.27214C4.33594 2.0877 4.75567 1.66797 5.9401 1.66797H12.7318C13.9162 1.66797 14.3359 2.0877 14.3359 3.27214V10.0638C14.3359 11.2482 13.9162 11.668 12.7318 11.668H11.8414' stroke='%238E98A3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath id='Vector_2' d='M10.0599 4.33203H3.26823C2.0838 4.33203 1.66406 4.75176 1.66406 5.9362V12.7279C1.66406 13.9123 2.0838 14.332 3.26823 14.332H10.0599C11.2443 14.332 11.6641 13.9123 11.6641 12.7279V5.9362C11.6641 4.75176 11.2443 4.33203 10.0599 4.33203Z' stroke='%238E98A3' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E%0A");
|
|
85
92
|
background-repeat: no-repeat;
|
|
86
93
|
background-position: center;
|
|
@@ -1,11 +1,3 @@
|
|
|
1
|
-
.vitro-active {
|
|
2
|
-
background-color: #DCEEFF;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
ul > li:last-child > ul > li:last-child .vitro-active {
|
|
6
|
-
background-color: transparent;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
1
|
.vitro-icon-text {
|
|
10
2
|
display: none;
|
|
11
3
|
color: #222D44;
|
|
@@ -21,6 +13,18 @@ ul > li:last-child > ul > li:last-child .vitro-active {
|
|
|
21
13
|
display: none;
|
|
22
14
|
}
|
|
23
15
|
|
|
16
|
+
.vitro-active {
|
|
17
|
+
background-color: #DCEEFF;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.vitro-hover .vitro-icon-text {
|
|
21
|
+
color: #326AD6;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
ul > li:last-child > ul > li:last-child .vitro-active {
|
|
25
|
+
background-color: transparent;
|
|
26
|
+
}
|
|
27
|
+
|
|
24
28
|
.vitro-active .vitro-icon-text,
|
|
25
29
|
.vitro-active .vitro-item-text {
|
|
26
30
|
color: #326AD6;
|
|
@@ -54,10 +58,6 @@ ul > li:last-child > ul > li:last-child .vitro-active {
|
|
|
54
58
|
display: block;
|
|
55
59
|
}
|
|
56
60
|
|
|
57
|
-
.vitro-active {
|
|
58
|
-
background-color: #DCEEFF;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
61
|
:global(.vitro-bottom-menu) .vitro-item-text {
|
|
62
62
|
display: block;
|
|
63
63
|
color: #4A556C;
|
|
@@ -20,7 +20,11 @@
|
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
.vitro-tab :global(.ps) > div:first-child {
|
|
23
|
-
padding:
|
|
23
|
+
padding: 30px 16px 0 16px;
|
|
24
|
+
display: flex;
|
|
25
|
+
flex-wrap: wrap;
|
|
26
|
+
grid-gap: 0 16px;
|
|
27
|
+
align-content: flex-start;
|
|
24
28
|
}
|
|
25
29
|
|
|
26
30
|
.vitro-tab :global(.nav) :global(.dropdown-menu) {
|
|
@@ -80,6 +80,10 @@
|
|
|
80
80
|
font-weight: unset;
|
|
81
81
|
}
|
|
82
82
|
|
|
83
|
+
.TWHeaderText {
|
|
84
|
+
color: #4A556C !important;
|
|
85
|
+
}
|
|
86
|
+
|
|
83
87
|
.TWInt, .TWFloat, .TWDate {
|
|
84
88
|
text-align: unset;
|
|
85
89
|
}
|
|
@@ -123,9 +127,9 @@
|
|
|
123
127
|
background: #fff !important;
|
|
124
128
|
}
|
|
125
129
|
|
|
126
|
-
.
|
|
130
|
+
.TWCursorBackground {
|
|
127
131
|
background: #0085FF !important;
|
|
128
|
-
opacity: 0.
|
|
132
|
+
opacity: 0.136 !important;
|
|
129
133
|
}
|
|
130
134
|
|
|
131
135
|
.TWMenuMain {
|
|
@@ -525,10 +529,6 @@
|
|
|
525
529
|
text-align: center;
|
|
526
530
|
}
|
|
527
531
|
|
|
528
|
-
.TWFocusRowBackground {
|
|
529
|
-
background: #0083ff !important;
|
|
530
|
-
}
|
|
531
|
-
|
|
532
532
|
.TWFilter0Value u.TWFilter1, .TWFilter0Value u.TWFilter0,
|
|
533
533
|
.TWCellHeaderPanel .TWPanelDelete {
|
|
534
534
|
display: none;
|
|
@@ -97,12 +97,16 @@
|
|
|
97
97
|
}
|
|
98
98
|
|
|
99
99
|
.vitro-error-text {
|
|
100
|
-
display:
|
|
100
|
+
display: inline-block;
|
|
101
101
|
align-items: center;
|
|
102
102
|
color: #D13438;
|
|
103
103
|
font-size: 14px;
|
|
104
104
|
line-height: 135%;
|
|
105
105
|
margin-top: 2px;
|
|
106
|
+
width: 100%;
|
|
107
|
+
text-overflow: ellipsis;
|
|
108
|
+
white-space: nowrap;
|
|
109
|
+
overflow: hidden;
|
|
106
110
|
}
|
|
107
111
|
|
|
108
112
|
.vitro-focus .vitro-error-text {
|
|
@@ -112,8 +116,11 @@
|
|
|
112
116
|
.vitro-error-text::before {
|
|
113
117
|
content: '';
|
|
114
118
|
display: inline-block;
|
|
119
|
+
vertical-align: text-top;
|
|
115
120
|
height: 16px;
|
|
116
121
|
width: 16px;
|
|
122
|
+
min-width: 16px;
|
|
123
|
+
min-height: 16px;
|
|
117
124
|
margin-right: 4px;
|
|
118
125
|
background-size: 100%;
|
|
119
126
|
background-position: center;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
bottom: 24px;
|
|
3
3
|
right: 24px;
|
|
4
4
|
position: absolute;
|
|
5
|
-
transition: all 1s ease;
|
|
5
|
+
transition: all 0.1s ease;
|
|
6
6
|
width: 241px;
|
|
7
7
|
height: 96px;
|
|
8
8
|
z-index: 10000000000000;
|
|
@@ -261,9 +261,9 @@
|
|
|
261
261
|
background-repeat: no-repeat;
|
|
262
262
|
border: none;
|
|
263
263
|
outline: none;
|
|
264
|
-
width:
|
|
265
|
-
height:
|
|
266
|
-
top:
|
|
264
|
+
width: 24px;
|
|
265
|
+
height: 24px;
|
|
266
|
+
top: 12px;
|
|
267
267
|
}
|
|
268
268
|
|
|
269
269
|
.vitro-uploader .vitro-button-close {
|
|
@@ -274,14 +274,14 @@
|
|
|
274
274
|
|
|
275
275
|
.vitro-button-show {
|
|
276
276
|
/* show.svg URL-encoder for SVG */
|
|
277
|
-
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0
|
|
278
|
-
right:
|
|
277
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect width='24' height='24' rx='4' transform='matrix(0 1 1 0 0 0)' fill='white'/%3E%3Cpath d='M20 15L12 7L4 15' stroke='%234A556C' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
278
|
+
right: 48px;
|
|
279
279
|
}
|
|
280
280
|
|
|
281
281
|
.vitro-button-hide {
|
|
282
282
|
/* hide.svg URL-encoder for SVG */
|
|
283
|
-
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0
|
|
284
|
-
right:
|
|
283
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect width='24' height='24' rx='4' transform='matrix(1.19249e-08 -1 -1 -1.19249e-08 24 24)' fill='white'/%3E%3Cpath d='M4 9L12 17L20 9' stroke='%234A556C' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
284
|
+
right: 48px;
|
|
285
285
|
}
|
|
286
286
|
|
|
287
287
|
.vitro-uploader :global(.k-upload .k-dropzone .k-upload-status) {
|
|
@@ -398,7 +398,8 @@
|
|
|
398
398
|
|
|
399
399
|
.vitro-uploader :global(#vitro-uploader-title) {
|
|
400
400
|
display: flex;
|
|
401
|
-
width:
|
|
401
|
+
width: fit-content;
|
|
402
|
+
max-width: 80%;
|
|
402
403
|
align-items: center;
|
|
403
404
|
justify-content: space-between;
|
|
404
405
|
font-family: 'InterMedium';
|
|
@@ -414,6 +415,7 @@
|
|
|
414
415
|
display: inline-block !important;
|
|
415
416
|
width: 24px;
|
|
416
417
|
height: 24px;
|
|
418
|
+
margin-left: 12px;
|
|
417
419
|
background-position: center;
|
|
418
420
|
background-size: 100%;
|
|
419
421
|
display: none;
|
|
@@ -423,7 +425,6 @@
|
|
|
423
425
|
|
|
424
426
|
.vitro-uploader :global(.vitro-upload-complete) :global(#vitro-uploader-title) {
|
|
425
427
|
display: flex;
|
|
426
|
-
width: 176px;
|
|
427
428
|
align-items: center;
|
|
428
429
|
justify-content: space-between;
|
|
429
430
|
margin-bottom: 0;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
.vitro-title {
|
|
2
|
+
color: #bdbdbd;
|
|
3
|
+
padding: 12px 0 6px 0;
|
|
4
|
+
text-align: center;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.vitro-title > h3 {
|
|
8
|
+
text-transform: uppercase;
|
|
9
|
+
font-size: 12pt;
|
|
10
|
+
margin: 4px 0 2px 0;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.vitro-dropdown-button {
|
|
14
|
+
position: absolute;
|
|
15
|
+
right: 0;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.vitro-activity :global(.preview-roller-wrapper) {
|
|
19
|
+
height: 100px;
|
|
20
|
+
position: relative;
|
|
21
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
.vitro-item {
|
|
2
|
+
margin: 4px 0 0 0;
|
|
3
|
+
min-height: 32px;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.vitro-item.vitro-active {
|
|
7
|
+
background: #F5F6FA;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.vitro-item > :global(.vitro-flex) {
|
|
11
|
+
width: 100%;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.vitro-title span {
|
|
15
|
+
color: #222d44;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.vitro-due-date {
|
|
19
|
+
font-size: 8pt;
|
|
20
|
+
color: #bdbdbd;
|
|
21
|
+
float: right;
|
|
22
|
+
white-space: nowrap;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.vitro-content {
|
|
26
|
+
margin-top: -1px;
|
|
27
|
+
width: 100%;
|
|
28
|
+
display: flex;
|
|
29
|
+
justify-content: space-between;
|
|
30
|
+
align-items: center;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.vitro-content p {
|
|
34
|
+
margin-block-start: 0px;
|
|
35
|
+
margin-block-end: 0px;
|
|
36
|
+
margin-bottom: 0px;
|
|
37
|
+
color: #bdbdbd;
|
|
38
|
+
font-size: 9pt;
|
|
39
|
+
line-height: 14px;
|
|
40
|
+
margin-top: 3px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.vitro-content p span {
|
|
44
|
+
font-size: 9pt !important;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.vitro-content :global(.vitro-status-changed) {
|
|
48
|
+
font-style: normal;
|
|
49
|
+
color: #27AE60;
|
|
50
|
+
font-size: 9pt;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.vitro-message {
|
|
54
|
+
overflow-wrap: anywhere;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.vitro-message img {
|
|
58
|
+
max-width: calc(100% - 20px);
|
|
59
|
+
display: block;
|
|
60
|
+
margin: 4px 0;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.vitro-flex {
|
|
64
|
+
display: flex;
|
|
65
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { DropdownItem } from '../DropdownButton/DropdownItem';
|
|
3
|
+
interface ActivityProps {
|
|
4
|
+
title?: string;
|
|
5
|
+
filterDropdownList?: DropdownItem[];
|
|
6
|
+
children: React.ReactNode;
|
|
7
|
+
}
|
|
8
|
+
export declare const Activity: (props: ActivityProps) => JSX.Element;
|
|
9
|
+
export {};
|