@beacon-interactive-systems-llc/beacon-platform-ui 19.3.2 → 19.3.4

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beacon-interactive-systems-llc/beacon-platform-ui",
3
- "version": "19.3.2",
3
+ "version": "19.3.4",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.2.14",
6
6
  "@angular/core": "^19.2.14",
@@ -7,11 +7,13 @@ $platform_filter_contrasts: (
7
7
  filterChip: $beacon-green-100,
8
8
  filterChipText: $beacon-black,
9
9
  filterDropdownFocus: $beacon-dark-blue-200,
10
+ filterDropdownActiveText: $beacon-cyan-600,
10
11
  filterDropdownText: $beacon-cyan-600,
11
12
  showingRowBg: $beacon-white,
12
13
  showingRowColor: $beacon-green-500,
13
14
  superTitleBg: $beacon-white,
14
15
  superTitleColor: $beacon-dark-blue-300,
16
+ filterChipClearIcon: $beacon-gray-400
15
17
  ),
16
18
  dark: (
17
19
  filterBackground: $beacon-gray-700,
@@ -21,25 +23,29 @@ $platform_filter_contrasts: (
21
23
  filterChip: $beacon-dark-blue-400,
22
24
  filterChipText: $beacon-gray-300,
23
25
  filterDropdownFocus: $beacon-gray-600,
26
+ filterDropdownActiveText: $beacon-green-650,
24
27
  filterDropdownText: $beacon-green-650,
25
28
  showingRowBg: $beacon-gray-700,
26
29
  showingRowColor: $beacon-green-650,
27
30
  superTitleBg: $beacon-gray-700,
28
31
  superTitleColor: $beacon-gray-300,
32
+ filterChipClearIcon: $beacon-gray-300
29
33
  ),
30
34
  highcontrast: (
31
35
  filterBackground: $beacon-black,
32
36
  filterBorder: $beacon-white,
33
37
  filterShadow: none,
34
38
  filterSearchIcon: $beacon-white,
35
- filterChip: $highcontrast-bright-green-300,
39
+ filterChip: $highcontrast-bright-green-100,
36
40
  filterChipText: $beacon-black,
37
- filterDropdownFocus: $highcontrast-bright-blue-200,
41
+ filterDropdownFocus: $highcontrast-teal-100,
42
+ filterDropdownActiveText: $beacon-black,
38
43
  filterDropdownText: $highcontrast-bright-green-200,
39
44
  showingRowBg: $beacon-black,
40
45
  showingRowColor: $highcontrast-bright-green-200,
41
46
  superTitleBg: $beacon-black,
42
47
  superTitleColor: $beacon-white,
48
+ filterChipClearIcon: $beacon-gray-400
43
49
  )
44
50
  );
45
51
 
@@ -160,7 +166,7 @@ $date-filter-width: calc(1em * 8);
160
166
 
161
167
  .filter-chip {
162
168
  @include font-size--default-md;
163
- @include font-weight--semibold;
169
+ @include font-weight--regular;
164
170
  @include themify($platform_filter_contrasts) {
165
171
  background: apply('filterChip');
166
172
  color: apply('filterChipText');
@@ -173,13 +179,15 @@ $date-filter-width: calc(1em * 8);
173
179
  padding-right: .25rem;
174
180
 
175
181
  &::after {
176
- @include font-color--semi-muted;
177
182
  content: "close";
178
183
  font-family: "Material Icons";
179
184
  position: relative;
180
185
  text-align: end;
181
186
  top: 0.1rem;
182
187
  z-index: 99;
188
+ @include themify($platform_filter_contrasts) {
189
+ color: apply('filterChipClearIcon');
190
+ }
183
191
  }
184
192
  }
185
193
  }
@@ -21,13 +21,14 @@ $platform_form_contrasts: (
21
21
  quillToolbar: $beacon-dark-blue-50,
22
22
  quillButton: $beacon-gray-400,
23
23
  quillInlineContainerBorder: $beacon-dark-blue-200,
24
+ pencilEditIconColor: $beacon-gray-300
24
25
  ),
25
26
  dark: (
26
27
  formText: $beacon-gray-300,
27
28
  formPlaceholderText: $beacon-gray-400,
28
29
  formInputBackground: $beacon-gray-600,
29
30
  formInputBackgroundHover: $beacon-gray-600,
30
- formInputBorder: $beacon-gray-300,
31
+ formInputBorder: $beacon-gray-400,
31
32
  formInputBorderActive: $beacon-dark-blue-400,
32
33
  formControlSelected: $beacon-dark-blue-400,
33
34
  formControlSelectedText: $beacon-cyan-300,
@@ -42,11 +43,12 @@ $platform_form_contrasts: (
42
43
  quillToolbar: $beacon-green-700,
43
44
  quillButton: $beacon-gray-300,
44
45
  quillInlineContainerBorder: $beacon-gray-400,
46
+ pencilEditIconColor: $beacon-gray-300
45
47
  ),
46
48
  highcontrast: (
47
49
  formText: $beacon-white,
48
50
  formPlaceholderText: $beacon-white,
49
- formInputBackground: $beacon-gray-700,
51
+ formInputBackground: $beacon-black,
50
52
  formInputBackgroundHover: $beacon-gray-700,
51
53
  formInputBorder: $beacon-white,
52
54
  formInputBorderActive: $highcontrast-teal-100,
@@ -62,7 +64,8 @@ $platform_form_contrasts: (
62
64
  formHighlightOrangeText: $beacon-black,
63
65
  quillToolbar: $beacon-black,
64
66
  quillButton: $beacon-white,
65
- quillInlineContainerBorder: $beacon-white
67
+ quillInlineContainerBorder: $beacon-white,
68
+ pencilEditIconColor: $beacon-white
66
69
  )
67
70
  );
68
71
 
@@ -218,3 +221,15 @@ $control-width-options: 40px, 56px, 80px, 108px, 124px, 140px;
218
221
  border-radius: 5px;
219
222
  padding: 0.25rem;
220
223
  }
