@beacon-interactive-systems-llc/beacon-platform-ui 17.11.3 → 17.11.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": "17.11.3",
3
+ "version": "17.11.4",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0",
@@ -117,6 +117,15 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
117
117
  }
118
118
  }
119
119
 
120
+ .cui-banner {
121
+ .navbar.navbar__header, .leftnav {
122
+ margin-top: 24px !important;
123
+ }
124
+ .main-view-container {
125
+ margin-top: 70px !important;
126
+ }
127
+ }
128
+
120
129
  .navbar {
121
130
  &__header {
122
131
  @include themify($platform_layout_contrasts) {
@@ -40,7 +40,8 @@ $platform_contrasts: (
40
40
  accentBlue: $beacon-dark-blue-300,
41
41
  accentBlueText: $beacon-white,
42
42
  accentDarkBlue: $beacon-dark-blue-600,
43
- accentDarkBlueText: $beacon-white
43
+ accentDarkBlueText: $beacon-white,
44
+ cuiBanner: $beacon-green-600
44
45
  ),
45
46
  dark: (
46
47
  primaryBackground: $beacon-black,
@@ -83,7 +84,8 @@ $platform_contrasts: (
83
84
  accentBlue: $beacon-dark-blue-300,
84
85
  accentBlueText: $beacon-white,
85
86
  accentDarkBlue: $beacon-dark-blue-600,
86
- accentDarkBlueText: $beacon-white
87
+ accentDarkBlueText: $beacon-white,
88
+ cuiBanner: $beacon-green-750
87
89
  ),
88
90
  highcontrast: (
89
91
  primaryBackground: $beacon-black,
@@ -126,7 +128,8 @@ $platform_contrasts: (
126
128
  accentBlue: $highcontrast-bright-blue-100,
127
129
  accentBlueText: $beacon-black,
128
130
  accentDarkBlue: $highcontrast-bright-blue-300,
129
- accentDarkBlueText: $beacon-white
131
+ accentDarkBlueText: $beacon-white,
132
+ cuiBanner: $highcontrast-bright-green-300
130
133
  )
131
134
  );
132
135
 
@@ -228,3 +228,17 @@ $icon-sizes: 10px, 12px, 14px, 16px, 18px, 20px, 24px, 32px;
228
228
  background: apply('grayBackground') !important;
229
229
  }
230
230
  }
231
+
232
+ .cui-bar {
233
+ @include themify($platform_contrasts) {
234
+ background: apply('cuiBanner') !important;
235
+ color: apply('accentGreenText') !important;
236
+ }
237
+ text-align: center;
238
+ padding: 0;
239
+ position: fixed;
240
+ top: 0;
241
+ left: 0;
242
+ right: 0;
243
+ z-index: 1050;
244
+ }