@colijnit/sharedcomponents 255.1.15 → 255.1.17
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/lib/components/access/style/_layout.scss +16 -14
- package/lib/components/activity-list-header/components/period-filter/style/_layout.scss +4 -4
- package/lib/components/activity-list-header/style/_layout.scss +1 -1
- package/lib/components/activity-overview-component/style/_layout.scss +1 -1
- package/lib/components/app-file-dropzone/style/_layout.scss +1 -1
- package/lib/components/file-upload/style/_layout.scss +2 -2
- package/lib/components/modify-task-form/components/activity-summary-block/style/_layout.scss +113 -100
- package/lib/components/modify-task-form/components/notification-summary-block/style/_layout.scss +110 -98
- package/lib/components/modify-task-form/components/status-summary-block/style/_layout.scss +2 -2
- package/lib/components/modify-task-form/components/task-details/style/_layout.scss +6 -6
- package/lib/components/modify-task-form/style/_layout.scss +5 -5
- package/lib/components/open-activity-list/components/personal-activity-overview/style/_layout.scss +2 -2
- package/lib/components/stock/style/_layout.scss +2 -2
- package/package.json +1 -1
- package/3rdpartylicenses.txt +0 -1405
- package/favicon.ico +0 -0
- package/index.html +0 -12
- package/main.a44fb262c84ddaedcaa8.js +0 -1
- package/polyfills.907fe9d1887c5de17993.js +0 -1
- package/runtime.8aac21847ed3d3829cca.js +0 -1
- package/styles.148f8e42f62a8231d70c.css +0 -1
|
@@ -1,22 +1,24 @@
|
|
|
1
1
|
@include export-module('co-read-write-access-layout') {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
.co-read-write-access {
|
|
3
|
+
h4 {
|
|
4
|
+
margin: 10px 0;
|
|
5
|
+
}
|
|
5
6
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
.horizontal-layout-column {
|
|
8
|
+
display: flex;
|
|
9
|
+
padding-top: 10px;
|
|
10
|
+
padding-bottom: 10px;
|
|
10
11
|
|
|
11
|
-
|
|
12
|
-
|
|
12
|
+
input-lov-multi-select {
|
|
13
|
+
width: 50%;
|
|
13
14
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
&:first-child {
|
|
16
|
+
padding-right: 10px;
|
|
17
|
+
}
|
|
17
18
|
|
|
18
|
-
|
|
19
|
-
|
|
19
|
+
&:last-child {
|
|
20
|
+
padding-left: 10px;
|
|
21
|
+
}
|
|
20
22
|
}
|
|
21
23
|
}
|
|
22
24
|
}
|
|
@@ -17,14 +17,14 @@
|
|
|
17
17
|
//.current-filter {
|
|
18
18
|
// color: $color-action;
|
|
19
19
|
//}
|
|
20
|
-
|
|
20
|
+
#period_filter_dropdown_template {
|
|
21
21
|
overflow: hidden;
|
|
22
22
|
display: block;
|
|
23
23
|
width: 300px;
|
|
24
24
|
border-radius: 5px;
|
|
25
25
|
background: white;
|
|
26
26
|
box-shadow: 1px 1px 10px 1px rgba(72,79,96,.25);
|
|
27
|
-
|
|
27
|
+
.label {
|
|
28
28
|
font-weight: bold;
|
|
29
29
|
height: 50px;
|
|
30
30
|
display: flex;
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
font-size: 13px;
|
|
33
33
|
padding: 0 10px;
|
|
34
34
|
}
|
|
35
|
-
|
|
35
|
+
.item {
|
|
36
36
|
cursor: pointer;
|
|
37
37
|
height: 50px;
|
|
38
38
|
display: flex;
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
&:hover {
|
|
49
49
|
background-color: #8faba6;
|
|
50
50
|
color: white;
|
|
51
|
-
|
|
51
|
+
.co-icon {
|
|
52
52
|
[fill] {
|
|
53
53
|
fill: white;
|
|
54
54
|
}
|
package/lib/components/modify-task-form/components/activity-summary-block/style/_layout.scss
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
@include export-module('co-activity-summary-block-layout') {
|
|
2
|
-
.co-activity-summary-block{
|
|
2
|
+
.co-activity-summary-block {
|
|
3
3
|
height: auto;
|
|
4
4
|
display: flex;
|
|
5
5
|
flex-direction: column;
|
|
6
|
+
|
|
6
7
|
&:not(.no-border) {
|
|
7
8
|
border: 1px solid #DCE4EA;
|
|
8
9
|
}
|
|
10
|
+
|
|
9
11
|
.left-seperator {
|
|
10
12
|
&:before {
|
|
11
13
|
content: "|";
|
|
@@ -22,126 +24,137 @@
|
|
|
22
24
|
width: 100%;
|
|
23
25
|
height: 100%;
|
|
24
26
|
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
27
|
+
|
|
28
|
+
.image-display {
|
|
29
|
+
height: 70px;
|
|
30
|
+
width: 70px;
|
|
31
|
+
|
|
32
|
+
span {
|
|
33
|
+
display: none;
|
|
34
|
+
}
|
|
31
35
|
}
|
|
32
|
-
}
|
|
33
36
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
flex-shrink: 0;
|
|
37
|
-
align-items: center;
|
|
38
|
-
justify-content: center;
|
|
39
|
-
background: #F8FBFA;
|
|
40
|
-
height: 70px;
|
|
41
|
-
width: 70px;
|
|
42
|
-
border-radius: 50%;
|
|
43
|
-
border: 1px solid #DCE4EA;
|
|
44
|
-
overflow: hidden;
|
|
45
|
-
::ng-deep icon {
|
|
46
|
-
height: 60px !important;
|
|
47
|
-
width: 60px !important;
|
|
37
|
+
.icon-wrapper {
|
|
38
|
+
display: flex;
|
|
48
39
|
flex-shrink: 0;
|
|
40
|
+
align-items: center;
|
|
41
|
+
justify-content: center;
|
|
42
|
+
background: #F8FBFA;
|
|
43
|
+
height: 70px;
|
|
44
|
+
width: 70px;
|
|
45
|
+
border-radius: 50%;
|
|
46
|
+
border: 1px solid #DCE4EA;
|
|
47
|
+
overflow: hidden;
|
|
48
|
+
|
|
49
|
+
.co-icon {
|
|
50
|
+
height: 60px;
|
|
51
|
+
width: 60px;
|
|
52
|
+
flex-shrink: 0;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
&.small {
|
|
56
|
+
height: 50px;
|
|
57
|
+
width: 50px;
|
|
58
|
+
|
|
59
|
+
.co-icon {
|
|
60
|
+
height: 40px;
|
|
61
|
+
width: 40px;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
49
64
|
}
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
65
|
+
|
|
66
|
+
.block-wrapper {
|
|
67
|
+
position: relative;
|
|
68
|
+
display: flex;
|
|
69
|
+
align-items: center;
|
|
70
|
+
|
|
71
|
+
.expandable-wrapper {
|
|
72
|
+
position: absolute;
|
|
73
|
+
bottom: 0;
|
|
74
|
+
left: 50%;
|
|
75
|
+
transform: translateX(-50%);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.template-wrapper {
|
|
79
|
+
& > * {
|
|
80
|
+
display: flex;
|
|
81
|
+
flex-direction: column;
|
|
82
|
+
gap: 5px;
|
|
83
|
+
}
|
|
84
|
+
|
|
56
85
|
}
|
|
57
86
|
}
|
|
58
|
-
}
|
|
59
87
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
transform: translateX(-50%);
|
|
88
|
+
.content-wrapper {
|
|
89
|
+
display: flex;
|
|
90
|
+
flex-direction: column;
|
|
91
|
+
justify-content: space-between;
|
|
92
|
+
margin-left: 10px;
|
|
93
|
+
min-height: 70px;
|
|
94
|
+
height: auto;
|
|
95
|
+
width: 100%;
|
|
69
96
|
}
|
|
70
|
-
.template-wrapper {
|
|
71
|
-
& > * {
|
|
72
|
-
display: flex;
|
|
73
|
-
flex-direction: column;
|
|
74
|
-
gap: 5px;
|
|
75
|
-
}
|
|
76
97
|
|
|
98
|
+
.value {
|
|
99
|
+
font-size: 13px;
|
|
100
|
+
font-weight: bold;
|
|
101
|
+
color: #171721;
|
|
102
|
+
align-items: center;
|
|
77
103
|
}
|
|
78
|
-
}
|
|
79
104
|
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
min-height: 70px;
|
|
86
|
-
height: auto;
|
|
87
|
-
width: 100%;
|
|
88
|
-
}
|
|
105
|
+
.title {
|
|
106
|
+
font-size: 11px;
|
|
107
|
+
line-height: 13px;
|
|
108
|
+
color: #171721;
|
|
109
|
+
}
|
|
89
110
|
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
111
|
+
.activity-summary-block-edit-template {
|
|
112
|
+
display: flex;
|
|
113
|
+
width: 100%;
|
|
114
|
+
flex-direction: column;
|
|
115
|
+
justify-content: space-between;
|
|
116
|
+
z-index: 9000;
|
|
117
|
+
max-height: 100%;
|
|
96
118
|
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
color: #171721;
|
|
101
|
-
}
|
|
119
|
+
.template-wrapper {
|
|
120
|
+
margin-bottom: 10px;
|
|
121
|
+
}
|
|
102
122
|
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
flex-direction: column;
|
|
107
|
-
justify-content: space-between;
|
|
108
|
-
z-index: 9000;
|
|
109
|
-
max-height: 100%;
|
|
123
|
+
.co-form {
|
|
124
|
+
co-list-of-values {
|
|
125
|
+
margin-bottom: 5px;
|
|
110
126
|
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
::ng-deep co-form {
|
|
115
|
-
co-list-of-values {
|
|
116
|
-
margin-bottom: 5px;
|
|
117
|
-
&:before {
|
|
118
|
-
box-shadow: none;
|
|
127
|
+
&:before {
|
|
128
|
+
box-shadow: none;
|
|
129
|
+
}
|
|
119
130
|
}
|
|
120
131
|
}
|
|
132
|
+
|
|
133
|
+
.title-wrapper {
|
|
134
|
+
align-items: center;
|
|
135
|
+
margin-bottom: 10px;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
h3:not(.no-margin) {
|
|
139
|
+
margin-top: 25px;
|
|
140
|
+
}
|
|
121
141
|
}
|
|
122
|
-
.title-wrapper {
|
|
123
|
-
align-items: center;
|
|
124
|
-
margin-bottom: 10px;
|
|
125
|
-
}
|
|
126
|
-
::ng-deep h3:not(.no-margin) {
|
|
127
|
-
margin-top: 25px;
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
142
|
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
143
|
+
.collapseable-wrapper {
|
|
144
|
+
padding: 10px;
|
|
145
|
+
border-bottom: 1px solid #DCE4EA;
|
|
146
|
+
}
|
|
135
147
|
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
148
|
+
.input-date-window {
|
|
149
|
+
z-index: 9001;
|
|
150
|
+
}
|
|
139
151
|
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
152
|
+
.initial {
|
|
153
|
+
position: initial;
|
|
154
|
+
}
|
|
143
155
|
|
|
144
|
-
|
|
145
|
-
|
|
156
|
+
.center {
|
|
157
|
+
justify-content: center;
|
|
158
|
+
}
|
|
146
159
|
}
|
|
147
160
|
}
|
package/lib/components/modify-task-form/components/notification-summary-block/style/_layout.scss
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
.value {
|
|
5
5
|
flex-wrap: wrap;
|
|
6
6
|
}
|
|
7
|
+
|
|
7
8
|
.notification-email {
|
|
8
9
|
display: flex;
|
|
9
10
|
flex-shrink: 0;
|
|
@@ -16,9 +17,11 @@
|
|
|
16
17
|
height: auto;
|
|
17
18
|
display: flex;
|
|
18
19
|
flex-direction: column;
|
|
20
|
+
|
|
19
21
|
&:not(.no-border) {
|
|
20
22
|
border: 1px solid $color_border;
|
|
21
23
|
}
|
|
24
|
+
|
|
22
25
|
.left-seperator {
|
|
23
26
|
&:before {
|
|
24
27
|
content: "|";
|
|
@@ -36,126 +39,135 @@
|
|
|
36
39
|
height: 100%;
|
|
37
40
|
}
|
|
38
41
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
::ng-deep image-display {
|
|
42
|
-
height: $block_content_height;
|
|
43
|
-
width: $block_content_height;
|
|
44
|
-
span {
|
|
45
|
-
display: none;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
.icon-wrapper {
|
|
49
|
-
display: flex;
|
|
50
|
-
flex-shrink: 0;
|
|
51
|
-
align-items: center;
|
|
52
|
-
justify-content: center;
|
|
53
|
-
background: #F8FBFA;
|
|
42
|
+
.image-display {
|
|
54
43
|
height: $block_content_height;
|
|
55
44
|
width: $block_content_height;
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
45
|
+
|
|
46
|
+
span {
|
|
47
|
+
display: none;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.icon-wrapper {
|
|
51
|
+
display: flex;
|
|
62
52
|
flex-shrink: 0;
|
|
53
|
+
align-items: center;
|
|
54
|
+
justify-content: center;
|
|
55
|
+
background: #F8FBFA;
|
|
56
|
+
height: $block_content_height;
|
|
57
|
+
width: $block_content_height;
|
|
58
|
+
border-radius: 50%;
|
|
59
|
+
border: 1px solid $color_border;
|
|
60
|
+
overflow: hidden;
|
|
61
|
+
|
|
62
|
+
.co-icon {
|
|
63
|
+
height: 60px;
|
|
64
|
+
width: 60px;
|
|
65
|
+
flex-shrink: 0;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
&.small {
|
|
69
|
+
height: 50px;
|
|
70
|
+
width: 50px;
|
|
71
|
+
|
|
72
|
+
.co-icon {
|
|
73
|
+
height: 40px;
|
|
74
|
+
width: 40px;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
63
77
|
}
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
.block-wrapper {
|
|
81
|
+
position: relative;
|
|
82
|
+
display: flex;
|
|
83
|
+
align-items: center;
|
|
84
|
+
|
|
85
|
+
.expandable-wrapper {
|
|
86
|
+
position: absolute;
|
|
87
|
+
bottom: 0;
|
|
88
|
+
left: 50%;
|
|
89
|
+
transform: translateX(-50%);
|
|
70
90
|
}
|
|
71
91
|
}
|
|
72
|
-
}
|
|
73
92
|
|
|
93
|
+
.content-wrapper {
|
|
94
|
+
display: flex;
|
|
95
|
+
flex-direction: column;
|
|
96
|
+
justify-content: space-between;
|
|
97
|
+
margin-left: 10px;
|
|
98
|
+
min-height: $block_content_height;
|
|
99
|
+
height: auto;
|
|
100
|
+
width: 100%;
|
|
101
|
+
}
|
|
74
102
|
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
position: absolute;
|
|
81
|
-
bottom: 0;
|
|
82
|
-
left: 50%;
|
|
83
|
-
transform: translateX(-50%);
|
|
103
|
+
.value {
|
|
104
|
+
font-size: 13px;
|
|
105
|
+
font-weight: bold;
|
|
106
|
+
color: $color-dark;
|
|
107
|
+
align-items: center;
|
|
84
108
|
}
|
|
85
|
-
}
|
|
86
109
|
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
min-height: $block_content_height;
|
|
93
|
-
height: auto;
|
|
94
|
-
width: 100%;
|
|
95
|
-
}
|
|
110
|
+
.title {
|
|
111
|
+
font-size: 11px;
|
|
112
|
+
line-height: 13px;
|
|
113
|
+
color: $color-label;
|
|
114
|
+
}
|
|
96
115
|
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
116
|
+
.activity-summary-block-edit-template {
|
|
117
|
+
display: flex;
|
|
118
|
+
width: 100%;
|
|
119
|
+
flex-direction: column;
|
|
120
|
+
justify-content: space-between;
|
|
121
|
+
z-index: 9000;
|
|
122
|
+
max-height: 100%;
|
|
103
123
|
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
color: $color-label;
|
|
108
|
-
}
|
|
124
|
+
.template-wrapper {
|
|
125
|
+
margin-bottom: 10px;
|
|
126
|
+
}
|
|
109
127
|
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
flex-direction: column;
|
|
114
|
-
justify-content: space-between;
|
|
115
|
-
z-index: 9000;
|
|
116
|
-
max-height: 100%;
|
|
128
|
+
.co-form {
|
|
129
|
+
co-list-of-values {
|
|
130
|
+
margin-bottom: 5px;
|
|
117
131
|
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
::ng-deep co-form {
|
|
122
|
-
co-list-of-values {
|
|
123
|
-
margin-bottom: 5px;
|
|
124
|
-
&:before {
|
|
125
|
-
box-shadow: none;
|
|
132
|
+
&:before {
|
|
133
|
+
box-shadow: none;
|
|
134
|
+
}
|
|
126
135
|
}
|
|
127
136
|
}
|
|
137
|
+
|
|
138
|
+
.title-wrapper {
|
|
139
|
+
align-items: center;
|
|
140
|
+
margin-bottom: 10px;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
h3:not(.no-margin) {
|
|
144
|
+
margin-top: 25px;
|
|
145
|
+
}
|
|
128
146
|
}
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
::ng-deep h3:not(.no-margin) {
|
|
134
|
-
margin-top: 25px;
|
|
147
|
+
|
|
148
|
+
.collapseable-wrapper {
|
|
149
|
+
padding: 10px;
|
|
150
|
+
border-bottom: 1px solid $color_border;
|
|
135
151
|
}
|
|
136
|
-
}
|
|
137
152
|
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
}
|
|
153
|
+
.input-date-window {
|
|
154
|
+
z-index: 9001;
|
|
155
|
+
}
|
|
142
156
|
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
157
|
+
.initial {
|
|
158
|
+
position: initial;
|
|
159
|
+
}
|
|
146
160
|
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
161
|
+
.center {
|
|
162
|
+
justify-content: center;
|
|
163
|
+
}
|
|
150
164
|
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
gap: 5px;
|
|
158
|
-
align-items:flex-start;
|
|
165
|
+
.planning-row {
|
|
166
|
+
display: flex;
|
|
167
|
+
flex-direction: row;
|
|
168
|
+
gap: 5px;
|
|
169
|
+
align-items: flex-start;
|
|
170
|
+
}
|
|
159
171
|
}
|
|
160
172
|
}
|
|
161
173
|
}
|
|
@@ -14,14 +14,14 @@
|
|
|
14
14
|
margin-bottom: 15px;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
.form-input {
|
|
18
18
|
width: 100%;
|
|
19
19
|
}
|
|
20
20
|
.details-wrapper {
|
|
21
21
|
display: flex;
|
|
22
22
|
flex-direction: column;
|
|
23
23
|
gap: 5px;
|
|
24
|
-
|
|
24
|
+
.co-input-textarea {
|
|
25
25
|
textarea {
|
|
26
26
|
min-height: 150px;
|
|
27
27
|
}
|
|
@@ -29,15 +29,15 @@
|
|
|
29
29
|
box-shadow: none;
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
|
-
|
|
32
|
+
.co-input-text {
|
|
33
33
|
&:before {
|
|
34
34
|
box-shadow: none;
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
-
|
|
40
|
-
font-size: 17px
|
|
39
|
+
.arrow-link a {
|
|
40
|
+
font-size: 17px;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
.workflow-dropdown-wrapper {
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
color: #FFFFFF;
|
|
78
78
|
white-space: nowrap;
|
|
79
79
|
}
|
|
80
|
-
co-icon
|
|
80
|
+
.co-icon {
|
|
81
81
|
width: 10px;
|
|
82
82
|
height: 10px;
|
|
83
83
|
svg {
|