224
+
225
+ .pencil-edit-icon {
226
+ height: 15px !important;
227
+ width: 15px !important;
228
+ font-size: 15px !important;
229
+ @include themify($platform_form_contrasts) {
230
+ color: apply('pencilEditIconColor') !important;
231
+ }
232
+ &:hover {
233
+ cursor: pointer;
234
+ }
235
+ }
@@ -317,6 +317,10 @@ $platform_fullcalendar_contrasts: (
317
317
  &.fc-event.is-subevent {
318
318
  margin-left: 16px;
319
319
  }
320
+
321
+ .event-info {
322
+ overflow: hidden !important;
323
+ }
320
324
  }
321
325
 
322
326
  .fc-daygrid-event, .fc-timegrid-event {
@@ -23,7 +23,7 @@ $platform_gridstack_contrasts: (
23
23
  scrollerBorder: 0.5px solid $beacon-gray-300,
24
24
  scrollerIcon: $beacon-cyan-600,
25
25
  optionsButton: $beacon-orange-500,
26
- optionsButtonText: $beacon-white,
26
+ optionsButtonText: $beacon-gray-300,
27
27
  optionsRowBorder: $beacon-gray-300,
28
28
  optionsTypeRow: $beacon-gray-600,
29
29
  ),
@@ -76,6 +76,9 @@ $platform_gridstack_contrasts: (
76
76
  margin-top: -12px;
77
77
  margin-left: -16px;
78
78
  margin-right: -16px;
79
+ position: sticky !important;
80
+ top: -11.7px !important;
81
+ z-index: 101 !important;
79
82
 
80
83
  .dashboard-buttons {
81
84
  display: flex;
@@ -96,7 +99,6 @@ $platform_gridstack_contrasts: (
96
99
  height: 30px;
97
100
  padding: 0px;
98
101
  width: 32px;
99
-
100
102
  }
101
103
 
102
104
  .dashboard-select {
@@ -74,7 +74,7 @@ $platform_layout_contrasts: (
74
74
  fullDetailParentBackground: $beacon-gray-700,
75
75
  fullDetailParentText: $beacon-gray-400,
76
76
  fullDetailTitleBackground: $beacon-dark-blue-600,
77
- fullDetailTitleText: $beacon-white,
77
+ fullDetailTitleText: $beacon-gray-300,
78
78
  fullDetailStatusBackground: $beacon-gray-600,
79
79
  fullDetailScroller: $beacon-dark-blue-500,
80
80
  fullDetailScrollerBorder: none,
@@ -144,6 +144,8 @@ $detail-sidebar-width: 212px;
144
144
  $detail-tab-body-offset: 128px;
145
145
  $detail-tab-body-sm-offset: 140px;
146
146
  $detail-tab-body-xl-offset: 190px;
147
+ $sidebar-sm-offset: 159px;
148
+ $sidebar-xl-offset: 208px;
147
149
 
148
150
  $detail-container-padding: 1rem;
149
151
  $detail-view-width: calc(100vw - $leftnav-width);
@@ -319,7 +321,7 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
319
321
  }
320
322
 
321
323
  height: $detail-header-height;
322
- padding: 12px 12px 0px;
324
+ padding: 12px 16px;
323
325
  position: absolute;
324
326
  width: 100%;
325
327
 
@@ -342,6 +344,9 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
342
344
 
343
345
  &.xl {
344
346
  height: $detail-header-xl-height;
347
+ .entity-info-header {
348
+ min-height: 31px !important;
349
+ }
345
350
  }
346
351
 
347
352
  .label {
@@ -418,8 +423,9 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
418
423
  }
419
424
 
420
425
  &.header-status {
421
- margin-left: -12px !important;
422
- margin-right: -20px !important;
426
+ margin-left: -16px;
427
+ margin-right: -16px;
428
+ padding-left: 16px;
423
429
  height: 48px;
424
430
  margin-top: 4px;
425
431
  margin-bottom: 4px;
@@ -427,6 +433,10 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
427
433
  @include themify($platform_layout_contrasts) {
428
434
  border-bottom: apply('headerBorder');
429
435
  }
436
+
437
+ button.platform-btn--pill {
438
+ padding: 0px 12px !important;
439
+ }
430
440
  }
431
441
  }
432
442
 
@@ -499,10 +509,10 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
499
509
 
500
510
  &--no-side-bar {
501
511
  display: inline !important;
502
- width: calc(100vw - $leftnav-width - 24px) !important;
512
+ width: calc(100vw - $leftnav-width - 24px);
503
513
 
504
514
  &--expanded {
505
- width: calc(100vw - $leftnav-collapsed-width - 24px) !important;
515
+ width: calc(100vw - $leftnav-collapsed-width - 24px);
506
516
  }
507
517
  }
508
518
  }
@@ -512,6 +522,15 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
512
522
  background: apply('containerSidebarBackground');
513
523
  border-left: apply('containerSidebarBorderLeft')
514
524
  }
525
+
526
+ &.sm-header {
527
+ top: $sidebar-sm-offset;
528
+ }
529
+
530
+ &.xl-header {
531
+ top: $sidebar-xl-offset;
532
+ }
533
+
515
534
  height: calc(100vh - $header-height - $detail-header-height);
516
535
  margin-left: 12px;
517
536
  overflow-y: auto;
@@ -623,10 +642,15 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
623
642
  }
624
643
  }
625
644
 
626
- // do not modify detail__body__section width for mobile based on leftnav open or closed
627
- .main-view-container.main-view-container--expanded.platform-mobile .detail-view-container .detail__body__section {
628
- width: calc(100vw - $detail-sidebar-width - $leftnav-collapsed-width - 24px) !important;
629
- }
645
+ // Do not modify detail__body__section width for mobile based on leftnav open or closed
646
+ .main-view-container.main-view-container--expanded.platform-mobile .detail-view-container {
647
+ .detail__body__section {
648
+ width: calc(100vw - $detail-sidebar-width - $leftnav-collapsed-width - 24px) !important;
649
+ }
650
+ .detail__body__section--no-side-bar, .detail__body__section--no-side-bar--expanded {
651
+ width: calc(100vw - $leftnav-collapsed-width - 24px) !important;
652
+ }
653
+ }
630
654
 
