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

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 +497 -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.9",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0",
@@ -1,489 +1,497 @@
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
+ }
132
+
133
+ .detail-view-container .detail__body__sidebar {
134
+ height: calc(88vh - $header-height);
135
+ }
136
+ }
137
+
138
+ .navbar {
139
+ &__header {
140
+ @include themify($platform_layout_contrasts) {
141
+ background: apply('headerBackground');
142
+ color: apply('headerText');
143
+ box-shadow: apply('headerShadow');
144
+ }
145
+
146
+ height: $header-height;
147
+ line-height: $header-height;
148
+ position: fixed;
149
+ top: 0;
150
+ transition: all 0.5s ease-in-out;
151
+ width: calc(100vw - $leftnav-width);
152
+ z-index: 1000;
153
+
154
+ .module {
155
+ @include themify($platform_layout_contrasts) {
156
+ background: apply('headerModule');
157
+ color: apply('headerText');
158
+ }
159
+ text-transform: uppercase;
160
+ height: 51px;
161
+ }
162
+
163
+ .connectivity-indicator {
164
+ position: relative;
165
+ top: 8px;
166
+
167
+ @include themify($platform_layout_contrasts) {
168
+ &.green { color: apply('connectivityGreen') }
169
+ &.red { color: apply('connectivityRed') }
170
+ &.yellow { color: apply('connectivityYellow') }
171
+ }
172
+ }
173
+
174
+ .justify-content-start {
175
+ position: relative;
176
+ top: -1px;
177
+ }
178
+
179
+ .justify-content-end {
180
+ input {
181
+ height: 36px;
182
+ font-size: 14px;
183
+ width: 240px;
184
+ }
185
+
186
+ mat-icon {
187
+ height: 24px;
188
+ width: 24px;
189
+ font-size: 24px;
190
+ position: relative;
191
+ top: 7px;
192
+
193
+ &:hover {
194
+ @include themify($platform_layout_contrasts) {
195
+ color: apply('headerIconHover') !important;
196
+ }
197
+ cursor: pointer;
198
+ }
199
+
200
+ .mat-badge-content {
201
+ top: -4px;
202
+ right: -4px !important;
203
+ }
204
+ }
205
+ }
206
+ }
207
+ }
208
+
209
+ .detail-view-container {
210
+ @include themify($platform_layout_contrasts) {
211
+ background: apply('containerBackground');
212
+ }
213
+ height: calc(100vh - $header-height);
214
+ margin-top: $header-height;
215
+ overflow-y: scroll;
216
+ transition: all 0.5s ease-in-out;
217
+ width: $detail-view-width;
218
+
219
+ &--expanded {
220
+ width: $detail-view-width-expanded;
221
+ transition: all 0.5s ease-in-out;
222
+
223
+ .detail {
224
+ min-width: $detail-view-width-expanded !important;
225
+ transition: all 0.5s ease-in-out;
226
+ }
227
+ }
228
+
229
+ .detail {
230
+ @include themify($platform_layout_contrasts) {
231
+ background: apply('detailBackground');
232
+ }
233
+ height: calc(100vh);
234
+ min-width: $detail-view-width;
235
+ transition: all 0.5s ease-in-out;
236
+ // width: calc($detail-view-width - (2*$detail-container-padding));
237
+
238
+ &__header {
239
+ @include themify($platform_layout_contrasts) {
240
+ background: apply('containerHeaderBackground');
241
+ box-shadow: apply('headerShadow');
242
+ border-top: apply('headerBorder');
243
+ border-bottom: apply('headerBorder');
244
+ height: apply('headerHeight');
245
+ }
246
+
247
+ padding: 12px 12px 60px;
248
+ position: absolute;
249
+ width: 100%;
250
+
251
+ .label {
252
+ @include font-color--default;
253
+ font-size: 12px;
254
+ }
255
+
256
+ .value {
257
+ @include font-weight--semibold;
258
+ @include font-color--default;
259
+ font-size: 16px;
260
+ }
261
+
262
+ .infobar {
263
+ @include themify($platform_layout_contrasts) {
264
+ background: apply('containerInfoBackground');
265
+ border: 1px solid apply('containerBorder');
266
+ }
267
+ border-radius: 4px;
268
+ height: 48px;
269
+ line-height: 46px;
270
+ display: flex;
271
+
272
+ .value {
273
+ font-size: 14px;
274
+ }
275
+
276
+ span {
277
+ display: inline-flex;
278
+ align-items: center;
279
+ }
280
+
281
+ &--secondary {
282
+ font-size: 12px;
283
+ border: none;
284
+ height: 40px;
285
+
286
+ .value {
287
+ font-size: 14px;
288
+ }
289
+ }
290
+
291
+ .mat-icon {
292
+ height: 48px;
293
+ line-height: 46px;
294
+ }
295
+ }
296
+
297
+ .header-text {
298
+ display: flex;
299
+ align-items: center;
300
+ white-space: pre-wrap;
301
+ }
302
+
303
+ mat-icon.three-dot-menu-trigger {
304
+ position: relative;
305
+ top: 13px;
306
+
307
+ &--pill {
308
+ top: 16px;
309
+ }
310
+ }
311
+ }
312
+
313
+ &__tabs {
314
+ min-width: 1002px;
315
+ width: calc(100% - 32px);
316
+
317
+ .action-bar {
318
+ //position: absolute;
319
+ //right: 10px;
320
+ //top: 10px;
321
+ }
322
+ }
323
+
324
+ &__body {
325
+ @include themify($platform_layout_contrasts) {
326
+ background: apply('detailBackground');
327
+ }
328
+ display: flex;
329
+ height: calc(100vh - $header-height - $detail-header-height);
330
+ position: relative;
331
+ overflow: hidden;
332
+ width: calc(100vw - $leftnav-collapsed-width - $detail-sidebar-width);
333
+
334
+ &__section {
335
+ overflow: scroll;
336
+ padding-top: 16px;
337
+ position: relative;
338
+ top: -16px;
339
+ transition: width 0.5s ease-in-out;
340
+ width: calc(100vw - $detail-sidebar-width - $leftnav-width - 32px);
341
+
342
+ &--expanded {
343
+ transition: width 0.5s ease-in-out;
344
+ width: calc(100vw - $detail-sidebar-width - $leftnav-collapsed-width - 32px);
345
+ }
346
+ }
347
+
348
+ &__sidebar {
349
+ @include themify($platform_layout_contrasts) {
350
+ background: apply('containerSidebarBackground');
351
+ border-left: apply('containerSidebarBorderLeft')
352
+ }
353
+ height: calc(100vh - $header-height - $detail-header-height);
354
+ margin-left: 16px;
355
+ overflow-y: auto;
356
+ padding: 16px;
357
+ position: fixed;
358
+ right: 0px;
359
+ // Account for header/detail/cui banner height, with an extra few px to account for the detail header shadow
360
+ top: calc($header-height + $detail-header-height + $header-banner-height + 4px);
361
+ width: $detail-sidebar-width;
362
+
363
+ &__title {
364
+ @include themify($platform_layout_contrasts) {
365
+ color: apply('containerSidebarTitle');
366
+ border-bottom: 1px solid apply('containerSidebarTitleBorder');
367
+ }
368
+ @include font-size--md;
369
+ @include font-weight--semibold;
370
+ border-bottom: 1px solid $beacon-dark-blue-200;
371
+ display: flex;
372
+ }
373
+
374
+ .sidebar-label {
375
+ @include themify($platform_layout_contrasts) {
376
+ color: apply('containerSidebarLabel');
377
+ }
378
+ @include font-size--default;
379
+ padding-top: 10px;
380
+ }
381
+
382
+ .sidebar-value {
383
+ @include font-color--default;
384
+ @include font-size--default-md;
385
+ }
386
+ }
387
+ }
388
+
389
+ &__widget {
390
+ @include themify($platform_layout_contrasts) {
391
+ background: apply('containerBackground');
392
+ border: 1px solid apply('containerBorder');
393
+ }
394
+ border-radius: 5px;
395
+ margin-bottom: 16px;
396
+ min-height: 80px;
397
+ padding: 12px 16px;
398
+ width: 100%;
399
+
400
+ &__title {
401
+ @include themify($platform_layout_contrasts) {
402
+ color: apply('detailWidgetTitle');
403
+ }
404
+ @include font-size--md;
405
+ display: flex;
406
+ }
407
+
408
+ &__body {
409
+ @include font-size--default-md;
410
+ }
411
+
412
+ &--full-height {
413
+ min-height: calc(100vh - $header-height - $detail-header-height - 16px);
414
+ }
415
+ }
416
+
417
+ .widget-title-color {
418
+ @include themify($platform_layout_contrasts) {
419
+ color: apply('detailWidgetTitle');
420
+ }
421
+ }
422
+ }
423
+ }
424
+
425
+ .mat-drawer-container .mat-drawer-content .main-view-container {
426
+ @include themify($platform_layout_contrasts) {
427
+ background: apply('containerBackground');
428
+ }
429
+ }
430
+
431
+ .list-view-container {
432
+ @include themify($platform_layout_contrasts) {
433
+ background: apply('containerBackground');
434
+ }
435
+ box-shadow: inset 2px -3px 6px #00000029;
436
+ margin-top: 50px;
437
+ height: calc(100vh - $header-height);
438
+ width: calc(100vw - $leftnav-width);
439
+ min-width: 800px;
440
+ overflow-y: scroll;
441
+ transition: all 0.5s ease-in-out;
442
+
443
+ &.nested-list-container {
444
+ box-shadow: none;
445
+ margin-top: 0px !important;
446
+ padding: 0px !important;
447
+ width: 100%;
448
+ height: calc(100vh - ($header-height + $detail-header-height + 1rem)); // Container fluid padding: 1rem
449
+ transition: none;
450
+ }
451
+ }
452
+
453
+ .platform-link {
454
+ @include font-weight--semibold;
455
+
456
+ @include themify($platform_layout_contrasts) {
457
+ color: apply('platformLinkColor');
458
+ }
459
+
460
+ &:hover {
461
+ cursor: pointer;
462
+ @include font-weight--bold;
463
+ text-decoration: underline;
464
+ }
465
+
466
+ &--light {
467
+ @include themify($platform_layout_contrasts) {
468
+ color: apply('platformLinkColorLight');
469
+ }
470
+ }
471
+
472
+ &--muted {
473
+ @include themify($platform_layout_contrasts) {
474
+ color: apply('platformLinkColorMuted');
475
+ }
476
+ }
477
+
478
+ &--dark {
479
+ @include themify($platform_layout_contrasts) {
480
+ color: apply('platformLinkColorDark');
481
+ }
482
+ }
483
+
484
+ &--underlined {
485
+ text-decoration: underline;
486
+ }
487
+
488
+ &--no-underline {
489
+ text-decoration: none;
490
+ }
491
+
492
+ &--table-cell-link {
493
+ @include themify($platform_layout_contrasts) {
494
+ color: apply('platformLinkTableStyle');
495
+ }
496
+ }
497
+ }