@beacon-interactive-systems-llc/beacon-platform-ui 19.1.7 → 19.1.8
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/_fullcalendar.scss +24 -18
- package/styles/_global-search.scss +1 -1
- package/styles/_gridstack.scss +5 -5
- package/styles/_widgets.scss +13 -12
package/package.json
CHANGED
|
@@ -173,6 +173,10 @@ $platform_fullcalendar_contrasts: (
|
|
|
173
173
|
}
|
|
174
174
|
}
|
|
175
175
|
|
|
176
|
+
.fullcalendar-container {
|
|
177
|
+
height: 100%;
|
|
178
|
+
}
|
|
179
|
+
|
|
176
180
|
.fc-theme-standard td, .fc-theme-standard th,
|
|
177
181
|
.fc-theme-standard .fc-scrollgrid {
|
|
178
182
|
@include themify($platform_fullcalendar_contrasts) {
|
|
@@ -198,26 +202,28 @@ $platform_fullcalendar_contrasts: (
|
|
|
198
202
|
}
|
|
199
203
|
|
|
200
204
|
// Style the date boxes
|
|
201
|
-
.fc .fc-daygrid-day
|
|
202
|
-
|
|
203
|
-
|
|
205
|
+
.fc .fc-daygrid-day {
|
|
206
|
+
height: 116px !important;
|
|
207
|
+
.fc-daygrid-day-frame {
|
|
208
|
+
padding: 8px;
|
|
204
209
|
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
210
|
+
&:hover::before {
|
|
211
|
+
@include themify($platform_fullcalendar_contrasts) {
|
|
212
|
+
background: apply('fullcalendarAddButton');
|
|
213
|
+
color: apply('fullcalendarAddButtonText');
|
|
214
|
+
}
|
|
215
|
+
border-radius: 16px;
|
|
216
|
+
content: "add";
|
|
217
|
+
cursor: pointer;
|
|
218
|
+
display: inline-block;
|
|
219
|
+
font-family: "Material Icons";
|
|
220
|
+
font-size: 16px;
|
|
221
|
+
height: 22px;
|
|
222
|
+
position: absolute;
|
|
223
|
+
right: 10px;
|
|
224
|
+
text-align: center;
|
|
225
|
+
width: 22px;
|
|
209
226
|
}
|
|
210
|
-
border-radius: 16px;
|
|
211
|
-
content: "add";
|
|
212
|
-
cursor: pointer;
|
|
213
|
-
display: inline-block;
|
|
214
|
-
font-family: "Material Icons";
|
|
215
|
-
font-size: 16px;
|
|
216
|
-
height: 22px;
|
|
217
|
-
position: absolute;
|
|
218
|
-
right: 10px;
|
|
219
|
-
text-align: center;
|
|
220
|
-
width: 22px;
|
|
221
227
|
}
|
|
222
228
|
}
|
|
223
229
|
|
package/styles/_gridstack.scss
CHANGED
|
@@ -44,7 +44,7 @@ $platform_gridstack_contrasts: (
|
|
|
44
44
|
|
|
45
45
|
// Setting the column widths - number of columns must match in a corresponding GridstackOptions in the app
|
|
46
46
|
.grid-stack > .grid-stack-item {
|
|
47
|
-
$gridstack-columns:
|
|
47
|
+
$gridstack-columns: 120;
|
|
48
48
|
|
|
49
49
|
@for $i from 1 through $gridstack-columns {
|
|
50
50
|
&[data-gs-width='#{$i}'] { width: (100% / $gridstack-columns) * $i; }
|
|
@@ -113,7 +113,7 @@ $platform_gridstack_contrasts: (
|
|
|
113
113
|
}
|
|
114
114
|
|
|
115
115
|
.grid-stack {
|
|
116
|
-
width:
|
|
116
|
+
width: 100% !important;
|
|
117
117
|
|
|
118
118
|
.grid-stack-item {
|
|
119
119
|
.grid-stack-item-content {
|
|
@@ -124,20 +124,20 @@ $platform_gridstack_contrasts: (
|
|
|
124
124
|
|
|
125
125
|
// A notification center widget looks different on the grid vs on the static dashboard
|
|
126
126
|
.notification-widget {
|
|
127
|
-
height:
|
|
127
|
+
height: 414px;
|
|
128
128
|
|
|
129
129
|
.tab-content {
|
|
130
130
|
max-height: calc(322px - 24px); // Widget height - padding
|
|
131
131
|
overflow-y: scroll;
|
|
132
132
|
}
|
|
133
133
|
|
|
134
|
-
.mat-badge-small {
|
|
134
|
+
.mat-badge-small {
|
|
135
135
|
|
|
136
136
|
&.badge-notification {
|
|
137
137
|
top: -3px !important;
|
|
138
138
|
padding-left: 12px !important;
|
|
139
139
|
}
|
|
140
|
-
|
|
140
|
+
|
|
141
141
|
.mat-badge-content {
|
|
142
142
|
height: 12px;
|
|
143
143
|
width: 12px;
|
package/styles/_widgets.scss
CHANGED
|
@@ -311,8 +311,9 @@ $platform_widget_contrasts: (
|
|
|
311
311
|
}
|
|
312
312
|
|
|
313
313
|
&.notification-pending-approval {
|
|
314
|
-
|
|
315
|
-
|
|
314
|
+
border-radius: 10px;
|
|
315
|
+
width: 324px;
|
|
316
|
+
height: 324px;
|
|
316
317
|
overflow: hidden;
|
|
317
318
|
display: flex;
|
|
318
319
|
flex-direction: column;
|
|
@@ -350,7 +351,7 @@ $platform_widget_contrasts: (
|
|
|
350
351
|
}
|
|
351
352
|
|
|
352
353
|
.notification-center-container {
|
|
353
|
-
.mat-badge-small {
|
|
354
|
+
.mat-badge-small {
|
|
354
355
|
&.badge-notification {
|
|
355
356
|
top: -3px !important;
|
|
356
357
|
padding-left: 12px !important;
|
|
@@ -417,7 +418,7 @@ $platform_widget_contrasts: (
|
|
|
417
418
|
}
|
|
418
419
|
|
|
419
420
|
&.pie-chart-widget {
|
|
420
|
-
height:
|
|
421
|
+
height: 414px;
|
|
421
422
|
width: 100%;
|
|
422
423
|
|
|
423
424
|
@include widget-filter-container();
|
|
@@ -460,7 +461,7 @@ $platform_widget_contrasts: (
|
|
|
460
461
|
|
|
461
462
|
&.count-summary-widget {
|
|
462
463
|
border-radius: 10px;
|
|
463
|
-
|
|
464
|
+
height: 144px;
|
|
464
465
|
padding: 12px;
|
|
465
466
|
width: 324px;
|
|
466
467
|
|
|
@@ -555,7 +556,7 @@ $platform_widget_contrasts: (
|
|
|
555
556
|
}
|
|
556
557
|
|
|
557
558
|
&.equipment-category-widget {
|
|
558
|
-
height:
|
|
559
|
+
height: 604px;
|
|
559
560
|
width: 716px;
|
|
560
561
|
display: flex;
|
|
561
562
|
flex-direction: column;
|
|
@@ -594,7 +595,7 @@ $platform_widget_contrasts: (
|
|
|
594
595
|
@include themify($platform_contrasts) {
|
|
595
596
|
background-color: apply('secondaryBackground') !important;
|
|
596
597
|
}
|
|
597
|
-
|
|
598
|
+
|
|
598
599
|
&.reg { height: 100%; }
|
|
599
600
|
&.sm { height: calc(50% - 5px); }
|
|
600
601
|
|
|
@@ -606,7 +607,7 @@ $platform_widget_contrasts: (
|
|
|
606
607
|
background-color: apply('secondaryBackground') !important;
|
|
607
608
|
}
|
|
608
609
|
}
|
|
609
|
-
|
|
610
|
+
|
|
610
611
|
.asset-block {
|
|
611
612
|
width: 100%;
|
|
612
613
|
min-height: 20px;
|
|
@@ -619,8 +620,8 @@ $platform_widget_contrasts: (
|
|
|
619
620
|
}
|
|
620
621
|
|
|
621
622
|
&.line-chart-widget {
|
|
622
|
-
height:
|
|
623
|
-
width: 322px;
|
|
623
|
+
height: 414px !important;
|
|
624
|
+
width: 322px;
|
|
624
625
|
|
|
625
626
|
@include widget-filter-container();
|
|
626
627
|
.gridline-path {
|
|
@@ -638,7 +639,7 @@ $platform_widget_contrasts: (
|
|
|
638
639
|
ngx-charts-line-chart {
|
|
639
640
|
.line-series path.line {
|
|
640
641
|
stroke-width: 2px;
|
|
641
|
-
}
|
|
642
|
+
}
|
|
642
643
|
|
|
643
644
|
path.area {
|
|
644
645
|
fill-opacity: 0.4 !important;
|
|
@@ -652,7 +653,7 @@ $platform_widget_contrasts: (
|
|
|
652
653
|
rect {
|
|
653
654
|
fill-opacity: 0.4 !important;
|
|
654
655
|
}
|
|
655
|
-
|
|
656
|
+
|
|
656
657
|
.chart-wrapper {
|
|
657
658
|
width: 100%;
|
|
658
659
|
flex: 1 1 auto;
|