@beacon-interactive-systems-llc/beacon-platform-ui 17.11.8 → 17.11.10

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/styles/_layout.scss +501 -489
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beacon-interactive-systems-llc/beacon-platform-ui",
3
- "version": "17.11.8",
3
+ "version": "17.11.10",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0",
@@ -1,489 +1,501 @@
1
- $platform_layout_contrasts: (
2
- light: (
3
- detailBackground: $beacon-white,
4
- containerBackground: $beacon-white,
5
- containerHeaderBackground: $beacon-gray-100,
6
- containerInfoBackground: $beacon-white,
7
- containerSidebarTitle: $beacon-gray-400,
8
- containerSidebarTitleBorder: $beacon-gray-300,
9
- containerSidebarLabel: $beacon-gray-400,
10
- containerSidebarBackground: $beacon-dark-blue-50,
11
- containerSidebarBorderLeft: 1px solid $beacon-dark-blue-200,
12
- containerBorder: $beacon-dark-blue-200,
13
- containerShadow: inset 3px 0px 5px 0px $beacon-dark-blue-300,
14
- detailWidgetTitle: $beacon-dark-blue-300,
15
- headerBackground: linear-gradient(180deg, $beacon-dark-blue-700, $beacon-dark-blue-500),
16
- headerText: $beacon-white,
17
- headerModule: $beacon-dark-blue-400,
18
- headerIconHover: $beacon-dark-blue-200,
19
- headerShadow: 0px 3px 6px #00000040,
20
- headerBorder: none,
21
- headerHeight: 78px,
22
- platformLinkColor: $beacon-blue-200,
23
- platformLinkColorLight: $beacon-blue-100,
24
- platformLinkColorMuted: $beacon-dark-blue-300,
25
- platformLinkColorDark: $beacon-dark-blue-500,
26
- platformLinkTableStyle: $beacon-dark-blue-400,
27
- connectivityGreen: $beacon-green-550,
28
- connectivityRed: $beacon-orange-600,
29
- connectivityYellow: $beacon-yellow-500
30
- ),
31
- dark: (
32
- detailBackground: $beacon-gray-700,
33
- containerBackground: $beacon-gray-600,
34
- containerHeaderBackground: $beacon-gray-500,
35
- containerInfoBackground: $beacon-black,
36
- containerSidebarTitle: $beacon-gray-300,
37
- containerSidebarTitleBorder: $beacon-gray-300,
38
- containerSidebarLabel: $beacon-gray-400,
39
- containerSidebarBackground: $beacon-gray-600,
40
- containerSidebarBorderLeft: none,
41
- containerBorder: $beacon-gray-400,
42
- containerShadow: none,
43
- detailWidgetTitle: $beacon-gray-300,
44
- headerBackground: $beacon-gray-600,
45
- headerText: $beacon-gray-300,
46
- headerModule: $beacon-gray-500,
47
- headerIconHover: $beacon-dark-blue-400,
48
- headerShadow: none,
49
- headerBorder: none,
50
- headerHeight: 78px,
51
- platformLinkColor: $beacon-blue-200,
52
- platformLinkColorLight: $beacon-green-550,
53
- platformLinkColorMuted: $beacon-gray-200,
54
- platformLinkColorDark: $beacon-gray-300,
55
- platformLinkTableStyle: $beacon-dark-blue-300,
56
- connectivityGreen: $beacon-green-600,
57
- connectivityRed: $beacon-orange-700,
58
- connectivityYellow: $beacon-yellow-600
59
- ),
60
- highcontrast: (
61
- detailBackground: $beacon-black,
62
- containerBackground: $beacon-black,
63
- containerHeaderBackground: $beacon-gray-700,
64
- containerInfoBackground: $beacon-black,
65
- containerSidebarTitle: $beacon-white,
66
- containerSidebarTitleBorder: $beacon-white,
67
- containerSidebarLabel: $beacon-white,
68
- containerSidebarBackground: $beacon-gray-700,
69
- containerSidebarBorderLeft: none,
70
- containerBorder: $beacon-white,
71
- containerShadow: none,
72
- detailWidgetTitle: $beacon-white,
73
- headerBackground: $beacon-gray-700,
74
- headerText: $beacon-white,
75
- headerModule: $beacon-gray-600,
76
- headerIconHover: $beacon-white,
77
- headerShadow: none,
78
- headerBorder: 1px solid $beacon-gray-500,
79
- headerHeight: 80px, // Expand height slightly to accomodate tabs on a detail header without obscuring the border
80
- platformLinkColor: $highcontrast-bright-blue-200,
81
- platformLinkColorLight: $highcontrast-bright-blue-200,
82
- platformLinkColorMuted: $beacon-dark-blue-300,
83
- platformLinkColorDark: $beacon-dark-blue-300,
84
- platformLinkTableStyle: $highcontrast-bright-blue-200,
85
- connectivityGreen: $highcontrast-bright-green-200,
86
- connectivityRed: $highcontrast-bright-orange-300,
87
- connectivityYellow: $highcontrast-bright-yellow-200
88
- )
89
- );
90
-
91
- $header-height: 50px;
92
- $header-banner-height: 24px;
93
- $detail-header-height: 78px;
94
- $min-detail-width: 1400px;
95
- $leftnav-width: 212px;
96
- $leftnav-collapsed-width: 50px;
97
- $detail-sidebar-width: 300px;
98
-
99
- $detail-container-padding: 1rem;
100
- $detail-view-width: calc(100vw - $leftnav-width);
101
- $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
102
-
103
- .main-view-container {
104
- position: relative;
105
- left: calc(#{$leftnav-width});
106
- width: calc(100vw - $leftnav-width);
107
- transition: all 0.5s ease-in-out;
108
-
109
- &--expanded {
110
- left: calc(#{$leftnav-collapsed-width});
111
- width: calc(100vw - $leftnav-collapsed-width);
112
- transition: all 0.5s ease-in-out;
113
-
114
- .list-view-container, .detail-view-container, .navbar__header {
115
- width: calc(100vw - $leftnav-collapsed-width);
116
- transition: all 0.5s ease-in-out;
117
- }
118
- }
119
- }
120
-
121
- .cui-banner {
122
- .navbar.navbar__header, .leftnav {
123
- margin-top: $header-banner-height !important;
124
- }
125
- .main-view-container {
126
- margin-top: 70px !important;
127
- }
128
- }
129
-
130
- .navbar {
131
- &__header {
132
- @include themify($platform_layout_contrasts) {
133
- background: apply('headerBackground');
134
- color: apply('headerText');
135
- box-shadow: apply('headerShadow');
136
- }
137
-
138
- height: $header-height;
139
- line-height: $header-height;
140
- position: fixed;
141
- top: 0;
142
- transition: all 0.5s ease-in-out;
143
- width: calc(100vw - $leftnav-width);
144
- z-index: 1000;
145
-
146
- .module {
147
- @include themify($platform_layout_contrasts) {
148
- background: apply('headerModule');
149
- color: apply('headerText');
150
- }
151
- text-transform: uppercase;
152
- height: 51px;
153
- }
154
-
155
- .connectivity-indicator {
156
- position: relative;
157
- top: 8px;
158
-
159
- @include themify($platform_layout_contrasts) {
160
- &.green { color: apply('connectivityGreen') }
161
- &.red { color: apply('connectivityRed') }
162
- &.yellow { color: apply('connectivityYellow') }
163
- }
164
- }
165
-
166
- .justify-content-start {
167
- position: relative;
168
- top: -1px;
169
- }
170
-
171
- .justify-content-end {
172
- input {
173
- height: 36px;
174
- font-size: 14px;
175
- width: 240px;
176
- }
177
-
178
- mat-icon {
179
- height: 24px;
180
- width: 24px;
181
- font-size: 24px;
182
- position: relative;
183
- top: 7px;
184
-
185
- &:hover {
186
- @include themify($platform_layout_contrasts) {
187
- color: apply('headerIconHover') !important;
188
- }
189
- cursor: pointer;
190
- }
191
-
192
- .mat-badge-content {
193
- top: -4px;
194
- right: -4px !important;
195
- }
196
- }
197
- }
198
- }
199
- }
200
-
201
- .detail-view-container {
202
- @include themify($platform_layout_contrasts) {
203
- background: apply('containerBackground');
204
- }
205
- height: calc(100vh - $header-height);
206
- margin-top: $header-height;
207
- overflow-y: scroll;
208
- transition: all 0.5s ease-in-out;
209
- width: $detail-view-width;
210
-
211
- &--expanded {
212
- width: $detail-view-width-expanded;
213
- transition: all 0.5s ease-in-out;
214
-
215
- .detail {
216
- min-width: $detail-view-width-expanded !important;
217
- transition: all 0.5s ease-in-out;
218
- }
219
- }
220
-
221
- .detail {
222
- @include themify($platform_layout_contrasts) {
223
- background: apply('detailBackground');
224
- }
225
- height: calc(100vh);
226
- min-width: $detail-view-width;
227
- transition: all 0.5s ease-in-out;
228
- // width: calc($detail-view-width - (2*$detail-container-padding));
229
-
230
- &__header {
231
- @include themify($platform_layout_contrasts) {
232
- background: apply('containerHeaderBackground');
233
- box-shadow: apply('headerShadow');
234
- border-top: apply('headerBorder');
235
- border-bottom: apply('headerBorder');
236
- height: apply('headerHeight');
237
- }
238
-
239
- padding: 12px 12px 60px;
240
- position: absolute;
241
- width: 100%;
242
-
243
- .label {
244
- @include font-color--default;
245
- font-size: 12px;
246
- }
247
-
248
- .value {
249
- @include font-weight--semibold;
250
- @include font-color--default;
251
- font-size: 16px;
252
- }
253
-
254
- .infobar {
255
- @include themify($platform_layout_contrasts) {
256
- background: apply('containerInfoBackground');
257
- border: 1px solid apply('containerBorder');
258
- }
259
- border-radius: 4px;
260
- height: 48px;
261
- line-height: 46px;
262
- display: flex;
263
-
264
- .value {
265
- font-size: 14px;
266
- }
267
-
268
- span {
269
- display: inline-flex;
270
- align-items: center;
271
- }
272
-
273
- &--secondary {
274
- font-size: 12px;
275
- border: none;
276
- height: 40px;
277
-
278
- .value {
279
- font-size: 14px;
280
- }
281
- }
282
-
283
- .mat-icon {
284
- height: 48px;
285
- line-height: 46px;
286
- }
287
- }
288
-
289
- .header-text {
290
- display: flex;
291
- align-items: center;
292
- white-space: pre-wrap;
293
- }
294
-
295
- mat-icon.three-dot-menu-trigger {
296
- position: relative;
297
- top: 13px;
298
-
299
- &--pill {
300
- top: 16px;
301
- }
302
- }
303
- }
304
-
305
- &__tabs {
306
- min-width: 1002px;
307
- width: calc(100% - 32px);
308
-
309
- .action-bar {
310
- //position: absolute;
311
- //right: 10px;
312
- //top: 10px;
313
- }
314
- }
315
-
316
- &__body {
317
- @include themify($platform_layout_contrasts) {
318
- background: apply('detailBackground');
319
- }
320
- display: flex;
321
- height: calc(100vh - $header-height - $detail-header-height);
322
- position: relative;
323
- overflow: hidden;
324
- width: calc(100vw - $leftnav-collapsed-width - $detail-sidebar-width);
325
-
326
- &__section {
327
- overflow: scroll;
328
- padding-top: 16px;
329
- position: relative;
330
- top: -16px;
331
- transition: width 0.5s ease-in-out;
332
- width: calc(100vw - $detail-sidebar-width - $leftnav-width - 32px);
333
-
334
- &--expanded {
335
- transition: width 0.5s ease-in-out;
336
- width: calc(100vw - $detail-sidebar-width - $leftnav-collapsed-width - 32px);
337
- }
338
- }
339
-
340
- &__sidebar {
341
- @include themify($platform_layout_contrasts) {
342
- background: apply('containerSidebarBackground');
343
- border-left: apply('containerSidebarBorderLeft')
344
- }
345
- height: calc(100vh - $header-height - $detail-header-height);
346
- margin-left: 16px;
347
- overflow-y: auto;
348
- padding: 16px;
349
- position: fixed;
350
- right: 0px;
351
- // Account for header/detail/cui banner height, with an extra few px to account for the detail header shadow
352
- top: calc($header-height + $detail-header-height + $header-banner-height + 4px);
353
- width: $detail-sidebar-width;
354
-
355
- &__title {
356
- @include themify($platform_layout_contrasts) {
357
- color: apply('containerSidebarTitle');
358
- border-bottom: 1px solid apply('containerSidebarTitleBorder');
359
- }
360
- @include font-size--md;
361
- @include font-weight--semibold;
362
- border-bottom: 1px solid $beacon-dark-blue-200;
363
- display: flex;
364
- }
365
-
366
- .sidebar-label {
367
- @include themify($platform_layout_contrasts) {
368
- color: apply('containerSidebarLabel');
369
- }
370
- @include font-size--default;
371
- padding-top: 10px;
372
- }
373
-
374
- .sidebar-value {
375
- @include font-color--default;
376
- @include font-size--default-md;
377
- }
378
- }
379
- }
380
-
381
- &__widget {
382
- @include themify($platform_layout_contrasts) {
383
- background: apply('containerBackground');
384
- border: 1px solid apply('containerBorder');
385
- }
386
- border-radius: 5px;
387
- margin-bottom: 16px;
388
- min-height: 80px;
389
- padding: 12px 16px;
390
- width: 100%;
391
-
392
- &__title {
393
- @include themify($platform_layout_contrasts) {
394
- color: apply('detailWidgetTitle');
395
- }
396
- @include font-size--md;
397
- display: flex;
398
- }
399
-
400
- &__body {
401
- @include font-size--default-md;
402
- }
403
-
404
- &--full-height {
405
- min-height: calc(100vh - $header-height - $detail-header-height - 16px);
406
- }
407
- }
408
-
409
- .widget-title-color {
410
- @include themify($platform_layout_contrasts) {
411
- color: apply('detailWidgetTitle');
412
- }
413
- }
414
- }
415
- }
416
-
417
- .mat-drawer-container .mat-drawer-content .main-view-container {
418
- @include themify($platform_layout_contrasts) {
419
- background: apply('containerBackground');
420
- }
421
- }
422
-
423
- .list-view-container {
424
- @include themify($platform_layout_contrasts) {
425
- background: apply('containerBackground');
426
- }
427
- box-shadow: inset 2px -3px 6px #00000029;
428
- margin-top: 50px;
429
- height: calc(100vh - $header-height);
430
- width: calc(100vw - $leftnav-width);
431
- min-width: 800px;
432
- overflow-y: scroll;
433
- transition: all 0.5s ease-in-out;
434
-
435
- &.nested-list-container {
436
- box-shadow: none;
437
- margin-top: 0px !important;
438
- padding: 0px !important;
439
- width: 100%;
440
- height: calc(100vh - ($header-height + $detail-header-height + 1rem)); // Container fluid padding: 1rem
441
- transition: none;
442
- }
443
- }
444
-
445
- .platform-link {
446
- @include font-weight--semibold;
447
-
448
- @include themify($platform_layout_contrasts) {
449
- color: apply('platformLinkColor');
450
- }
451
-
452
- &:hover {
453
- cursor: pointer;
454
- @include font-weight--bold;
455
- text-decoration: underline;
456
- }
457
-
458
- &--light {
459
- @include themify($platform_layout_contrasts) {
460
- color: apply('platformLinkColorLight');
461
- }
462
- }
463
-
464
- &--muted {
465
- @include themify($platform_layout_contrasts) {
466
- color: apply('platformLinkColorMuted');
467
- }
468
- }
469
-
470
- &--dark {
471
- @include themify($platform_layout_contrasts) {
472
- color: apply('platformLinkColorDark');
473
- }
474
- }
475
-
476
- &--underlined {
477
- text-decoration: underline;
478
- }
479
-
480
- &--no-underline {
481
- text-decoration: none;
482
- }
483
-
484
- &--table-cell-link {
485
- @include themify($platform_layout_contrasts) {
486
- color: apply('platformLinkTableStyle');
487
- }
488
- }
489
- }
1
+ $platform_layout_contrasts: (
2
+ light: (
3
+ detailBackground: $beacon-white,
4
+ containerBackground: $beacon-white,
5
+ containerHeaderBackground: $beacon-gray-100,
6
+ containerInfoBackground: $beacon-white,
7
+ containerSidebarTitle: $beacon-gray-400,
8
+ containerSidebarTitleBorder: $beacon-gray-300,
9
+ containerSidebarLabel: $beacon-gray-400,
10
+ containerSidebarBackground: $beacon-dark-blue-50,
11
+ containerSidebarBorderLeft: 1px solid $beacon-dark-blue-200,
12
+ containerBorder: $beacon-dark-blue-200,
13
+ containerShadow: inset 3px 0px 5px 0px $beacon-dark-blue-300,
14
+ detailWidgetTitle: $beacon-dark-blue-300,
15
+ headerBackground: linear-gradient(180deg, $beacon-dark-blue-700, $beacon-dark-blue-500),
16
+ headerText: $beacon-white,
17
+ headerModule: $beacon-dark-blue-400,
18
+ headerIconHover: $beacon-dark-blue-200,
19
+ headerShadow: 0px 3px 6px #00000040,
20
+ headerBorder: none,
21
+ headerHeight: 78px,
22
+ platformLinkColor: $beacon-blue-200,
23
+ platformLinkColorLight: $beacon-blue-100,
24
+ platformLinkColorMuted: $beacon-dark-blue-300,
25
+ platformLinkColorDark: $beacon-dark-blue-500,
26
+ platformLinkTableStyle: $beacon-dark-blue-400,
27
+ connectivityGreen: $beacon-green-550,
28
+ connectivityRed: $beacon-orange-600,
29
+ connectivityYellow: $beacon-yellow-500
30
+ ),
31
+ dark: (
32
+ detailBackground: $beacon-gray-700,
33
+ containerBackground: $beacon-gray-600,
34
+ containerHeaderBackground: $beacon-gray-500,
35
+ containerInfoBackground: $beacon-black,
36
+ containerSidebarTitle: $beacon-gray-300,
37
+ containerSidebarTitleBorder: $beacon-gray-300,
38
+ containerSidebarLabel: $beacon-gray-400,
39
+ containerSidebarBackground: $beacon-gray-600,
40
+ containerSidebarBorderLeft: none,
41
+ containerBorder: $beacon-gray-400,
42
+ containerShadow: none,
43
+ detailWidgetTitle: $beacon-gray-300,
44
+ headerBackground: $beacon-gray-600,
45
+ headerText: $beacon-gray-300,
46
+ headerModule: $beacon-gray-500,
47
+ headerIconHover: $beacon-dark-blue-400,
48
+ headerShadow: none,
49
+ headerBorder: none,
50
+ headerHeight: 78px,
51
+ platformLinkColor: $beacon-blue-200,
52
+ platformLinkColorLight: $beacon-green-550,
53
+ platformLinkColorMuted: $beacon-gray-200,
54
+ platformLinkColorDark: $beacon-gray-300,
55
+ platformLinkTableStyle: $beacon-dark-blue-300,
56
+ connectivityGreen: $beacon-green-600,
57
+ connectivityRed: $beacon-orange-700,
58
+ connectivityYellow: $beacon-yellow-600
59
+ ),
60
+ highcontrast: (
61
+ detailBackground: $beacon-black,
62
+ containerBackground: $beacon-black,
63
+ containerHeaderBackground: $beacon-gray-700,
64
+ containerInfoBackground: $beacon-black,
65
+ containerSidebarTitle: $beacon-white,
66
+ containerSidebarTitleBorder: $beacon-white,
67
+ containerSidebarLabel: $beacon-white,
68
+ containerSidebarBackground: $beacon-gray-700,
69
+ containerSidebarBorderLeft: none,
70
+ containerBorder: $beacon-white,
71
+ containerShadow: none,
72
+ detailWidgetTitle: $beacon-white,
73
+ headerBackground: $beacon-gray-700,
74
+ headerText: $beacon-white,
75
+ headerModule: $beacon-gray-600,
76
+ headerIconHover: $beacon-white,
77
+ headerShadow: none,
78
+ headerBorder: 1px solid $beacon-gray-500,
79
+ headerHeight: 80px, // Expand height slightly to accomodate tabs on a detail header without obscuring the border
80
+ platformLinkColor: $highcontrast-bright-blue-200,
81
+ platformLinkColorLight: $highcontrast-bright-blue-200,
82
+ platformLinkColorMuted: $beacon-dark-blue-300,
83
+ platformLinkColorDark: $beacon-dark-blue-300,
84
+ platformLinkTableStyle: $highcontrast-bright-blue-200,
85
+ connectivityGreen: $highcontrast-bright-green-200,
86
+ connectivityRed: $highcontrast-bright-orange-300,
87
+ connectivityYellow: $highcontrast-bright-yellow-200
88
+ )
89
+ );
90
+
91
+ $header-height: 50px;
92
+ $header-banner-height: 24px;
93
+ $detail-header-height: 78px;
94
+ $min-detail-width: 1400px;
95
+ $leftnav-width: 212px;
96
+ $leftnav-collapsed-width: 50px;
97
+ $detail-sidebar-width: 300px;
98
+
99
+ $detail-container-padding: 1rem;
100
+ $detail-view-width: calc(100vw - $leftnav-width);
101
+ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
102
+
103
+ .main-view-container {
104
+ position: relative;
105
+ left: calc(#{$leftnav-width});
106
+ width: calc(100vw - $leftnav-width);
107
+ transition: all 0.5s ease-in-out;
108
+
109
+ &--expanded {
110
+ left: calc(#{$leftnav-collapsed-width});
111
+ width: calc(100vw - $leftnav-collapsed-width);
112
+ transition: all 0.5s ease-in-out;
113
+
114
+ .list-view-container, .detail-view-container, .navbar__header {
115
+ width: calc(100vw - $leftnav-collapsed-width);
116
+ transition: all 0.5s ease-in-out;
117
+ }
118
+ }
119
+ }
120
+
121
+ .cui-banner {
122
+ .navbar.navbar__header, .leftnav {
123
+ margin-top: $header-banner-height !important;
124
+ }
125
+ .main-view-container {
126
+ margin-top: 70px !important;
127
+
128
+ .list-view-container {
129
+ height: calc(98vh - $header-height);
130
+
131
+ &.nested-component-list-container {
132
+ height: calc(85vh - $header-height) !important;
133
+ }
134
+ }
135
+ }
136
+
137
+ .detail-view-container .detail__body__sidebar {
138
+ height: calc(88vh - $header-height);
139
+ }
140
+ }
141
+
142
+ .navbar {
143
+ &__header {
144
+ @include themify($platform_layout_contrasts) {
145
+ background: apply('headerBackground');
146
+ color: apply('headerText');
147
+ box-shadow: apply('headerShadow');
148
+ }
149
+
150
+ height: $header-height;
151
+ line-height: $header-height;
152
+ position: fixed;
153
+ top: 0;
154
+ transition: all 0.5s ease-in-out;
155
+ width: calc(100vw - $leftnav-width);
156
+ z-index: 1000;
157
+
158
+ .module {
159
+ @include themify($platform_layout_contrasts) {
160
+ background: apply('headerModule');
161
+ color: apply('headerText');
162
+ }
163
+ text-transform: uppercase;
164
+ height: 51px;
165
+ }
166
+
167
+ .connectivity-indicator {
168
+ position: relative;
169
+ top: 8px;
170
+
171
+ @include themify($platform_layout_contrasts) {
172
+ &.green { color: apply('connectivityGreen') }
173
+ &.red { color: apply('connectivityRed') }
174
+ &.yellow { color: apply('connectivityYellow') }
175
+ }
176
+ }
177
+
178
+ .justify-content-start {
179
+ position: relative;
180
+ top: -1px;
181
+ }
182
+
183
+ .justify-content-end {
184
+ input {
185
+ height: 36px;
186
+ font-size: 14px;
187
+ width: 240px;
188
+ }
189
+
190
+ mat-icon {
191
+ height: 24px;
192
+ width: 24px;
193
+ font-size: 24px;
194
+ position: relative;
195
+ top: 7px;
196
+
197
+ &:hover {
198
+ @include themify($platform_layout_contrasts) {
199
+ color: apply('headerIconHover') !important;
200
+ }
201
+ cursor: pointer;
202
+ }
203
+
204
+ .mat-badge-content {
205
+ top: -4px;
206
+ right: -4px !important;
207
+ }
208
+ }
209
+ }
210
+ }
211
+ }
212
+
213
+ .detail-view-container {
214
+ @include themify($platform_layout_contrasts) {
215
+ background: apply('containerBackground');
216
+ }
217
+ height: calc(100vh - $header-height);
218
+ margin-top: $header-height;
219
+ overflow-y: scroll;
220
+ transition: all 0.5s ease-in-out;
221
+ width: $detail-view-width;
222
+
223
+ &--expanded {
224
+ width: $detail-view-width-expanded;
225
+ transition: all 0.5s ease-in-out;
226
+
227
+ .detail {
228
+ min-width: $detail-view-width-expanded !important;
229
+ transition: all 0.5s ease-in-out;
230
+ }
231
+ }
232
+
233
+ .detail {
234
+ @include themify($platform_layout_contrasts) {
235
+ background: apply('detailBackground');
236
+ }
237
+ height: calc(100vh);
238
+ min-width: $detail-view-width;
239
+ transition: all 0.5s ease-in-out;
240
+ // width: calc($detail-view-width - (2*$detail-container-padding));
241
+
242
+ &__header {
243
+ @include themify($platform_layout_contrasts) {
244
+ background: apply('containerHeaderBackground');
245
+ box-shadow: apply('headerShadow');
246
+ border-top: apply('headerBorder');
247
+ border-bottom: apply('headerBorder');
248
+ height: apply('headerHeight');
249
+ }
250
+
251
+ padding: 12px 12px 60px;
252
+ position: absolute;
253
+ width: 100%;
254
+
255
+ .label {
256
+ @include font-color--default;
257
+ font-size: 12px;
258
+ }
259
+
260
+ .value {
261
+ @include font-weight--semibold;
262
+ @include font-color--default;
263
+ font-size: 16px;
264
+ }
265
+
266
+ .infobar {
267
+ @include themify($platform_layout_contrasts) {
268
+ background: apply('containerInfoBackground');
269
+ border: 1px solid apply('containerBorder');
270
+ }
271
+ border-radius: 4px;
272
+ height: 48px;
273
+ line-height: 46px;
274
+ display: flex;
275
+
276
+ .value {
277
+ font-size: 14px;
278
+ }
279
+
280
+ span {
281
+ display: inline-flex;
282
+ align-items: center;
283
+ }
284
+
285
+ &--secondary {
286
+ font-size: 12px;
287
+ border: none;
288
+ height: 40px;
289
+
290
+ .value {
291
+ font-size: 14px;
292
+ }
293
+ }
294
+
295
+ .mat-icon {
296
+ height: 48px;
297
+ line-height: 46px;
298
+ }
299
+ }
300
+
301
+ .header-text {
302
+ display: flex;
303
+ align-items: center;
304
+ white-space: pre-wrap;
305
+ }
306
+
307
+ mat-icon.three-dot-menu-trigger {
308
+ position: relative;
309
+ top: 13px;
310
+
311
+ &--pill {
312
+ top: 16px;
313
+ }
314
+ }
315
+ }
316
+
317
+ &__tabs {
318
+ min-width: 1002px;
319
+ width: calc(100% - 32px);
320
+
321
+ .action-bar {
322
+ //position: absolute;
323
+ //right: 10px;
324
+ //top: 10px;
325
+ }
326
+ }
327
+
328
+ &__body {
329
+ @include themify($platform_layout_contrasts) {
330
+ background: apply('detailBackground');
331
+ }
332
+ display: flex;
333
+ height: calc(100vh - $header-height - $detail-header-height);
334
+ position: relative;
335
+ overflow: hidden;
336
+ width: calc(100vw - $leftnav-collapsed-width - $detail-sidebar-width);
337
+
338
+ &__section {
339
+ overflow: scroll;
340
+ padding-top: 16px;
341
+ position: relative;
342
+ top: -16px;
343
+ transition: width 0.5s ease-in-out;
344
+ width: calc(100vw - $detail-sidebar-width - $leftnav-width - 32px);
345
+
346
+ &--expanded {
347
+ transition: width 0.5s ease-in-out;
348
+ width: calc(100vw - $detail-sidebar-width - $leftnav-collapsed-width - 32px);
349
+ }
350
+ }
351
+
352
+ &__sidebar {
353
+ @include themify($platform_layout_contrasts) {
354
+ background: apply('containerSidebarBackground');
355
+ border-left: apply('containerSidebarBorderLeft')
356
+ }
357
+ height: calc(100vh - $header-height - $detail-header-height);
358
+ margin-left: 16px;
359
+ overflow-y: auto;
360
+ padding: 16px;
361
+ position: fixed;
362
+ right: 0px;
363
+ // Account for header/detail/cui banner height, with an extra few px to account for the detail header shadow
364
+ top: calc($header-height + $detail-header-height + $header-banner-height + 4px);
365
+ width: $detail-sidebar-width;
366
+
367
+ &__title {
368
+ @include themify($platform_layout_contrasts) {
369
+ color: apply('containerSidebarTitle');
370
+ border-bottom: 1px solid apply('containerSidebarTitleBorder');
371
+ }
372
+ @include font-size--md;
373
+ @include font-weight--semibold;
374
+ border-bottom: 1px solid $beacon-dark-blue-200;
375
+ display: flex;
376
+ }
377
+
378
+ .sidebar-label {
379
+ @include themify($platform_layout_contrasts) {
380
+ color: apply('containerSidebarLabel');
381
+ }
382
+ @include font-size--default;
383
+ padding-top: 10px;
384
+ }
385
+
386
+ .sidebar-value {
387
+ @include font-color--default;
388
+ @include font-size--default-md;
389
+ }
390
+ }
391
+ }
392
+
393
+ &__widget {
394
+ @include themify($platform_layout_contrasts) {
395
+ background: apply('containerBackground');
396
+ border: 1px solid apply('containerBorder');
397
+ }
398
+ border-radius: 5px;
399
+ margin-bottom: 16px;
400
+ min-height: 80px;
401
+ padding: 12px 16px;
402
+ width: 100%;
403
+
404
+ &__title {
405
+ @include themify($platform_layout_contrasts) {
406
+ color: apply('detailWidgetTitle');
407
+ }
408
+ @include font-size--md;
409
+ display: flex;
410
+ }
411
+
412
+ &__body {
413
+ @include font-size--default-md;
414
+ }
415
+
416
+ &--full-height {
417
+ min-height: calc(100vh - $header-height - $detail-header-height - 16px);
418
+ }
419
+ }
420
+
421
+ .widget-title-color {
422
+ @include themify($platform_layout_contrasts) {
423
+ color: apply('detailWidgetTitle');
424
+ }
425
+ }
426
+ }
427
+ }
428
+
429
+ .mat-drawer-container .mat-drawer-content .main-view-container {
430
+ @include themify($platform_layout_contrasts) {
431
+ background: apply('containerBackground');
432
+ }
433
+ }
434
+
435
+ .list-view-container {
436
+ @include themify($platform_layout_contrasts) {
437
+ background: apply('containerBackground');
438
+ }
439
+ box-shadow: inset 2px -3px 6px #00000029;
440
+ margin-top: 50px;
441
+ height: calc(100vh - $header-height);
442
+ width: calc(100vw - $leftnav-width);
443
+ min-width: 800px;
444
+ overflow-y: scroll;
445
+ transition: all 0.5s ease-in-out;
446
+
447
+ &.nested-list-container {
448
+ box-shadow: none;
449
+ margin-top: 0px !important;
450
+ padding: 0px !important;
451
+ width: 100%;
452
+ height: calc(100vh - ($header-height + $detail-header-height + 1rem)); // Container fluid padding: 1rem
453
+ transition: none;
454
+ }
455
+ }
456
+
457
+ .platform-link {
458
+ @include font-weight--semibold;
459
+
460
+ @include themify($platform_layout_contrasts) {
461
+ color: apply('platformLinkColor');
462
+ }
463
+
464
+ &:hover {
465
+ cursor: pointer;
466
+ @include font-weight--bold;
467
+ text-decoration: underline;
468
+ }
469
+
470
+ &--light {
471
+ @include themify($platform_layout_contrasts) {
472
+ color: apply('platformLinkColorLight');
473
+ }
474
+ }
475
+
476
+ &--muted {
477
+ @include themify($platform_layout_contrasts) {
478
+ color: apply('platformLinkColorMuted');
479
+ }
480
+ }
481
+
482
+ &--dark {
483
+ @include themify($platform_layout_contrasts) {
484
+ color: apply('platformLinkColorDark');
485
+ }
486
+ }
487
+
488
+ &--underlined {
489
+ text-decoration: underline;
490
+ }
491
+
492
+ &--no-underline {
493
+ text-decoration: none;
494
+ }
495
+
496
+ &--table-cell-link {
497
+ @include themify($platform_layout_contrasts) {
498
+ color: apply('platformLinkTableStyle');
499
+ }
500
+ }
501
+ }