631
655
  .list-view-container {
632
656
  @include themify($platform_layout_contrasts) {
@@ -1,359 +1,359 @@
1
- $platform_leftnav_contrasts: (
2
- light: (
3
- navLevelOne: $beacon-dark-blue-500,
4
- navLevelTwo: $beacon-dark-blue-400,
5
- navText: $beacon-white,
6
- navTextActiveSecondary: $beacon-white,
7
- navCollapseGradient: linear-gradient(90deg, $beacon-dark-blue-700, $beacon-dark-blue-500),
8
- navActiveBackground: rgba(25,55,117,.4),
9
- navActiveIcon: $beacon-orange-300,
10
- navBarLight: $beacon-white,
11
- navBarLightShadow: 0px 3px 6px $beacon-black,
12
- navBarLightBrand: $beacon-dark-blue-700,
13
- navBarLightIcon: $beacon-white,
14
- navListItemHover: lighten($beacon-dark-blue-500, 3%),
15
- navListItemSupport: $beacon-dark-blue-700,
16
- navListItemSbir: $beacon-cyan-600,
17
- navListItemActive: $beacon-cyan-500,
18
- collapseBtnBg: $beacon-white,
19
- collapseBtnColor: $beacon-cyan-500
20
- ),
21
- dark: (
22
- navLevelOne: $beacon-black,
23
- navLevelTwo: $beacon-black,
24
- navText: $beacon-gray-300,
25
- navTextActiveSecondary: $beacon-white,
26
- navCollapseGradient: $beacon-gray-600,
27
- navActiveBackground: $beacon-dark-blue-400,
28
- navActiveIcon: $beacon-orange-300,
29
- navBarLight: $beacon-black,
30
- navBarLightShadow: none,
31
- navBarLightBrand: $beacon-gray-600,
32
- navBarLightIcon: $beacon-white,
33
- navListItemHover: $beacon-dark-blue-700,
34
- navListItemSupport: $beacon-black,
35
- navListItemSbir: $beacon-black,
36
- navListItemActive: $beacon-dark-blue-400,
37
- collapseBtnBg: $beacon-dark-blue-400,
38
- collapseBtnColor: $beacon-gray-300,
39
- ),
40
- highcontrast: (
41
- navLevelOne: $beacon-gray-700,
42
- navLevelTwo: $beacon-gray-700,
43
- navText: $beacon-white,
44
- navTextActiveSecondary: $beacon-black,
45
- navCollapseGradient: $beacon-black,
46
- navActiveBackground: $highcontrast-teal-100,
47
- navActiveIcon: $beacon-orange-300,
48
- navBarLight: $beacon-gray-700,
49
- navBarLightShadow: none,
50
- navBarLightBrand: $beacon-black,
51
- navBarLightIcon: $beacon-white,
52
- navListItemHover: $beacon-dark-blue-500,
53
- navListItemSupport: $beacon-black,
54
- navListItemSbir: $beacon-black,
55
- navListItemActive: $highcontrast-teal-100,
56
- collapseBtnBg: $highcontrast-teal-100,
57
- collapseBtnColor: $beacon-black
58
- )
59
- );
60
-
61
- $leftnav-transition-time: 0.10s;
62
- $dark-mode-transition-time: 0.5s;
63
-
64
- $top-navbar-height: 50px;
65
- $leftnav-width: 212px;
66
- $leftnav-collapsed-width: 50px;
67
- $leftnav-item-height: 40px;
68
- $icon-container-width: 50px;
69
-
70
- .leftnav {
71
- box-shadow: 2px 3px 6px #00000029;
72
- height: 100%;
73
- left: 0;
74
- position: fixed;
75
- top: 0;
76
- width: $leftnav-width;
77
-
78
- &--collapsed {
79
- transition: all 0.5s ease-in-out;
80
- width: $leftnav-collapsed-width;
81
- z-index: 9999;
82
- }
83
-
84
- &__level-one {
85
- @include themify($platform_leftnav_contrasts) {
86
- background: apply('navLevelOne');
87
- }
88
- height: 100%;
89
-
90
- &--expanded {
91
- animation: show 1s;
92
- opacity: 1;
93
- overflow: visible;
94
- width: $leftnav-width;
95
- }
96
-
97
- &--collapsed {
98
- @include themify($platform_leftnav_contrasts) {
99
- background: apply('navCollapseGradient');
100
- }
101
- width: 50px;
102
- }
103
- }
104
-
105
- &__level-two {
106
- @include themify($platform_leftnav_contrasts) {
107
- background: apply('navLevelTwo');
108
- color: apply('navText');
109
- }
110
- height: 100%;
111
- left: 50px;
112
- position: absolute;
113
- width: calc(#{$leftnav-width} - 50px);
114
-
115
- .list-group-item {
116
- border-bottom-left-radius: 10px;
117
- border-top-left-radius: 10px;
118
- margin-left: 20px;
119
- width: calc(#{$leftnav-width} - 50px - 20px);
120
-
121
- .level-two-option-container {
122
- @include themify($platform_leftnav_contrasts) {
123
- color: apply('navText');
124
- }
125
- font-size: 14px;
126
- position: relative;
127
- top: 7px;
128
- }
129
-
130
- &:hover, &--active-secondary, &--active-level-two {
131
- @include themify($platform_leftnav_contrasts) {
132
- background: apply('navActiveBackground') !important;
133
- .level-two-option-container {
134
- color: apply('navTextActiveSecondary');
135
- }
136
- }
137
- }
138
-
139
- mat-icon.link-active {
140
- @include themify($platform_leftnav_contrasts) {
141
- color: apply('navActiveIcon');
142
- }
143
- font-size: 8px;
144
- position: absolute;
145
- right: -6px;
146
- top: 16px;
147
- }
148
- }
149
- }
150
-
151
- &--collapsed {
152
- transition: all 0.5s ease-in-out;
153
- width: 50px;
154
- }
155
-
156
- &--expanded {
157
- transition: all 0.5s ease-in-out;
158
- width: $leftnav-width;
159
- }
160
-
161
- .navbar--light {
162
- @include themify($platform_leftnav_contrasts) {
163
- background: apply('navBarLight') 0% 0% no-repeat padding-box;
164
- }
165
- box-shadow: 0px 3px 6px #00000029;
166
- height: $top-navbar-height;
167
- line-height: $top-navbar-height;
168
- opacity: 1;
169
- padding: 0px;
170
- width: inherit;
171
- z-index: 1000;
172
-
173
- .navbar-brand {
174
- @include themify($platform_leftnav_contrasts) {
175
- background: apply('navBarLightBrand');
176
- }
177
- transition: width $leftnav-transition-time;
178
- height: $top-navbar-height;
179
-
180
- &--collapsed {
181
- width: 50px;
182
- transition: all 0.5s ease-in-out;
183
- }
184
-
185
- &--expanded {
186
- width: $leftnav-width;
187
- transition: all 0.5s ease-in-out;
188
- }
189
-
190
- .brand-icon {
191
- width: $icon-container-width;
192
-
193
- img {
194
- @include themify($platform_leftnav_contrasts) {
195
- background: apply('navBarLightIcon');
196
- }
197
- border-radius: 50%;
198
- left: 12px;
199
- position: relative;
200
- top: -2px;
201
- width: 26px;
202
- }
203
- }
204
-
205
- .collapse-box {
206
- @include themify($platform_leftnav_contrasts) {
207
- background: apply('collapseBtnBg');
208
- }
209
- border-radius: 5px;
210
- height: 36px;
211
- width: 36px;
212
-
213
- mat-icon {
214
- @include themify($platform_leftnav_contrasts) {
215
- color: apply('collapseBtnColor');
216
- }
217
- font-size: 24px;
218
- height: 24px;
219
-
220
- &.collapsed {
221
- width: 20px;
222
- }
223
-
224
- &.open {
225
- width: 24px;
226
- }
227
- }
228
- }
229
- }
230
-
231
- .list-group-item--support, .list-group-item:last-of-type {
232
- margin-bottom: 0px !important;
233
- }
234
- }
235
-
236
- .list-group-item {
237
- background: inherit;
238
- border-width: 0px;
239
- height: $leftnav-item-height;
240
- margin-bottom: 4px;
241
-
242
- &:hover {
243
- @include themify($platform_leftnav_contrasts) {
244
- background: apply('navListItemHover');
245
- }
246
- }
247
-
248
- &:first-of-type {
249
- margin-top: 18px;
250
- }
251
-
252
- &--support {
253
- @include themify($platform_leftnav_contrasts) {
254
- background: apply('navListItemSupport');
255
- }
256
- bottom: 56px;
257
- height: 40px;
258
- position: fixed;
259
- width: 212px;
260
-
261
- &.support-link--collapsed {
262
- bottom: 0px;
263
- width: 50px;
264
- }
265
- }
266
-
267
- &--sbir {
268
- background: transparent;
269
- bottom: 0px;
270
- height: auto;
271
- position: fixed;
272
- width: 212px;
273
-
274
- &.secondary {
275
- @include themify($platform_leftnav_contrasts) {
276
- background-color: apply('navListItemSbir');
277
- }
278
- }
279
- }
280
-
281
- &--last {
282
- bottom: 0px;
283
- height: auto;
284
- position: fixed;
285
- width: $leftnav-width;
286
- }
287
-
288
- .icon-container {
289
- @include themify($platform_leftnav_contrasts) {
290
- color: apply('navText') !important;
291
- }
292
- height: 100%;
293
- width: $icon-container-width;
294
-
295
- mat-icon {
296
- font-size: 20px;
297
- height: 20px;
298
- position: relative;
299
- top: 10px;
300
- width: 20px;
301
- }
302
- }
303
-
304
- .option-container {
305
- @include themify($platform_leftnav_contrasts) {
306
- color: apply('navText') !important;
307
- }
308
- font-size: 14px;
309
- left: -1px;
310
- position: relative;
311
- top: 5px;
312
- width: calc($leftnav-width - $icon-container-width);
313
- }
314
-
315
- mat-icon.favorite {
316
- @include themify($platform_leftnav_contrasts) {
317
- color: apply('navText') !important;
318
- }
319
- font-size: 14px;
320
- opacity: 0.3;
321
- position: absolute;
322
- right: 8px;
323
- top: 12px;
324
-
325
- &:hover {
326
- @include themify($platform_leftnav_contrasts) {
327
- color: apply('navActiveIcon');
328
- }
329
- opacity: 1.0;
330
- }
331
- }
332
-
333
- // Placed after the general styles for icon-container, option-container, etc so the active style is applied correctly
334
- &--active {
335
- @include themify($platform_leftnav_contrasts) {
336
- background: apply('navListItemActive');
337
- color: apply('navTextActiveSecondary');
338
-
339
- &:hover {
340
- background: lighten(apply('navListItemActive'), 2%);
341
- }
342
- }
343
-
344
- .icon-container, .option-container, mat-icon.expansion-icon {
345
- @include themify($platform_leftnav_contrasts) {
346
- color: apply('navTextActiveSecondary') !important;
347
- }
348
- }
349
- }
350
- }
351
-
352
- .brand-icon img {
353
- padding: 1px;
354
- }
355
-
356
- a.disabled {
357
- opacity: 0.4;
358
- }
359
- }
1
+ $platform_leftnav_contrasts: (
2
+ light: (
3
+ navLevelOne: $beacon-dark-blue-500,
4
+ navLevelTwo: $beacon-dark-blue-400,
5
+ navText: $beacon-white,
6
+ navTextActiveSecondary: $beacon-white,
7
+ navCollapseGradient: linear-gradient(90deg, $beacon-dark-blue-700, $beacon-dark-blue-500),
8
+ navActiveBackground: rgba(25,55,117,.4),
9
+ navActiveIcon: $beacon-orange-300,
10
+ navBarLight: $beacon-white,
11
+ navBarLightShadow: 0px 3px 6px $beacon-black,
12
+ navBarLightBrand: $beacon-dark-blue-700,
13
+ navBarLightIcon: $beacon-white,
14
+ navListItemHover: lighten($beacon-dark-blue-500, 3%),
15
+ navListItemSupport: $beacon-dark-blue-700,
16
+ navListItemSbir: $beacon-cyan-600,
17
+ navListItemActive: $beacon-cyan-500,
18
+ collapseBtnBg: $beacon-white,
19
+ collapseBtnColor: $beacon-cyan-500
20
+ ),
21
+ dark: (
22
+ navLevelOne: $beacon-black,
23
+ navLevelTwo: $beacon-black,
24
+ navText: $beacon-gray-300,
25
+ navTextActiveSecondary: $beacon-gray-300,
26
+ navCollapseGradient: $beacon-gray-600,
27
+ navActiveBackground: $beacon-dark-blue-400,
28
+ navActiveIcon: $beacon-orange-300,
29
+ navBarLight: $beacon-black,
30
+ navBarLightShadow: none,
31
+ navBarLightBrand: $beacon-gray-600,
32
+ navBarLightIcon: $beacon-gray-300,
33
+ navListItemHover: $beacon-dark-blue-700,
34
+ navListItemSupport: $beacon-black,
35
+ navListItemSbir: $beacon-black,
36
+ navListItemActive: $beacon-dark-blue-400,
37
+ collapseBtnBg: $beacon-dark-blue-400,
38
+ collapseBtnColor: $beacon-gray-300,
39
+ ),
40
+ highcontrast: (
41
+ navLevelOne: $beacon-gray-700,
42
+ navLevelTwo: $beacon-gray-700,
43
+ navText: $beacon-white,
44
+ navTextActiveSecondary: $beacon-black,
45
+ navCollapseGradient: $beacon-black,
46
+ navActiveBackground: $highcontrast-teal-100,
47
+ navActiveIcon: $beacon-orange-300,
48
+ navBarLight: $beacon-gray-700,
49
+ navBarLightShadow: none,
50
+ navBarLightBrand: $beacon-black,
51
+ navBarLightIcon: $beacon-white,
52
+ navListItemHover: $beacon-dark-blue-500,
53
+ navListItemSupport: $beacon-black,
54
+ navListItemSbir: $beacon-black,
55
+ navListItemActive: $highcontrast-teal-100,
56
+ collapseBtnBg: $highcontrast-teal-100,
57
+ collapseBtnColor: $beacon-black
58
+ )
59
+ );
60
+
61
+ $leftnav-transition-time: 0.10s;
62
+ $dark-mode-transition-time: 0.5s;
63
+
64
+ $top-navbar-height: 50px;
65
+ $leftnav-width: 212px;
66
+ $leftnav-collapsed-width: 50px;
67
+ $leftnav-item-height: 40px;
68
+ $icon-container-width: 50px;
69
+
70
+ .leftnav {
71
+ box-shadow: 2px 3px 6px #00000029;
72
+ height: 100%;
73
+ left: 0;
74
+ position: fixed;
75
+ top: 0;
76
+ width: $leftnav-width;
77
+
78
+ &--collapsed {
79
+ transition: all 0.5s ease-in-out;
80
+ width: $leftnav-collapsed-width;
81
+ z-index: 9999;
82
+ }
83
+
84
+ &__level-one {
85
+ @include themify($platform_leftnav_contrasts) {
86
+ background: apply('navLevelOne');
87
+ }
88
+ height: 100%;
89
+
90
+ &--expanded {
91
+ animation: show 1s;
92
+ opacity: 1;
93
+ overflow: visible;
94
+ width: $leftnav-width;
95
+ }
96
+
97
+ &--collapsed {
98
+ @include themify($platform_leftnav_contrasts) {
99
+ background: apply('navCollapseGradient');
100
+ }
101
+ width: 50px;
102
+ }
103
+ }
104
+
105
+ &__level-two {
106
+ @include themify($platform_leftnav_contrasts) {
107
+ background: apply('navLevelTwo');
108
+ color: apply('navText');
109
+ }
110
+ height: 100%;
111
+ left: 50px;
112
+ position: absolute;
113
+ width: calc(#{$leftnav-width} - 50px);
114
+
115
+ .list-group-item {
116
+ border-bottom-left-radius: 10px;
117
+ border-top-left-radius: 10px;
118
+ margin-left: 20px;
119
+ width: calc(#{$leftnav-width} - 50px - 20px);
120
+
121
+ .level-two-option-container {
122
+ @include themify($platform_leftnav_contrasts) {
123
+ color: apply('navText');
124
+ }
125
+ font-size: 14px;
126
+ position: relative;
127
+ top: 7px;
128
+ }
129
+
130
+ &:hover, &--active-secondary, &--active-level-two {
131
+ @include themify($platform_leftnav_contrasts) {
132
+ background: apply('navActiveBackground') !important;
133
+ .level-two-option-container {
134
+ color: apply('navTextActiveSecondary');
135
+ }
136
+ }
137
+ }
138
+
139
+ mat-icon.link-active {
140
+ @include themify($platform_leftnav_contrasts) {
141
+ color: apply('navActiveIcon');
142
+ }
143
+ font-size: 8px;
144
+ position: absolute;
145
+ right: -6px;
146
+ top: 16px;
147
+ }
148
+ }
149
+ }
150
+
151
+ &--collapsed {
152
+ transition: all 0.5s ease-in-out;
153
+ width: 50px;
154
+ }
155
+
156
+ &--expanded {
157
+ transition: all 0.5s ease-in-out;
158
+ width: $leftnav-width;
159
+ }
160
+
161
+ .navbar--light {
162
+ @include themify($platform_leftnav_contrasts) {
163
+ background: apply('navBarLight') 0% 0% no-repeat padding-box;
164
+ }
165
+ box-shadow: 0px 3px 6px #00000029;
166
+ height: $top-navbar-height;
167
+ line-height: $top-navbar-height;
168
+ opacity: 1;
169
+ padding: 0px;
170
+ width: inherit;
171
+ z-index: 1000;
172
+
173
+ .navbar-brand {
174
+ @include themify($platform_leftnav_contrasts) {
175
+ background: apply('navBarLightBrand');
176
+ }
177
+ transition: width $leftnav-transition-time;
178
+ height: $top-navbar-height;
179
+
180
+ &--collapsed {
181
+ width: 50px;
182
+ transition: all 0.5s ease-in-out;
183
+ }
184
+
185
+ &--expanded {
186
+ width: $leftnav-width;
187
+ transition: all 0.5s ease-in-out;
188
+ }
189
+
190
+ .brand-icon {
191
+ width: $icon-container-width;
192
+
193
+ img {
194
+ @include themify($platform_leftnav_contrasts) {
195
+ background: apply('navBarLightIcon');
196
+ }
197
+ border-radius: 50%;
198
+ left: 12px;
199
+ position: relative;
200
+ top: -2px;
201
+ width: 26px;
202
+ }
203
+ }
204
+
205
+ .collapse-box {
206
+ @include themify($platform_leftnav_contrasts) {
207
+ background: apply('collapseBtnBg');
208
+ }
209
+ border-radius: 5px;
210
+ height: 36px;
211
+ width: 36px;
212
+
213
+ mat-icon {
214
+ @include themify($platform_leftnav_contrasts) {
215
+ color: apply('collapseBtnColor');
216
+ }
217
+ font-size: 24px;
218
+ height: 24px;
219
+
220
+ &.collapsed {
221
+ width: 20px;
222
+ }
223
+
224
+ &.open {
225
+ width: 24px;
226
+ }
227
+ }
228
+ }
229
+ }
230
+
231
+ .list-group-item--support, .list-group-item:last-of-type {
232
+ margin-bottom: 0px !important;
233
+ }
234
+ }
235
+
236
+ .list-group-item {
237
+ background: inherit;
238
+ border-width: 0px;
239
+ height: $leftnav-item-height;
240
+ margin-bottom: 4px;
241
+
242
+ &:hover {
243
+ @include themify($platform_leftnav_contrasts) {
244
+ background: apply('navListItemHover');
245
+ }
246
+ }
247
+
248
+ &:first-of-type {
249
+ margin-top: 18px;
250
+ }
251
+
252
+ &--support {
253
+ @include themify($platform_leftnav_contrasts) {
254
+ background: apply('navListItemSupport');
255
+ }
256
+ bottom: 56px;
257
+ height: 40px;
258
+ position: fixed;
259
+ width: 212px;
260
+
261
+ &.support-link--collapsed {
262
+ bottom: 0px;
263
+ width: 50px;
264
+ }
265
+ }
266
+
267
+ &--sbir {
268
+ background: transparent;
269
+ bottom: 0px;
270
+ height: auto;
271
+ position: fixed;
272
+ width: 212px;
273
+
274
+ &.secondary {
275
+ @include themify($platform_leftnav_contrasts) {
276
+ background-color: apply('navListItemSbir');
277
+ }
278
+ }
279
+ }
280
+
281
+ &--last {
282
+ bottom: 0px;
283
+ height: auto;
284
+ position: fixed;
285
+ width: $leftnav-width;
286
+ }
287
+
288
+ .icon-container {
289
+ @include themify($platform_leftnav_contrasts) {
290
+ color: apply('navText') !important;
291
+ }
292
+ height: 100%;
293
+ width: $icon-container-width;
294
+
295
+ mat-icon {
296
+ font-size: 20px;
297
+ height: 20px;
298
+ position: relative;
299
+ top: 10px;
300
+ width: 20px;
301
+ }
302
+ }
303
+
304
+ .option-container {
305
+ @include themify($platform_leftnav_contrasts) {
306
+ color: apply('navText') !important;
307
+ }
308
+ font-size: 14px;
309
+ left: -1px;
310
+ position: relative;
311
+ top: 5px;
312
+ width: calc($leftnav-width - $icon-container-width);
313
+ }
314
+
315
+ mat-icon.favorite {
316
+ @include themify($platform_leftnav_contrasts) {
317
+ color: apply('navText') !important;
318
+ }
319
+ font-size: 14px;
320
+ opacity: 0.3;
321
+ position: absolute;
322
+ right: 8px;
323
+ top: 12px;
324
+
325
+ &:hover {
326
+ @include themify($platform_leftnav_contrasts) {
327
+ color: apply('navActiveIcon');
328
+ }
329
+ opacity: 1.0;
330
+ }
331
+ }
332
+
333
+ // Placed after the general styles for icon-container, option-container, etc so the active style is applied correctly
334
+ &--active {
335
+ @include themify($platform_leftnav_contrasts) {
336
+ background: apply('navListItemActive');
337
+ color: apply('navTextActiveSecondary');
338
+
339
+ &:hover {
340
+ background: lighten(apply('navListItemActive'), 2%);
341
+ }
342
+ }
343
+
344
+ .icon-container, .option-container, mat-icon.expansion-icon {
345
+ @include themify($platform_leftnav_contrasts) {
346
+ color: apply('navTextActiveSecondary') !important;
347
+ }
348
+ }
349
+ }
350
+ }
351
+
352
+ .brand-icon img {
353
+ padding: 1px;
354
+ }
355
+
356
+ a.disabled {
357
+ opacity: 0.4;
358
+ }
359
+ }
@@ -10,7 +10,7 @@ $platform_drawer_contrasts: (
10
10
  drawerFooterShadow: none
11
11
  ),
12
12
  highcontrast: (
13
- drawerBackground: $beacon-black,
13
+ drawerBackground: $beacon-gray-700,
14
14
  drawerFooterBackground: $beacon-gray-600,
15
15
  drawerFooterShadow: none
16
16
  )
@@ -15,17 +15,17 @@ $platform_tab_contrasts: (
15
15
  tabLabelActive: $beacon-gray-400,
16
16
  tabBackgroundActive: $beacon-dark-blue-700,
17
17
  tabBackgroundActiveAlt: $beacon-orange-700,
18
- tabDividerBorder: $beacon-gray-700,
18
+ tabDividerBorder: $beacon-gray-400,
19
19
  tabRedCircleIcon: $beacon-orange-500,
20
20
  tabOrangeCircleIcon: $beacon-orange-400,
21
21
  ),
22
22
  highcontrast: (
23
23
  popoverHeaderBackground: $beacon-gray-700,
24
24
  tabLabel: $beacon-white,
25
- tabLabelActive: $beacon-white,
26
- tabBackgroundActive: $beacon-dark-blue-700,
25
+ tabLabelActive: $beacon-black,
26
+ tabBackgroundActive: $highcontrast-teal-100,
27
27
  tabBackgroundActiveAlt: $highcontrast-bright-orange-200,
28
- tabDividerBorder: $beacon-gray-100,
28
+ tabDividerBorder: $beacon-white,
29
29
  tabRedCircleIcon: $highcontrast-bright-orange-300,
30
30
  tabOrangeCircleIcon: $highcontrast-bright-orange-100,
31
31
  )
@@ -88,8 +88,16 @@ $platform_tab_contrasts: (
88
88
  }
89
89
 
90
90
  &:not(.mdc-tab--active):not(:last-child):not(:has(+ .mat-mdc-tab.mdc-tab--active)) {
91
- @include themify($platform_tab_contrasts) {
92
- border-right: 1px solid apply('tabDividerBorder');
91
+ &::after {
92
+ content: '';
93
+ position: absolute;
94
+ top: 6px;
95
+ bottom: 6px;
96
+ right: 0;
97
+ width: 1px;
98
+ @include themify($platform_tab_contrasts) {
99
+ background-color: apply('tabDividerBorder') !important;
100
+ }
93
101
  }
94
102
  }
95
103
 
@@ -145,24 +153,23 @@ $platform_tab_contrasts: (
145
153
  }
146
154
  }
147
155
 
148
- @mixin tab-circle-icon {
149
- &.tab-with-circle-icon {
150
- &.red::after {
151
- @include material-icons-circle-sm();
152
- top: -12px;
153
- right: 3px;
154
- @include themify($platform_tab_contrasts) {
155
- color: apply('tabRedCircleIcon');
156
- }
156
+ // tabs borders were updated to use ::after this is an updated way to add status dot to tabs
157
+ .status-dot {
158
+ &.red::after {
159
+ @include material-icons-circle-sm();
160
+ top: 3px;
161
+ right: 4px;
162
+ @include themify($platform_tab_contrasts) {
163
+ color: apply('tabRedCircleIcon');
157
164
  }
165
+ }
158
166
 
159
- &.orange::after {
160
- @include material-icons-circle-sm();
161
- top: -12px;
162
- right: 3px;
163
- @include themify($platform_tab_contrasts) {
164
- color: apply('tabOrangeCircleIcon');
165
- }
167
+ &.orange::after {
168
+ @include material-icons-circle-sm();
169
+ top: 3px;
170
+ right: 4px;
171
+ @include themify($platform_tab_contrasts) {
172
+ color: apply('tabOrangeCircleIcon');
166
173
  }
167
174
  }
168
175
  }
@@ -182,7 +189,7 @@ $platform_tab_contrasts: (
182
189
 
183
190
  .mat-mdc-tab-labels {
184
191
  .mat-mdc-tab {
185
- @include tab-circle-icon();
192
+ letter-spacing: 0 !important;
186
193
  }
187
194
  }
188
195
  }
@@ -203,12 +210,6 @@ $platform_tab_contrasts: (
203
210
  @include platform-tab-label-styles();
204
211
 
205
212
  margin-bottom: 12px;
206
-
207
- .mat-mdc-tab-labels {
208
- .mat-mdc-tab {
209
- @include tab-circle-icon();
210
- }
211
- }
212
213
  }
213
214
  }
214
215
  }
@@ -226,7 +227,6 @@ $platform_tab_contrasts: (
226
227
  .mat-mdc-tab-labels {
227
228
  .mat-mdc-tab {
228
229
  @include platform-alt-tab-common-styles();
229
- @include tab-circle-icon();
230
230
 
231
231
  &:first-of-type {
232
232
  margin-left: 12px;
@@ -256,10 +256,10 @@ $platform_tab_contrasts: (
256
256
  @include platform-tab-common-styles();
257
257
 
258
258
  .mat-mdc-tab-header {
259
+ z-index: 100 !important;
259
260
  .mat-mdc-tab-labels {
260
261
  .mat-mdc-tab {
261
262
  @include platform-alt-tab-common-styles();
262
- @include tab-circle-icon();
263
263
  }
264
264
  }
265
265
  }
@@ -41,8 +41,8 @@ $min-dropdown-panel-width: 215px;
41
41
  }
42
42
 
43
43
  .ng-dropdown-panel {
44
- min-width: $min-dropdown-panel-width;
45
- width: fit-content;
44
+ min-width: fit-content !important;
45
+ width: 100%;
46
46
 
47
47
  .ng-dropdown-panel-items {
48
48
  max-height: 200px;
@@ -147,7 +147,7 @@ $min-dropdown-panel-width: 215px;
147
147
  @include font-weight--semibold;
148
148
  @include themify($platform_filter_contrasts) {
149
149
  background: apply('filterDropdownFocus') !important;
150
- color: apply('filterDropdownText') !important;
150
+ color: apply('filterDropdownActiveText') !important;
151
151
  }
152
152
 
153
153
  .ng-value-label {
@@ -157,12 +157,25 @@ $min-dropdown-panel-width: 215px;
157
157
 
158
158
  .ng-select-container {
159
159
  background: transparent !important;
160
+
161
+ &:not(.ng-has-value) .ng-arrow-wrapper::before {
162
+ @include themify($platform_filter_contrasts) {
163
+ color: apply('filterDropdownText') !important;
164
+ }
165
+ }
166
+
160
167
  &.ng-has-value {
161
168
  @include themify($platform_filter_contrasts) {
162
169
  background: apply('filterDropdownFocus') !important;
163
170
  }
164
171
 
165
172
  border-radius: 4px;
173
+
174
+ .ng-arrow-wrapper::before {
175
+ @include themify($platform_filter_contrasts) {
176
+ color: apply('filterDropdownActiveText') !important;
177
+ }
178
+ }
166
179
  }
167
180
 
168
181
  .ng-value-container {
@@ -245,4 +245,4 @@ $platform_popover_contrasts: (
245
245
  }
246
246
  }
247
247
  }
248
- }
248
+ }
@@ -206,7 +206,7 @@ table.platform-table {
206
206
  }
207
207
 
208
208
  &--expandable {
209
- margin-top: 5px;
209
+ margin-top: 8px;
210
210
  thead {
211
211
  visibility: collapse;
212
212
  th {
@@ -65,11 +65,11 @@ $platform_contrasts: (
65
65
  accentGreen: $beacon-green-750,
66
66
  accentGreenText: $beacon-gray-300,
67
67
  accentGray: $beacon-gray-400,
68
- accentGrayText: $beacon-gray-200,
68
+ accentGrayText: $beacon-gray-300,
69
69
  accentLightGray: $beacon-gray-700,
70
- accentLightGrayText: $beacon-gray-200,
70
+ accentLightGrayText: $beacon-gray-300,
71
71
  accentDarkGray: $beacon-gray-400,
72
- accentDarkGrayText: $beacon-white,
72
+ accentDarkGrayText: $beacon-gray-300,
73
73
  accentLightRed: $beacon-orange-50,
74
74
  accentLightRedText: $beacon-black,
75
75
  accentLightYellow: $beacon-yellow-100,
@@ -79,19 +79,19 @@ $platform_contrasts: (
79
79
  accentOrange: $beacon-orange-400,
80
80
  accentOrangeText: $beacon-black,
81
81
  accentMidOrange: $beacon-orange-400,
82
- accentMidOrangeText: $beacon-white,
82
+ accentMidOrangeText: $beacon-gray-300,
83
83
  accentLightOrange: $beacon-orange-400,
84
- accentLightOrangeText: $beacon-gray-200,
84
+ accentLightOrangeText: $beacon-gray-300,
85
85
  accentDarkOrange: $beacon-orange-500,
86
- accentDarkOrangeText: $beacon-gray-200,
86
+ accentDarkOrangeText: $beacon-gray-300,
87
87
  accentCyan: $beacon-cyan-300,
88
88
  accentCyanText: $beacon-black,
89
89
  accentDarkCyan: $beacon-cyan-600,
90
- accentDarkCyanText: $beacon-white,
90
+ accentDarkCyanText: $beacon-gray-300,
91
91
  accentBlue: $beacon-dark-blue-300,
92
- accentBlueText: $beacon-white,
92
+ accentBlueText: $beacon-gray-300,
93
93
  accentDarkBlue: $beacon-dark-blue-600,
94
- accentDarkBlueText: $beacon-white,
94
+ accentDarkBlueText: $beacon-gray-300,
95
95
  cuiBanner: $beacon-green-750,
96
96
  scrollBar: $beacon-dark-blue-300,
97
97
  scrollBarBackground: $beacon-gray-600,
@@ -20,6 +20,7 @@ $platform_text_contrasts: (
20
20
  textOrange: $beacon-orange-300,
21
21
  textOrangeDark: $beacon-orange-500,
22
22
  textDarkBackground: $beacon-gray-100,
23
+ entityTitleColor: $beacon-dark-blue-500,
23
24
  ),
24
25
  dark: (
25
26
  textDefaultPrimary: $beacon-gray-300,
@@ -40,6 +41,7 @@ $platform_text_contrasts: (
40
41
  textOrange: $beacon-orange-400,
41
42
  textOrangeDark: $beacon-orange-500,
42
43
  textDarkBackground: $beacon-gray-300,
44
+ entityTitleColor: $beacon-dark-blue-300,
43
45
  ),
44
46
  highcontrast: (
45
47
  textDefaultPrimary: $beacon-white,
@@ -60,6 +62,7 @@ $platform_text_contrasts: (
60
62
  textOrange: $highcontrast-bright-orange-100,
61
63
  textOrangeDark: $highcontrast-bright-orange-200,
62
64
  textDarkBackground: $beacon-white,
65
+ entityTitleColor: $beacon-white,
63
66
  )
64
67
  );
65
68
 
@@ -123,6 +126,7 @@ $font-sizes: 8px, 10px, 12px, 14px, 16px, 18px, 20px, 22px, 24px, 28px, 32px;
123
126
  &--dark-orange { color:apply('textOrangeDark') !important; }
124
127
 
125
128
  &--dark-background { color:apply('textDarkBackground') !important; }
129
+ &--entity-title { color:apply('entityTitleColor') !important; }
126
130
  }
127
131
 
128
132
  // Use white and black sparingly - when it is guaranteed they'll be visible on a background
@@ -593,7 +593,7 @@ $platform_widget_contrasts: (
593
593
  .summary-container {
594
594
  display: flex;
595
595
  flex-wrap: wrap;
596
- gap: 8px;
596
+ gap: 4px;
597
597
  justify-content: space-between;
598
598
  margin-top: 12px;
599
599
  width: 100%;
@@ -606,8 +606,7 @@ $platform_widget_contrasts: (
606
606
  flex-grow: 1;
607
607
  justify-content: space-between;
608
608
  height: 64px;
609
- max-width: 92px;
610
- min-width: 58px;
609
+ min-width: 60px;
611
610
  padding: 8px 12px;
612
611
  text-align: center;
613
612
 
@@ -685,6 +684,8 @@ $platform_widget_contrasts: (
685
684
 
686
685
  &.reg { height: 100%; }
687
686
  &.sm { height: calc(50% - 5px); }
687
+ &.width-for-no-stack { width: 19% !important; }
688
+ &.width-for-stack { width: 32% !important; }
688
689
 
689
690
  .sticky-header {
690
691
  position: sticky;
@@ -74,6 +74,7 @@ button, a {
74
74
 
75
75
  .highlight-chip {
76
76
  border-radius: 3px;
77
+ padding: 0px 6px !important;
77
78
 
78
79
  &.rounded-chip {
79
80
  border-radius: 8px;
@@ -275,3 +276,9 @@ $border-radii: 3px, 5px, 8px, 10px, 12px;
275
276
  text-align: center;
276
277
  }
277
278
  }
279
+
280
+ .inline-flex-icon-wrapper {
281
+ display: inline-flex;
282
+ align-items: center;
283
+ justify-content: center;
284
+ }