@beacon-interactive-systems-llc/beacon-platform-ui 19.0.0 → 19.0.2
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/package.json +1 -1
- package/styles/_buttons.scss +1 -0
- package/styles/_filters.scss +229 -229
- package/styles/_layout.scss +57 -12
- package/styles/_material-drawer.scss +5 -1
- package/styles/_ng-select.scss +1 -0
- package/styles/_tables.scss +2 -1
package/package.json
CHANGED
package/styles/_buttons.scss
CHANGED
package/styles/_filters.scss
CHANGED
|
@@ -1,229 +1,229 @@
|
|
|
1
|
-
$platform_filter_contrasts: (
|
|
2
|
-
light: (
|
|
3
|
-
filterBackground: $beacon-dark-blue-50,
|
|
4
|
-
filterBorder: $beacon-gray-border,
|
|
5
|
-
filterShadow: 0px 3px 3px $beacon-black,
|
|
6
|
-
filterSearchIcon: $beacon-gray-400,
|
|
7
|
-
filterChip: $beacon-green-100,
|
|
8
|
-
filterChipText: $beacon-black,
|
|
9
|
-
filterDropdownFocus: $beacon-dark-blue-200,
|
|
10
|
-
filterDropdownText: $beacon-cyan-600,
|
|
11
|
-
showingRowBg: $beacon-white,
|
|
12
|
-
showingRowColor: $beacon-green-500,
|
|
13
|
-
superTitleBg: $beacon-white,
|
|
14
|
-
superTitleColor: $beacon-dark-blue-300,
|
|
15
|
-
),
|
|
16
|
-
dark: (
|
|
17
|
-
filterBackground: $beacon-gray-700,
|
|
18
|
-
filterBorder: $beacon-gray-400,
|
|
19
|
-
filterShadow: none,
|
|
20
|
-
filterSearchIcon: $beacon-gray-300,
|
|
21
|
-
filterChip: $beacon-dark-blue-400,
|
|
22
|
-
filterChipText: $beacon-gray-300,
|
|
23
|
-
filterDropdownFocus: $beacon-gray-600,
|
|
24
|
-
filterDropdownText: $beacon-green-650,
|
|
25
|
-
showingRowBg: $beacon-gray-700,
|
|
26
|
-
showingRowColor: $beacon-green-650,
|
|
27
|
-
superTitleBg: $beacon-gray-700,
|
|
28
|
-
superTitleColor: $beacon-gray-300,
|
|
29
|
-
),
|
|
30
|
-
highcontrast: (
|
|
31
|
-
filterBackground: $beacon-black,
|
|
32
|
-
filterBorder: $beacon-white,
|
|
33
|
-
filterShadow: none,
|
|
34
|
-
filterSearchIcon: $beacon-white,
|
|
35
|
-
filterChip: $highcontrast-bright-green-300,
|
|
36
|
-
filterChipText: $beacon-black,
|
|
37
|
-
filterDropdownFocus: $highcontrast-bright-blue-200,
|
|
38
|
-
filterDropdownText: $highcontrast-bright-green-200,
|
|
39
|
-
showingRowBg: $beacon-black,
|
|
40
|
-
showingRowColor: $highcontrast-bright-green-200,
|
|
41
|
-
superTitleBg: $beacon-black,
|
|
42
|
-
superTitleColor: $beacon-white,
|
|
43
|
-
)
|
|
44
|
-
);
|
|
45
|
-
|
|
46
|
-
$min-filter-input-width: calc(1em * 11);
|
|
47
|
-
$max-filter-input-width: calc(1em *
|
|
48
|
-
$date-filter-min-width: calc(1em * 5);
|
|
49
|
-
$date-filter-width: calc(1em * 8);
|
|
50
|
-
|
|
51
|
-
.filter-bar {
|
|
52
|
-
@include themify($platform_filter_contrasts) {
|
|
53
|
-
border: 0.5px solid apply('filterBorder');
|
|
54
|
-
box-shadow: apply('filterShadow');
|
|
55
|
-
}
|
|
56
|
-
border-radius: 3px;
|
|
57
|
-
height: 57px;
|
|
58
|
-
|
|
59
|
-
.row.filter-row {
|
|
60
|
-
height: 54px;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
&__nested {
|
|
64
|
-
height: auto;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
&--table-header {
|
|
68
|
-
@include themify($platform_filter_contrasts) {
|
|
69
|
-
border-color: apply('filterBorder');
|
|
70
|
-
border-style: solid;
|
|
71
|
-
border-width: 0.5px 0.5px 0.5px 0.5px;
|
|
72
|
-
}
|
|
73
|
-
border-top-left-radius: 5px;
|
|
74
|
-
border-top-right-radius: 5px;
|
|
75
|
-
height: auto;
|
|
76
|
-
|
|
77
|
-
// Optional row with larger title and some extra filter/list actions above the filter form
|
|
78
|
-
.supertitle-row {
|
|
79
|
-
@include themify($platform_filter_contrasts) {
|
|
80
|
-
background: apply('superTitleBg');
|
|
81
|
-
border-bottom: 0.5px solid apply('filterBorder');
|
|
82
|
-
|
|
83
|
-
.supertitle {
|
|
84
|
-
color: apply('superTitleColor');
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
border-top-left-radius: inherit;
|
|
88
|
-
border-top-right-radius: inherit;
|
|
89
|
-
display: flex;
|
|
90
|
-
height: auto;
|
|
91
|
-
min-height: 48px;
|
|
92
|
-
padding: 12px 16px;
|
|
93
|
-
|
|
94
|
-
.supertitle {
|
|
95
|
-
@include font-size--md;
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
.form-row {
|
|
100
|
-
@include themify($platform_filter_contrasts) {
|
|
101
|
-
background: apply('filterBackground');
|
|
102
|
-
}
|
|
103
|
-
display: flex;
|
|
104
|
-
height: auto;
|
|
105
|
-
min-height: 48px;
|
|
106
|
-
padding: 8px 16px;
|
|
107
|
-
border-top-left-radius: inherit;
|
|
108
|
-
border-top-right-radius: inherit;
|
|
109
|
-
|
|
110
|
-
.form {
|
|
111
|
-
display: flex;
|
|
112
|
-
align-items: center;
|
|
113
|
-
flex-grow: 1;
|
|
114
|
-
|
|
115
|
-
.filter-container {
|
|
116
|
-
display: flex;
|
|
117
|
-
margin-left:
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
.ng-select-container {
|
|
122
|
-
width: auto;
|
|
123
|
-
border: none !important;
|
|
124
|
-
}
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
.showing-row {
|
|
128
|
-
@include font-color--default;
|
|
129
|
-
@include themify($platform_filter_contrasts) {
|
|
130
|
-
border-top: 0.5px solid apply('filterBorder');
|
|
131
|
-
background: apply('showingRowBg');
|
|
132
|
-
}
|
|
133
|
-
padding: 6px 8px;
|
|
134
|
-
display: flex;
|
|
135
|
-
align-items: center;
|
|
136
|
-
flex-wrap: wrap;
|
|
137
|
-
height: auto;
|
|
138
|
-
min-height: 40px;
|
|
139
|
-
|
|
140
|
-
.showing-label {
|
|
141
|
-
@include font-size--default-md;
|
|
142
|
-
@include themify($platform_filter_contrasts) {
|
|
143
|
-
color: apply('showingRowColor');
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
&:first-of-type {
|
|
147
|
-
padding-left: 8px;
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
.filter-chip-label {
|
|
152
|
-
@include font-size--default-md;
|
|
153
|
-
@include font-color--semi-muted;
|
|
154
|
-
margin-left: 8px;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
.filter-chip {
|
|
158
|
-
@include font-size--default-md;
|
|
159
|
-
@include font-weight--semibold;
|
|
160
|
-
@include themify($platform_filter_contrasts) {
|
|
161
|
-
background: apply('filterChip');
|
|
162
|
-
color: apply('filterChipText');
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
border-radius: 2px;
|
|
166
|
-
height: 25px;
|
|
167
|
-
margin-left: 4px;
|
|
168
|
-
padding-left: .25rem;
|
|
169
|
-
padding-right: .25rem;
|
|
170
|
-
|
|
171
|
-
&::after {
|
|
172
|
-
@include font-color--semi-muted;
|
|
173
|
-
content: "close";
|
|
174
|
-
font-family: "Material Icons";
|
|
175
|
-
position: relative;
|
|
176
|
-
text-align: end;
|
|
177
|
-
top: 0.1rem;
|
|
178
|
-
z-index: 99;
|
|
179
|
-
}
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
.filter-input {
|
|
186
|
-
font-size: 14px;
|
|
187
|
-
min-width: $min-filter-input-width;
|
|
188
|
-
max-width: $max-filter-input-width;
|
|
189
|
-
padding-left: 26px;
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
.date-filter {
|
|
193
|
-
min-width: $date-filter-min-width;
|
|
194
|
-
max-width: $date-filter-width;
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
.search-icon {
|
|
198
|
-
width: 0px;
|
|
199
|
-
&::before {
|
|
200
|
-
@include themify($platform_filter_contrasts) {
|
|
201
|
-
color: apply('filterSearchIcon');
|
|
202
|
-
}
|
|
203
|
-
content: "search";
|
|
204
|
-
font-family: "Material Icons";
|
|
205
|
-
font-size: 16px;
|
|
206
|
-
position: relative;
|
|
207
|
-
left: 8px;
|
|
208
|
-
top: 0.4rem;
|
|
209
|
-
z-index: 99;
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
// popover stuff
|
|
214
|
-
.popover.table-filters {
|
|
215
|
-
max-width: unset;
|
|
216
|
-
top: 8px !important;
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
.table-filters {
|
|
220
|
-
@include card-shadow;
|
|
221
|
-
@include themify($platform_filter_contrasts) {
|
|
222
|
-
background: apply('filterBackground');
|
|
223
|
-
}
|
|
224
|
-
width: 200px;
|
|
225
|
-
|
|
226
|
-
.popover-arrow {
|
|
227
|
-
display: none;
|
|
228
|
-
}
|
|
229
|
-
}
|
|
1
|
+
$platform_filter_contrasts: (
|
|
2
|
+
light: (
|
|
3
|
+
filterBackground: $beacon-dark-blue-50,
|
|
4
|
+
filterBorder: $beacon-gray-border,
|
|
5
|
+
filterShadow: 0px 3px 3px $beacon-black,
|
|
6
|
+
filterSearchIcon: $beacon-gray-400,
|
|
7
|
+
filterChip: $beacon-green-100,
|
|
8
|
+
filterChipText: $beacon-black,
|
|
9
|
+
filterDropdownFocus: $beacon-dark-blue-200,
|
|
10
|
+
filterDropdownText: $beacon-cyan-600,
|
|
11
|
+
showingRowBg: $beacon-white,
|
|
12
|
+
showingRowColor: $beacon-green-500,
|
|
13
|
+
superTitleBg: $beacon-white,
|
|
14
|
+
superTitleColor: $beacon-dark-blue-300,
|
|
15
|
+
),
|
|
16
|
+
dark: (
|
|
17
|
+
filterBackground: $beacon-gray-700,
|
|
18
|
+
filterBorder: $beacon-gray-400,
|
|
19
|
+
filterShadow: none,
|
|
20
|
+
filterSearchIcon: $beacon-gray-300,
|
|
21
|
+
filterChip: $beacon-dark-blue-400,
|
|
22
|
+
filterChipText: $beacon-gray-300,
|
|
23
|
+
filterDropdownFocus: $beacon-gray-600,
|
|
24
|
+
filterDropdownText: $beacon-green-650,
|
|
25
|
+
showingRowBg: $beacon-gray-700,
|
|
26
|
+
showingRowColor: $beacon-green-650,
|
|
27
|
+
superTitleBg: $beacon-gray-700,
|
|
28
|
+
superTitleColor: $beacon-gray-300,
|
|
29
|
+
),
|
|
30
|
+
highcontrast: (
|
|
31
|
+
filterBackground: $beacon-black,
|
|
32
|
+
filterBorder: $beacon-white,
|
|
33
|
+
filterShadow: none,
|
|
34
|
+
filterSearchIcon: $beacon-white,
|
|
35
|
+
filterChip: $highcontrast-bright-green-300,
|
|
36
|
+
filterChipText: $beacon-black,
|
|
37
|
+
filterDropdownFocus: $highcontrast-bright-blue-200,
|
|
38
|
+
filterDropdownText: $highcontrast-bright-green-200,
|
|
39
|
+
showingRowBg: $beacon-black,
|
|
40
|
+
showingRowColor: $highcontrast-bright-green-200,
|
|
41
|
+
superTitleBg: $beacon-black,
|
|
42
|
+
superTitleColor: $beacon-white,
|
|
43
|
+
)
|
|
44
|
+
);
|
|
45
|
+
|
|
46
|
+
$min-filter-input-width: calc(1em * 11);
|
|
47
|
+
$max-filter-input-width: calc(1em * 13.2);
|
|
48
|
+
$date-filter-min-width: calc(1em * 5);
|
|
49
|
+
$date-filter-width: calc(1em * 8);
|
|
50
|
+
|
|
51
|
+
.filter-bar {
|
|
52
|
+
@include themify($platform_filter_contrasts) {
|
|
53
|
+
border: 0.5px solid apply('filterBorder');
|
|
54
|
+
box-shadow: apply('filterShadow');
|
|
55
|
+
}
|
|
56
|
+
border-radius: 3px;
|
|
57
|
+
height: 57px;
|
|
58
|
+
|
|
59
|
+
.row.filter-row {
|
|
60
|
+
height: 54px;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
&__nested {
|
|
64
|
+
height: auto;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
&--table-header {
|
|
68
|
+
@include themify($platform_filter_contrasts) {
|
|
69
|
+
border-color: apply('filterBorder');
|
|
70
|
+
border-style: solid;
|
|
71
|
+
border-width: 0.5px 0.5px 0.5px 0.5px;
|
|
72
|
+
}
|
|
73
|
+
border-top-left-radius: 5px;
|
|
74
|
+
border-top-right-radius: 5px;
|
|
75
|
+
height: auto;
|
|
76
|
+
|
|
77
|
+
// Optional row with larger title and some extra filter/list actions above the filter form
|
|
78
|
+
.supertitle-row {
|
|
79
|
+
@include themify($platform_filter_contrasts) {
|
|
80
|
+
background: apply('superTitleBg');
|
|
81
|
+
border-bottom: 0.5px solid apply('filterBorder');
|
|
82
|
+
|
|
83
|
+
.supertitle {
|
|
84
|
+
color: apply('superTitleColor');
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
border-top-left-radius: inherit;
|
|
88
|
+
border-top-right-radius: inherit;
|
|
89
|
+
display: flex;
|
|
90
|
+
height: auto;
|
|
91
|
+
min-height: 48px;
|
|
92
|
+
padding: 12px 16px;
|
|
93
|
+
|
|
94
|
+
.supertitle {
|
|
95
|
+
@include font-size--md;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.form-row {
|
|
100
|
+
@include themify($platform_filter_contrasts) {
|
|
101
|
+
background: apply('filterBackground');
|
|
102
|
+
}
|
|
103
|
+
display: flex;
|
|
104
|
+
height: auto;
|
|
105
|
+
min-height: 48px;
|
|
106
|
+
padding: 8px 16px;
|
|
107
|
+
border-top-left-radius: inherit;
|
|
108
|
+
border-top-right-radius: inherit;
|
|
109
|
+
|
|
110
|
+
.form {
|
|
111
|
+
display: flex;
|
|
112
|
+
align-items: center;
|
|
113
|
+
flex-grow: 1;
|
|
114
|
+
|
|
115
|
+
.filter-container {
|
|
116
|
+
display: flex;
|
|
117
|
+
margin-left: 16px;
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.ng-select-container {
|
|
122
|
+
width: auto;
|
|
123
|
+
border: none !important;
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.showing-row {
|
|
128
|
+
@include font-color--default;
|
|
129
|
+
@include themify($platform_filter_contrasts) {
|
|
130
|
+
border-top: 0.5px solid apply('filterBorder');
|
|
131
|
+
background: apply('showingRowBg');
|
|
132
|
+
}
|
|
133
|
+
padding: 6px 8px;
|
|
134
|
+
display: flex;
|
|
135
|
+
align-items: center;
|
|
136
|
+
flex-wrap: wrap;
|
|
137
|
+
height: auto;
|
|
138
|
+
min-height: 40px;
|
|
139
|
+
|
|
140
|
+
.showing-label {
|
|
141
|
+
@include font-size--default-md;
|
|
142
|
+
@include themify($platform_filter_contrasts) {
|
|
143
|
+
color: apply('showingRowColor');
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
&:first-of-type {
|
|
147
|
+
padding-left: 8px;
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.filter-chip-label {
|
|
152
|
+
@include font-size--default-md;
|
|
153
|
+
@include font-color--semi-muted;
|
|
154
|
+
margin-left: 8px;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.filter-chip {
|
|
158
|
+
@include font-size--default-md;
|
|
159
|
+
@include font-weight--semibold;
|
|
160
|
+
@include themify($platform_filter_contrasts) {
|
|
161
|
+
background: apply('filterChip');
|
|
162
|
+
color: apply('filterChipText');
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
border-radius: 2px;
|
|
166
|
+
height: 25px;
|
|
167
|
+
margin-left: 4px;
|
|
168
|
+
padding-left: .25rem;
|
|
169
|
+
padding-right: .25rem;
|
|
170
|
+
|
|
171
|
+
&::after {
|
|
172
|
+
@include font-color--semi-muted;
|
|
173
|
+
content: "close";
|
|
174
|
+
font-family: "Material Icons";
|
|
175
|
+
position: relative;
|
|
176
|
+
text-align: end;
|
|
177
|
+
top: 0.1rem;
|
|
178
|
+
z-index: 99;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.filter-input {
|
|
186
|
+
font-size: 14px;
|
|
187
|
+
min-width: $min-filter-input-width;
|
|
188
|
+
max-width: $max-filter-input-width;
|
|
189
|
+
padding-left: 26px;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.date-filter {
|
|
193
|
+
min-width: $date-filter-min-width;
|
|
194
|
+
max-width: $date-filter-width;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.search-icon {
|
|
198
|
+
width: 0px;
|
|
199
|
+
&::before {
|
|
200
|
+
@include themify($platform_filter_contrasts) {
|
|
201
|
+
color: apply('filterSearchIcon');
|
|
202
|
+
}
|
|
203
|
+
content: "search";
|
|
204
|
+
font-family: "Material Icons";
|
|
205
|
+
font-size: 16px;
|
|
206
|
+
position: relative;
|
|
207
|
+
left: 8px;
|
|
208
|
+
top: 0.4rem;
|
|
209
|
+
z-index: 99;
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
// popover stuff
|
|
214
|
+
.popover.table-filters {
|
|
215
|
+
max-width: unset;
|
|
216
|
+
top: 8px !important;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.table-filters {
|
|
220
|
+
@include card-shadow;
|
|
221
|
+
@include themify($platform_filter_contrasts) {
|
|
222
|
+
background: apply('filterBackground');
|
|
223
|
+
}
|
|
224
|
+
width: 200px;
|
|
225
|
+
|
|
226
|
+
.popover-arrow {
|
|
227
|
+
display: none;
|
|
228
|
+
}
|
|
229
|
+
}
|
package/styles/_layout.scss
CHANGED
|
@@ -94,7 +94,7 @@ $detail-header-height: 78px;
|
|
|
94
94
|
$min-detail-width: 1400px;
|
|
95
95
|
$leftnav-width: 212px;
|
|
96
96
|
$leftnav-collapsed-width: 50px;
|
|
97
|
-
$detail-sidebar-width:
|
|
97
|
+
$detail-sidebar-width: 212px;
|
|
98
98
|
|
|
99
99
|
$detail-container-padding: 1rem;
|
|
100
100
|
$detail-view-width: calc(100vw - $leftnav-width);
|
|
@@ -106,11 +106,35 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
106
106
|
width: calc(100vw - $leftnav-width);
|
|
107
107
|
transition: all 0.5s ease-in-out;
|
|
108
108
|
|
|
109
|
+
&:not(.main-view-container--expanded) .detail-view-container .list-view-container.nested-list-container {
|
|
110
|
+
width: calc(100vw - 212px - 32px) !important;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
&:not(.main-view-container--expanded) .drawer__body.search__drawer {
|
|
114
|
+
width: calc(100vw - 212px);
|
|
115
|
+
position: relative;
|
|
116
|
+
left: calc(162px);
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.detail-view-container .detail__body .detail__body__section .list-view-container.nested-list-container {
|
|
120
|
+
width: 100% !important;
|
|
121
|
+
}
|
|
122
|
+
|
|
109
123
|
&--expanded {
|
|
110
124
|
left: calc(#{$leftnav-collapsed-width});
|
|
111
125
|
width: calc(100vw - $leftnav-collapsed-width);
|
|
112
126
|
transition: all 0.5s ease-in-out;
|
|
113
127
|
|
|
128
|
+
.detail-view-container .list-view-container.nested-list-container {
|
|
129
|
+
width: calc(100vw - 50px - 32px);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.drawer__body.search__drawer {
|
|
133
|
+
position: relative;
|
|
134
|
+
left: 0;
|
|
135
|
+
width: calc(100vw - 50px);
|
|
136
|
+
}
|
|
137
|
+
|
|
114
138
|
.list-view-container, .detail-view-container, .navbar__header {
|
|
115
139
|
width: calc(100vw - $leftnav-collapsed-width);
|
|
116
140
|
transition: all 0.5s ease-in-out;
|
|
@@ -301,8 +325,25 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
301
325
|
.header-text {
|
|
302
326
|
display: flex;
|
|
303
327
|
align-items: center;
|
|
304
|
-
white-space: pre-wrap;
|
|
305
328
|
|
|
329
|
+
.header-prefix, .header-suffix {
|
|
330
|
+
flex: 0 0 auto;
|
|
331
|
+
text-wrap: nowrap;
|
|
332
|
+
display: flex;
|
|
333
|
+
align-items: center;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.header-suffix {
|
|
337
|
+
margin-left: auto;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.header-body {
|
|
341
|
+
white-space: nowrap;
|
|
342
|
+
overflow: hidden;
|
|
343
|
+
text-overflow: ellipsis;
|
|
344
|
+
flex: 0 1 auto;
|
|
345
|
+
}
|
|
346
|
+
|
|
306
347
|
.pending-request-warning {
|
|
307
348
|
position: relative;
|
|
308
349
|
top: 12px;
|
|
@@ -316,7 +357,7 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
316
357
|
height: 16px;
|
|
317
358
|
width: 16px;
|
|
318
359
|
font-size: 16px !important;
|
|
319
|
-
margin-right:
|
|
360
|
+
margin-right: 4px !important;
|
|
320
361
|
}
|
|
321
362
|
}
|
|
322
363
|
}
|
|
@@ -359,11 +400,11 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
359
400
|
position: relative;
|
|
360
401
|
top: -16px;
|
|
361
402
|
transition: width 0.5s ease-in-out;
|
|
362
|
-
width: calc(100vw - $detail-sidebar-width - $leftnav-width -
|
|
403
|
+
width: calc(100vw - $detail-sidebar-width - $leftnav-width - 24px);
|
|
363
404
|
|
|
364
405
|
&--expanded {
|
|
365
406
|
transition: width 0.5s ease-in-out;
|
|
366
|
-
width: calc(100vw - $detail-sidebar-width - $leftnav-collapsed-width -
|
|
407
|
+
width: calc(100vw - $detail-sidebar-width - $leftnav-collapsed-width - 24px);
|
|
367
408
|
}
|
|
368
409
|
}
|
|
369
410
|
|
|
@@ -373,7 +414,7 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
373
414
|
border-left: apply('containerSidebarBorderLeft')
|
|
374
415
|
}
|
|
375
416
|
height: calc(100vh - $header-height - $detail-header-height);
|
|
376
|
-
margin-left:
|
|
417
|
+
margin-left: 12px;
|
|
377
418
|
overflow-y: auto;
|
|
378
419
|
padding: 16px;
|
|
379
420
|
position: fixed;
|
|
@@ -414,9 +455,9 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
414
455
|
border: 1px solid apply('containerBorder');
|
|
415
456
|
}
|
|
416
457
|
border-radius: 5px;
|
|
417
|
-
margin-bottom:
|
|
458
|
+
margin-bottom: 12px;
|
|
418
459
|
min-height: 80px;
|
|
419
|
-
padding: 12px
|
|
460
|
+
padding: 12px;
|
|
420
461
|
width: 100%;
|
|
421
462
|
|
|
422
463
|
&__title {
|
|
@@ -458,17 +499,17 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
458
499
|
margin-top: 50px;
|
|
459
500
|
height: calc(100vh - $header-height);
|
|
460
501
|
width: calc(100vw - $leftnav-width);
|
|
461
|
-
min-width:
|
|
502
|
+
min-width: 600px;
|
|
462
503
|
overflow-y: scroll;
|
|
463
|
-
transition:
|
|
504
|
+
transition: width 0.5s ease-in-out !important;
|
|
464
505
|
|
|
465
506
|
&.nested-list-container {
|
|
466
507
|
box-shadow: none;
|
|
467
508
|
margin-top: 0px !important;
|
|
468
509
|
padding: 0px !important;
|
|
469
|
-
width: 100%;
|
|
470
510
|
height: calc(100vh - ($header-height + $detail-header-height + 1rem)); // Container fluid padding: 1rem
|
|
471
|
-
|
|
511
|
+
width: 100%;
|
|
512
|
+
transition: width 0.5s ease-in-out !important;
|
|
472
513
|
}
|
|
473
514
|
}
|
|
474
515
|
|
|
@@ -517,3 +558,7 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
517
558
|
}
|
|
518
559
|
}
|
|
519
560
|
}
|
|
561
|
+
|
|
562
|
+
.drawer__body.search__drawer {
|
|
563
|
+
transition: all 0.5s ease-in-out;
|
|
564
|
+
}
|
|
@@ -32,7 +32,7 @@ $platform_drawer_contrasts: (
|
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
&--width-double {
|
|
35
|
-
width:
|
|
35
|
+
width: 1133px !important;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
&--width-full {
|
|
@@ -41,6 +41,10 @@ $platform_drawer_contrasts: (
|
|
|
41
41
|
|
|
42
42
|
&__body {
|
|
43
43
|
padding: 32px;
|
|
44
|
+
|
|
45
|
+
.form__group {
|
|
46
|
+
margin-bottom: 12px;
|
|
47
|
+
}
|
|
44
48
|
}
|
|
45
49
|
|
|
46
50
|
.cui-banner &__body {
|
package/styles/_ng-select.scss
CHANGED
package/styles/_tables.scss
CHANGED
|
@@ -4,7 +4,7 @@ $platform_table_contrasts: (
|
|
|
4
4
|
light: (
|
|
5
5
|
tableBorder: $beacon-gray-border,
|
|
6
6
|
tableHeader: $beacon-dark-blue-100,
|
|
7
|
-
tableHeaderText: $beacon-
|
|
7
|
+
tableHeaderText: $beacon-gray-400,
|
|
8
8
|
tableSortArrow: $beacon-gray-300,
|
|
9
9
|
tableSortArrowActive: $beacon-blue-200,
|
|
10
10
|
tableHeaderFiltering: $beacon-green-300,
|
|
@@ -84,6 +84,7 @@ table.platform-table {
|
|
|
84
84
|
border-left: 0.5px solid apply('tableBorder');
|
|
85
85
|
border-bottom: 0.5px solid apply('tableBorder');
|
|
86
86
|
color: apply('tableHeaderText');
|
|
87
|
+
@include font-weight--semibold;
|
|
87
88
|
|
|
88
89
|
&:last-of-type {
|
|
89
90
|
border-right: 0.5px solid apply('tableBorder');
|