@beacon-interactive-systems-llc/beacon-platform-ui 17.12.5 → 17.12.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/styles/_widgets.scss +41 -0
package/package.json
CHANGED
package/styles/_widgets.scss
CHANGED
|
@@ -11,6 +11,7 @@ $platform_widget_contrasts: (
|
|
|
11
11
|
widgetHeaderColor: $beacon-black,
|
|
12
12
|
widgetTitle: $beacon-dark-blue-300,
|
|
13
13
|
widgetInfoBox: $beacon-gray-50,
|
|
14
|
+
pendingNotificationBackground: $beacon-gray-100,
|
|
14
15
|
eventContainerBg: $beacon-gray-300,
|
|
15
16
|
loginContainerBackground: $beacon-dark-blue-500,
|
|
16
17
|
loginFormBackground: $beacon-white,
|
|
@@ -26,6 +27,7 @@ $platform_widget_contrasts: (
|
|
|
26
27
|
widgetHeaderColor: $beacon-gray-300,
|
|
27
28
|
widgetTitle: $beacon-gray-300,
|
|
28
29
|
widgetInfoBox: $beacon-gray-600,
|
|
30
|
+
pendingNotificationBackground: $beacon-gray-700,
|
|
29
31
|
eventContainerBg: $beacon-gray-400,
|
|
30
32
|
loginContainerBackground: $beacon-dark-blue-500,
|
|
31
33
|
loginFormBackground: $beacon-gray-600,
|
|
@@ -41,6 +43,7 @@ $platform_widget_contrasts: (
|
|
|
41
43
|
widgetHeaderColor: $beacon-white,
|
|
42
44
|
widgetTitle: $beacon-white,
|
|
43
45
|
widgetInfoBox: $beacon-gray-700,
|
|
46
|
+
pendingNotificationBackground: $beacon-gray-700,
|
|
44
47
|
eventContainerBg: $beacon-gray-400,
|
|
45
48
|
loginContainerBackground: $beacon-dark-blue-500,
|
|
46
49
|
loginFormBackground: $beacon-black,
|
|
@@ -277,6 +280,44 @@ $platform_widget_contrasts: (
|
|
|
277
280
|
background: apply('widgetInfoBox') !important;
|
|
278
281
|
}
|
|
279
282
|
}
|
|
283
|
+
|
|
284
|
+
&.notification-pending-approval {
|
|
285
|
+
width: 322px;
|
|
286
|
+
height: 322px;
|
|
287
|
+
overflow: hidden;
|
|
288
|
+
display: flex;
|
|
289
|
+
flex-direction: column;
|
|
290
|
+
|
|
291
|
+
.title-row {
|
|
292
|
+
position: sticky;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.notification-container {
|
|
296
|
+
overflow-y: auto;
|
|
297
|
+
flex: 1;
|
|
298
|
+
.notification-pending-approval-row {
|
|
299
|
+
@include themify($platform_widget_contrasts) {
|
|
300
|
+
background: apply('pendingNotificationBackground') !important;
|
|
301
|
+
}
|
|
302
|
+
border-radius: 5px;
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
.mat-badge-small {
|
|
307
|
+
top: 6px;
|
|
308
|
+
padding-left: 12px;
|
|
309
|
+
.mat-badge-content {
|
|
310
|
+
height: 12px;
|
|
311
|
+
width: 12px;
|
|
312
|
+
font-size: 10px;
|
|
313
|
+
line-height: 12px;
|
|
314
|
+
font-weight: 700;
|
|
315
|
+
@include themify($platform_contrasts) {
|
|
316
|
+
color: apply('accentGrayText') !important;
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
}
|
|
280
321
|
}
|
|
281
322
|
|
|
282
323
|
/*
|