@alfresco/adf-content-services 8.4.0-19063861366 → 8.4.0-19066638615
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/fesm2022/adf-content-services.mjs +116 -116
- package/fesm2022/adf-content-services.mjs.map +1 -1
- package/lib/aspect-list/aspect-list-dialog.component.scss +7 -1
- package/lib/aspect-list/aspect-list.component.scss +9 -7
- package/lib/breadcrumb/breadcrumb.component.scss +22 -10
- package/lib/breadcrumb/dropdown-breadcrumb.component.scss +8 -5
- package/lib/category/categories-management/categories-management.component.scss +39 -3
- package/lib/content-metadata/components/content-metadata/content-metadata.component.scss +54 -4
- package/lib/content-metadata/components/content-metadata-card/content-metadata-card.component.scss +9 -0
- package/lib/content-node-selector/content-node-selector-panel/content-node-selector-panel.component.scss +61 -11
- package/lib/content-node-selector/content-node-selector.component.scss +46 -2
- package/lib/content-node-selector/name-location-cell/name-location-cell.component.scss +2 -2
- package/lib/content-node-share/content-node-share.dialog.scss +34 -11
- package/lib/content-type/content-type-dialog.component.scss +5 -3
- package/lib/dialogs/folder/folder.dialog.scss +22 -3
- package/lib/document-list/components/document-list.component.scss +39 -15
- package/lib/new-version-uploader/new-version-uploader.dialog.scss +9 -2
- package/lib/permission-manager/components/add-permission/add-permission-dialog.component.scss +31 -6
- package/lib/permission-manager/components/add-permission/add-permission-panel.component.scss +27 -5
- package/lib/permission-manager/components/add-permission/add-permission.component.scss +11 -0
- package/lib/permission-manager/components/permission-list/permission-list.component.scss +5 -2
- package/lib/permission-manager/components/user-icon-column/user-icon-column.component.scss +11 -6
- package/lib/permission-manager/components/user-name-column/user-name-column.component.scss +6 -2
- package/lib/search/components/search-chip-autocomplete-input/search-chip-autocomplete-input.component.scss +22 -10
- package/lib/search/components/search-chip-list/search-chip-list.component.scss +3 -3
- package/lib/search/components/search-control.component.scss +5 -4
- package/lib/search/components/search-facet-field/search-facet-field.component.scss +6 -4
- package/lib/search/components/search-filter/search-filter.component.scss +3 -3
- package/lib/search/components/search-filter-chips/search-filter-chips.component.scss +21 -7
- package/lib/search/components/search-filter-chips/search-filter-menu-card/search-filter-menu-card.component.scss +9 -1
- package/lib/search/components/search-filter-container/search-filter-container.component.scss +19 -6
- package/lib/search/components/search-filter-tabbed/search-filter-tabbed.component.scss +5 -1
- package/lib/search/components/search-form/search-form.component.scss +8 -3
- package/lib/search/components/search-logical-filter/search-logical-filter.component.scss +10 -0
- package/lib/search/components/search-sorting-picker/search-sorting-picker.component.scss +5 -0
- package/lib/tag/tag-actions/tag-actions.component.scss +1 -1
- package/lib/tag/tag-list/tag-list.component.scss +3 -3
- package/lib/tag/tags-creator/tags-creator.component.scss +19 -3
- package/lib/tree/components/tree.component.scss +7 -7
- package/lib/tree-view/components/tree-view.component.scss +2 -2
- package/lib/upload/components/file-uploading-dialog.component.scss +12 -6
- package/lib/upload/components/file-uploading-list-row.component.scss +12 -8
- package/lib/upload/components/upload-button.component.scss +15 -1
- package/lib/version-manager/version-comparison.component.scss +1 -1
- package/lib/version-manager/version-list.component.scss +3 -3
- package/package.json +3 -3
|
@@ -1,20 +1,31 @@
|
|
|
1
|
+
@use '../mat-selectors.scss' as ms;
|
|
2
|
+
|
|
1
3
|
.adf-share-link-dialog {
|
|
2
4
|
.adf-share-link {
|
|
5
|
+
#{ms.$mat-form-field-flex} {
|
|
6
|
+
height: 48px;
|
|
7
|
+
}
|
|
8
|
+
|
|
3
9
|
&__dialog-content {
|
|
4
10
|
display: flex;
|
|
5
11
|
flex-direction: column;
|
|
6
12
|
}
|
|
7
13
|
|
|
8
14
|
&__dialog-container {
|
|
9
|
-
background-color: var(--
|
|
15
|
+
background-color: var(--theme-card-background-color);
|
|
10
16
|
border-radius: 16px;
|
|
11
17
|
}
|
|
12
18
|
|
|
13
19
|
&__label,
|
|
14
20
|
&__title,
|
|
15
21
|
&__info {
|
|
16
|
-
|
|
17
|
-
|
|
22
|
+
letter-spacing: -0.4px;
|
|
23
|
+
line-height: 2;
|
|
24
|
+
font-weight: normal;
|
|
25
|
+
font-style: normal;
|
|
26
|
+
font-stretch: normal;
|
|
27
|
+
font-size: var(--theme-body-1-font-size);
|
|
28
|
+
color: var(--adf-theme-foreground-text-color-087);
|
|
18
29
|
}
|
|
19
30
|
|
|
20
31
|
&__label {
|
|
@@ -24,19 +35,25 @@
|
|
|
24
35
|
&__form {
|
|
25
36
|
padding-top: 8px;
|
|
26
37
|
|
|
38
|
+
#{ms.$mat-form-field-infix}:has(.adf-share-link__input) {
|
|
39
|
+
border-top: 0.9375em solid transparent;
|
|
40
|
+
border-bottom: 0.9375em solid transparent;
|
|
41
|
+
height: 16px;
|
|
42
|
+
}
|
|
43
|
+
|
|
27
44
|
&--field {
|
|
28
45
|
padding-bottom: 16px;
|
|
29
46
|
}
|
|
30
47
|
}
|
|
31
48
|
|
|
32
49
|
&__public-content {
|
|
33
|
-
color: var(--
|
|
34
|
-
font: var(--
|
|
50
|
+
color: var(--adf-theme-foreground-text-color-054);
|
|
51
|
+
font-size: var(--theme-caption-font-size);
|
|
35
52
|
}
|
|
36
53
|
|
|
37
54
|
&__warn {
|
|
38
|
-
color: var(--
|
|
39
|
-
font: var(--
|
|
55
|
+
color: var(--theme-warn-color-a700);
|
|
56
|
+
font-size: var(--theme-caption-font-size);
|
|
40
57
|
}
|
|
41
58
|
|
|
42
59
|
&--row {
|
|
@@ -65,8 +82,12 @@
|
|
|
65
82
|
padding-bottom: 0;
|
|
66
83
|
}
|
|
67
84
|
|
|
85
|
+
&__input {
|
|
86
|
+
color: var(--adf-theme-foreground-text-color-087);
|
|
87
|
+
}
|
|
88
|
+
|
|
68
89
|
&__separation-line {
|
|
69
|
-
border: 1px solid var(--
|
|
90
|
+
border: 1px solid var(--theme-grey-background-color);
|
|
70
91
|
margin: 8px -24px;
|
|
71
92
|
}
|
|
72
93
|
|
|
@@ -76,7 +97,7 @@
|
|
|
76
97
|
}
|
|
77
98
|
|
|
78
99
|
&__icon {
|
|
79
|
-
color: var(--
|
|
100
|
+
color: var(--adf-theme-foreground-icon-color-054);
|
|
80
101
|
padding-bottom: 0;
|
|
81
102
|
padding-right: 0;
|
|
82
103
|
}
|
|
@@ -88,7 +109,7 @@
|
|
|
88
109
|
|
|
89
110
|
&__heading {
|
|
90
111
|
font-weight: 700;
|
|
91
|
-
font-size: var(--
|
|
112
|
+
font-size: var(--theme-subheading-2-font-size);
|
|
92
113
|
}
|
|
93
114
|
|
|
94
115
|
&__copy-icon {
|
|
@@ -112,7 +133,7 @@
|
|
|
112
133
|
}
|
|
113
134
|
|
|
114
135
|
&__border-color {
|
|
115
|
-
border: 1px solid var(--
|
|
136
|
+
border: 1px solid var(--theme-warn-color-a700);
|
|
116
137
|
}
|
|
117
138
|
}
|
|
118
139
|
|
|
@@ -137,6 +158,8 @@
|
|
|
137
158
|
margin: 8px 0 0;
|
|
138
159
|
|
|
139
160
|
& > button {
|
|
161
|
+
color: var(--adf-theme-foreground-base-color);
|
|
162
|
+
background-color: var(--theme-grey-text-background-color);
|
|
140
163
|
margin-right: 12px;
|
|
141
164
|
}
|
|
142
165
|
}
|
|
@@ -6,12 +6,14 @@
|
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
&-content-type-dialog-title {
|
|
9
|
-
font:
|
|
9
|
+
font-size: large;
|
|
10
|
+
font-weight: 200;
|
|
10
11
|
margin-top: 0;
|
|
11
12
|
}
|
|
12
13
|
|
|
13
14
|
&-content-type-dialog-description {
|
|
14
|
-
font:
|
|
15
|
+
font-size: small;
|
|
16
|
+
line-height: normal;
|
|
15
17
|
}
|
|
16
18
|
|
|
17
19
|
&-content-type-table {
|
|
@@ -19,6 +21,6 @@
|
|
|
19
21
|
}
|
|
20
22
|
|
|
21
23
|
&-content-type-dialog-apply-button {
|
|
22
|
-
color: var(--
|
|
24
|
+
color: var(--theme-primary-color);
|
|
23
25
|
}
|
|
24
26
|
}
|
|
@@ -1,7 +1,26 @@
|
|
|
1
|
+
@use '../../mat-selectors.scss' as ms;
|
|
2
|
+
|
|
1
3
|
.adf-folder-dialog {
|
|
2
4
|
.adf-folder-dialog-content {
|
|
3
5
|
padding: 0;
|
|
4
6
|
overflow: unset;
|
|
7
|
+
|
|
8
|
+
#{ms.$mat-form-field-infix} {
|
|
9
|
+
padding-bottom: 3.5px;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
#{ms.$mat-form-field-hide-placeholder} {
|
|
13
|
+
#{ms.$mat-floating-label} {
|
|
14
|
+
padding-top: 20px;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
#{ms.$mat-form-field-hint-wrapper} {
|
|
19
|
+
padding-left: 0;
|
|
20
|
+
margin-left: -2px;
|
|
21
|
+
color: var(--adf-theme-foreground-secondary-text-color);
|
|
22
|
+
font-size: 10.5px;
|
|
23
|
+
}
|
|
5
24
|
}
|
|
6
25
|
|
|
7
26
|
.adf-folder-dialog-title {
|
|
@@ -22,14 +41,14 @@
|
|
|
22
41
|
}
|
|
23
42
|
|
|
24
43
|
.adf-dialog-action-button:enabled {
|
|
25
|
-
color: var(--
|
|
44
|
+
color: var(--theme-primary-color);
|
|
26
45
|
}
|
|
27
46
|
|
|
28
47
|
.adf-dialog-action-button:disabled > span {
|
|
29
|
-
color: var(--
|
|
48
|
+
color: var(--adf-theme-foreground-text-color-054);
|
|
30
49
|
}
|
|
31
50
|
|
|
32
|
-
@media screen and (width <=380px) {
|
|
51
|
+
@media screen and (width <= 380px) {
|
|
33
52
|
.adf-folder-dialog-title {
|
|
34
53
|
margin: 0;
|
|
35
54
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
.adf-document-list {
|
|
4
4
|
min-height: 0;
|
|
5
5
|
height: 100%;
|
|
6
|
-
background-color: var(--
|
|
6
|
+
background-color: var(--theme-background-color);
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
.adf-sticky-document-list {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
|
|
14
14
|
.adf-datatable-card {
|
|
15
15
|
.adf-datatable-selected > svg {
|
|
16
|
-
fill: var(--
|
|
16
|
+
fill: var(--theme-accent-color);
|
|
17
17
|
width: 30px;
|
|
18
18
|
height: 30px;
|
|
19
19
|
position: absolute;
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
display: inline-table;
|
|
27
27
|
|
|
28
28
|
& > svg {
|
|
29
|
-
fill: var(--
|
|
29
|
+
fill: var(--theme-accent-color);
|
|
30
30
|
width: 30px;
|
|
31
31
|
height: 30px;
|
|
32
32
|
}
|
|
@@ -55,26 +55,37 @@
|
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
&--text {
|
|
58
|
-
color: var(--
|
|
59
|
-
font-size: var(--
|
|
58
|
+
color: var(--adf-theme-foreground-text-color);
|
|
59
|
+
font-size: var(--theme-subheading-2-font-size);
|
|
60
60
|
}
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
.adf-document-list__this-space-is-empty {
|
|
64
64
|
height: 32px;
|
|
65
|
-
|
|
65
|
+
opacity: 0.26;
|
|
66
|
+
font-size: var(--theme-headline-font-size);
|
|
67
|
+
line-height: 1.33;
|
|
68
|
+
letter-spacing: -1px;
|
|
69
|
+
color: var(--adf-theme-foreground-text-color);
|
|
66
70
|
}
|
|
67
71
|
|
|
68
72
|
.adf-document-list__drag-drop {
|
|
69
73
|
height: 56px;
|
|
70
|
-
|
|
74
|
+
opacity: 0.54;
|
|
75
|
+
font-size: 56px;
|
|
76
|
+
line-height: 1;
|
|
77
|
+
letter-spacing: -2px;
|
|
78
|
+
color: var(--adf-theme-foreground-text-color);
|
|
71
79
|
margin-top: 40px;
|
|
72
80
|
}
|
|
73
81
|
|
|
74
82
|
.adf-document-list__any-files-here-to-add {
|
|
75
83
|
height: 24px;
|
|
76
|
-
|
|
77
|
-
|
|
84
|
+
opacity: 0.54;
|
|
85
|
+
font-size: var(--theme-subheading-2-font-size);
|
|
86
|
+
line-height: 1.5;
|
|
87
|
+
letter-spacing: -0.4px;
|
|
88
|
+
color: var(--adf-theme-foreground-text-color);
|
|
78
89
|
margin-top: 17px;
|
|
79
90
|
}
|
|
80
91
|
|
|
@@ -98,11 +109,15 @@
|
|
|
98
109
|
|
|
99
110
|
.adf-empty-list-header {
|
|
100
111
|
height: 32px;
|
|
101
|
-
|
|
112
|
+
opacity: 0.26;
|
|
113
|
+
font-size: var(--theme-headline-font-size);
|
|
114
|
+
line-height: 1.33;
|
|
115
|
+
letter-spacing: -1px;
|
|
116
|
+
color: var(--adf-theme-foreground-text-color);
|
|
102
117
|
}
|
|
103
118
|
|
|
104
119
|
.adf-documentlist-pagination {
|
|
105
|
-
color: var(--
|
|
120
|
+
color: var(--adf-theme-foreground-text-color);
|
|
106
121
|
|
|
107
122
|
.adf-pagination__block {
|
|
108
123
|
border-right: none;
|
|
@@ -112,24 +127,33 @@
|
|
|
112
127
|
.adf-empty-folder {
|
|
113
128
|
&-this-space-is-empty {
|
|
114
129
|
height: 32px;
|
|
115
|
-
font: var(--
|
|
130
|
+
font-size: var(--theme-headline-font-size);
|
|
131
|
+
line-height: 1.33;
|
|
132
|
+
letter-spacing: -1px;
|
|
133
|
+
color: var(--adf-theme-foreground-text-color-054);
|
|
116
134
|
}
|
|
117
135
|
|
|
118
136
|
&-drag-drop {
|
|
119
137
|
min-height: 56px;
|
|
120
|
-
font:
|
|
138
|
+
font-size: 53px;
|
|
139
|
+
line-height: 1;
|
|
140
|
+
letter-spacing: -2px;
|
|
141
|
+
color: var(--adf-theme-foreground-text-color);
|
|
121
142
|
margin-top: 40px;
|
|
122
143
|
word-break: break-all;
|
|
123
144
|
white-space: pre-line;
|
|
124
145
|
|
|
125
146
|
@include flex.layout-bp(lt-sm) {
|
|
126
|
-
font:
|
|
147
|
+
font-size: 48px;
|
|
127
148
|
}
|
|
128
149
|
}
|
|
129
150
|
|
|
130
151
|
&-any-files-here-to-add {
|
|
131
152
|
min-height: 24px;
|
|
132
|
-
font: var(--
|
|
153
|
+
font-size: var(--theme-subheading-2-font-size);
|
|
154
|
+
line-height: 1.5;
|
|
155
|
+
letter-spacing: -0.4px;
|
|
156
|
+
color: var(--adf-theme-foreground-text-color);
|
|
133
157
|
margin-top: 17px;
|
|
134
158
|
word-break: break-all;
|
|
135
159
|
white-space: pre-line;
|
|
@@ -11,8 +11,14 @@
|
|
|
11
11
|
|
|
12
12
|
.adf-new-version-uploader-dialog-title {
|
|
13
13
|
flex: 0 0 auto;
|
|
14
|
-
font:
|
|
14
|
+
font-size: 20px;
|
|
15
|
+
font-weight: 600;
|
|
16
|
+
font-style: normal;
|
|
17
|
+
font-stretch: normal;
|
|
18
|
+
line-height: 1.6;
|
|
15
19
|
margin: 0;
|
|
20
|
+
letter-spacing: -0.5px;
|
|
21
|
+
color: var(--adf-theme-foreground-text-color-087);
|
|
16
22
|
}
|
|
17
23
|
|
|
18
24
|
section.adf-new-version-uploader-dialog-content {
|
|
@@ -28,11 +34,12 @@
|
|
|
28
34
|
padding: 8px 8px 24px 8px;
|
|
29
35
|
display: flex;
|
|
30
36
|
justify-content: flex-end;
|
|
31
|
-
color: var(--
|
|
37
|
+
color: var(--adf-theme-foreground-text-color-054);
|
|
32
38
|
-webkit-font-smoothing: antialiased;
|
|
33
39
|
|
|
34
40
|
button {
|
|
35
41
|
text-transform: uppercase;
|
|
42
|
+
font-weight: normal;
|
|
36
43
|
}
|
|
37
44
|
}
|
|
38
45
|
|
package/lib/permission-manager/components/add-permission/add-permission-dialog.component.scss
CHANGED
|
@@ -1,10 +1,23 @@
|
|
|
1
|
+
@use '../../../mat-selectors.scss' as ms;
|
|
2
|
+
|
|
3
|
+
#{ms.$mdc-dialog} {
|
|
4
|
+
#{ms.$mat-dialog-surface}:is(div) {
|
|
5
|
+
padding-bottom: 0;
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
|
|
1
9
|
.adf-add-permission-dialog {
|
|
2
10
|
.adf-add-permission-dialog-title {
|
|
3
11
|
margin-bottom: 28px;
|
|
4
12
|
margin-left: 20px;
|
|
5
13
|
margin-right: 20px;
|
|
6
|
-
font: var(--
|
|
7
|
-
|
|
14
|
+
font-size: var(--theme-title-font-size);
|
|
15
|
+
font-weight: 600;
|
|
16
|
+
font-style: normal;
|
|
17
|
+
font-stretch: normal;
|
|
18
|
+
line-height: 1.6;
|
|
19
|
+
letter-spacing: -0.5px;
|
|
20
|
+
color: var(--adf-theme-foreground-text-color-087);
|
|
8
21
|
}
|
|
9
22
|
|
|
10
23
|
.adf-add-permission-dialog-content {
|
|
@@ -17,6 +30,17 @@
|
|
|
17
30
|
&-search-user-button {
|
|
18
31
|
width: 100%;
|
|
19
32
|
justify-content: unset;
|
|
33
|
+
|
|
34
|
+
#{ms.$mat-button-label} {
|
|
35
|
+
padding-right: 0;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
#{ms.$mat-icon} {
|
|
39
|
+
font-size: 24px;
|
|
40
|
+
width: 24px;
|
|
41
|
+
height: 24px;
|
|
42
|
+
margin-left: 0;
|
|
43
|
+
}
|
|
20
44
|
}
|
|
21
45
|
|
|
22
46
|
&-add-member-action {
|
|
@@ -35,22 +59,23 @@
|
|
|
35
59
|
|
|
36
60
|
.adf-add-permission-dialog-actions {
|
|
37
61
|
padding: 0 24px;
|
|
38
|
-
background-color: var(--
|
|
62
|
+
background-color: var(--theme-background-color);
|
|
39
63
|
display: flex;
|
|
40
64
|
justify-content: flex-end;
|
|
41
|
-
color: var(--
|
|
65
|
+
color: var(--adf-theme-foreground-text-color);
|
|
42
66
|
|
|
43
67
|
button {
|
|
44
68
|
text-transform: uppercase;
|
|
69
|
+
font-weight: normal;
|
|
45
70
|
}
|
|
46
71
|
|
|
47
72
|
.adf-choose-action {
|
|
48
73
|
&[disabled] {
|
|
49
|
-
color: var(--
|
|
74
|
+
color: var(--adf-theme-foreground-secondary-text-color);
|
|
50
75
|
}
|
|
51
76
|
|
|
52
77
|
&:enabled {
|
|
53
|
-
color: var(--
|
|
78
|
+
color: var(--theme-primary-color);
|
|
54
79
|
}
|
|
55
80
|
}
|
|
56
81
|
}
|
package/lib/permission-manager/components/add-permission/add-permission-panel.component.scss
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
@use '../../../mat-selectors.scss' as ms;
|
|
2
|
+
|
|
1
3
|
$search-result-height: calc(100% - 60px);
|
|
2
4
|
|
|
3
5
|
.adf {
|
|
@@ -5,7 +7,11 @@ $search-result-height: calc(100% - 60px);
|
|
|
5
7
|
display: flex;
|
|
6
8
|
height: $search-result-height;
|
|
7
9
|
overflow: auto;
|
|
8
|
-
border: 2px solid var(--
|
|
10
|
+
border: 2px solid var(--adf-theme-foreground-text-color-007);
|
|
11
|
+
|
|
12
|
+
#{ms.$mat-list-item-end} {
|
|
13
|
+
display: none;
|
|
14
|
+
}
|
|
9
15
|
|
|
10
16
|
&-elements {
|
|
11
17
|
width: 100%;
|
|
@@ -32,7 +38,7 @@ $search-result-height: calc(100% - 60px);
|
|
|
32
38
|
justify-content: space-around;
|
|
33
39
|
height: $search-result-height;
|
|
34
40
|
overflow: auto;
|
|
35
|
-
border: 2px solid var(--
|
|
41
|
+
border: 2px solid var(--adf-theme-foreground-text-color-007);
|
|
36
42
|
}
|
|
37
43
|
|
|
38
44
|
&-permission-no-result {
|
|
@@ -48,9 +54,24 @@ $search-result-height: calc(100% - 60px);
|
|
|
48
54
|
padding-bottom: 0;
|
|
49
55
|
padding-top: 12px;
|
|
50
56
|
|
|
57
|
+
#{ms.$mat-form-field-wrapper} {
|
|
58
|
+
#{ms.$mat-form-field-flex} {
|
|
59
|
+
align-items: center;
|
|
60
|
+
|
|
61
|
+
#{ms.$mat-form-field-infix} {
|
|
62
|
+
padding-top: 0;
|
|
63
|
+
padding-bottom: 0;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
#{ms.$mat-form-field-subscript-wrapper} {
|
|
69
|
+
height: 16px;
|
|
70
|
+
}
|
|
71
|
+
|
|
51
72
|
.adf-permission-search-input-control {
|
|
52
73
|
&:focus::placeholder {
|
|
53
|
-
color: var(--
|
|
74
|
+
color: var(--theme-primary-color);
|
|
54
75
|
}
|
|
55
76
|
}
|
|
56
77
|
|
|
@@ -58,6 +79,7 @@ $search-result-height: calc(100% - 60px);
|
|
|
58
79
|
padding: 0 0 12px;
|
|
59
80
|
width: 1em;
|
|
60
81
|
height: 1em;
|
|
82
|
+
font-size: 20px;
|
|
61
83
|
}
|
|
62
84
|
|
|
63
85
|
.adf-permission-search-input-clear-button {
|
|
@@ -70,7 +92,7 @@ $search-result-height: calc(100% - 60px);
|
|
|
70
92
|
cursor: pointer;
|
|
71
93
|
|
|
72
94
|
&:hover {
|
|
73
|
-
color: var(--
|
|
95
|
+
color: var(--adf-theme-foreground-base-color);
|
|
74
96
|
}
|
|
75
97
|
}
|
|
76
98
|
}
|
|
@@ -83,7 +105,7 @@ $search-result-height: calc(100% - 60px);
|
|
|
83
105
|
}
|
|
84
106
|
|
|
85
107
|
&:enabled {
|
|
86
|
-
color: var(--
|
|
108
|
+
color: var(--theme-primary-color);
|
|
87
109
|
}
|
|
88
110
|
}
|
|
89
111
|
}
|
|
@@ -21,10 +21,13 @@
|
|
|
21
21
|
justify-content: space-between;
|
|
22
22
|
align-items: center;
|
|
23
23
|
padding: 10px 15px;
|
|
24
|
-
border: 1px solid var(--
|
|
24
|
+
border: 1px solid var(--adf-theme-foreground-text-color-007);
|
|
25
25
|
|
|
26
26
|
.adf-permission-visibility-toggle {
|
|
27
27
|
.adf-permission-visibility-toggle-icon {
|
|
28
|
+
font-size: 24px;
|
|
29
|
+
height: 24px;
|
|
30
|
+
width: 24px;
|
|
28
31
|
margin: 1px 0 0 4px;
|
|
29
32
|
}
|
|
30
33
|
}
|
|
@@ -105,6 +108,6 @@
|
|
|
105
108
|
.adf-pop-over-card {
|
|
106
109
|
width: 100%;
|
|
107
110
|
overflow: hidden;
|
|
108
|
-
box-shadow: var(--
|
|
111
|
+
box-shadow: 0 8px 9px -5px var(--adf-theme-foreground-divider-color), 0 15px 22px 2px var(--adf-theme-foreground-divider-color);
|
|
109
112
|
}
|
|
110
113
|
}
|
|
@@ -1,22 +1,27 @@
|
|
|
1
1
|
.adf-cell-value {
|
|
2
2
|
.adf-people-initial {
|
|
3
|
-
background: var(--
|
|
3
|
+
background: var(--theme-primary-color);
|
|
4
4
|
border-radius: 50%;
|
|
5
5
|
display: flex;
|
|
6
6
|
justify-content: center;
|
|
7
7
|
align-items: center;
|
|
8
8
|
width: 40px;
|
|
9
9
|
height: 40px;
|
|
10
|
-
color: var(--
|
|
11
|
-
font:
|
|
10
|
+
color: var(--theme-primary-color-default-contrast);
|
|
11
|
+
font-weight: bolder;
|
|
12
|
+
font-size: var(--theme-adf-picture-1-font-size);
|
|
12
13
|
text-transform: uppercase;
|
|
13
14
|
}
|
|
14
15
|
|
|
15
16
|
.adf-group-icon {
|
|
16
|
-
|
|
17
|
+
height: 20px;
|
|
18
|
+
width: 20px;
|
|
19
|
+
background: var(--theme-primary-color);
|
|
17
20
|
border-radius: 50%;
|
|
18
21
|
padding: 10px;
|
|
19
|
-
color: var(--
|
|
22
|
+
color: var(--theme-primary-color-default-contrast);
|
|
23
|
+
font-weight: bolder;
|
|
24
|
+
font-size: var(--theme-title-font-size);
|
|
20
25
|
}
|
|
21
26
|
|
|
22
27
|
.adf-datatable-selected {
|
|
@@ -30,7 +35,7 @@
|
|
|
30
35
|
margin: 0;
|
|
31
36
|
|
|
32
37
|
svg {
|
|
33
|
-
fill: var(--
|
|
38
|
+
fill: var(--theme-accent-color);
|
|
34
39
|
width: 40px;
|
|
35
40
|
height: 40px;
|
|
36
41
|
}
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
.adf-user {
|
|
2
2
|
&-name-column {
|
|
3
|
-
font:
|
|
3
|
+
font-weight: 600;
|
|
4
|
+
font-size: var(--theme-body-1-font-size);
|
|
4
5
|
}
|
|
5
6
|
|
|
6
7
|
&-email-column {
|
|
7
|
-
font: var(--
|
|
8
|
+
font-size: var(--theme-body-1-font-size);
|
|
9
|
+
letter-spacing: -0.2px;
|
|
10
|
+
line-height: 1.43;
|
|
11
|
+
color: var(--adf-theme-foreground-text-color);
|
|
8
12
|
}
|
|
9
13
|
}
|
|
@@ -10,14 +10,26 @@ adf-search-chip-autocomplete-input {
|
|
|
10
10
|
margin-top: 4px;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
+
#{ms.$mat-form-text-field-infix} {
|
|
14
|
+
border: none;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.adf-chip-list#{ms.$mat-form-field} {
|
|
18
|
+
#{ms.$mat-form-field-infix} {
|
|
19
|
+
padding-top: 14px;
|
|
20
|
+
padding-bottom: 14px;
|
|
21
|
+
min-height: unset;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
13
25
|
.adf-search-properties-file-input {
|
|
14
26
|
margin-left: 3px;
|
|
15
27
|
}
|
|
16
28
|
|
|
17
29
|
.adf-autocomplete-added-option-chips.adf-option-chips {
|
|
18
|
-
border: 1px solid var(--
|
|
30
|
+
border: 1px solid var(--theme-text-color);
|
|
19
31
|
border-radius: 10px;
|
|
20
|
-
background-color: var(--
|
|
32
|
+
background-color: var(--theme-primary-color-default-contrast);
|
|
21
33
|
height: auto;
|
|
22
34
|
word-break: break-word;
|
|
23
35
|
padding: 4px 0;
|
|
@@ -31,19 +43,19 @@ adf-search-chip-autocomplete-input {
|
|
|
31
43
|
}
|
|
32
44
|
|
|
33
45
|
.adf-option-chips-delete-button.adf-autocomplete-added-option-chips-delete-button {
|
|
34
|
-
font:
|
|
35
|
-
height:
|
|
36
|
-
width:
|
|
46
|
+
font-size: 13px;
|
|
47
|
+
height: 13px;
|
|
48
|
+
width: 13px;
|
|
37
49
|
|
|
38
50
|
.adf-option-chips-delete-icon.adf-autocomplete-added-option-chips-delete-icon {
|
|
39
|
-
font:
|
|
40
|
-
height:
|
|
41
|
-
width:
|
|
51
|
+
font-size: 13px;
|
|
52
|
+
height: 13px;
|
|
53
|
+
width: 13px;
|
|
42
54
|
}
|
|
43
55
|
}
|
|
44
56
|
}
|
|
45
57
|
|
|
46
58
|
.adf-search-chip-autocomplete-added-option.adf-autocomplete-added-option {
|
|
47
|
-
background: var(--mat-
|
|
48
|
-
color: var(--
|
|
59
|
+
background: var(--adf-theme-mat-grey-color-a200);
|
|
60
|
+
color: var(--adf-theme-primary-300);
|
|
49
61
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
.adf-search-chip-list-item:focus {
|
|
2
|
-
color: var(--
|
|
3
|
-
background-color: var(--
|
|
2
|
+
color: var(--theme-accent-color-default-contrast);
|
|
3
|
+
background-color: var(--theme-accent-color);
|
|
4
4
|
|
|
5
5
|
.adf-search-chip-list-item-remove {
|
|
6
|
-
color: var(--
|
|
6
|
+
color: var(--theme-accent-color-default-contrast);
|
|
7
7
|
opacity: 1;
|
|
8
8
|
}
|
|
9
9
|
}
|
|
@@ -18,10 +18,11 @@ $mat-menu-overlay-max-width: 280px !default; // 56 * 5
|
|
|
18
18
|
max-height: 400px;
|
|
19
19
|
margin-left: 45px;
|
|
20
20
|
margin-top: -22px;
|
|
21
|
-
font: var(--
|
|
21
|
+
font-size: var(--theme-subheading-1-font-size);
|
|
22
22
|
z-index: 5;
|
|
23
|
-
color: var(--
|
|
24
|
-
background-color: var(--
|
|
23
|
+
color: var(--adf-theme-foreground-text-color);
|
|
24
|
+
background-color: var(--adf-theme-background-card-color);
|
|
25
|
+
border-radius: 2px;
|
|
25
26
|
|
|
26
27
|
@include flex.layout-bp(lt-md) {
|
|
27
28
|
white-space: nowrap;
|
|
@@ -32,7 +33,7 @@ $mat-menu-overlay-max-width: 280px !default; // 56 * 5
|
|
|
32
33
|
|
|
33
34
|
&-search-autocomplete-item {
|
|
34
35
|
&:hover {
|
|
35
|
-
background-color: var(--
|
|
36
|
+
background-color: var(--adf-theme-background-hover-color);
|
|
36
37
|
opacity: 1;
|
|
37
38
|
}
|
|
38
39
|
}
|