@beacon-interactive-systems-llc/beacon-platform-ui 19.3.0 → 19.3.2
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/_checkboxes.scss +45 -0
- package/styles/_fullcalendar.scss +38 -0
- package/styles/_layout.scss +16 -0
- package/styles/_ng-select.scss +4 -0
- package/styles/_typography.scss +1 -1
package/package.json
CHANGED
package/styles/_checkboxes.scss
CHANGED
|
@@ -162,3 +162,48 @@ $platform_checkbox_contrasts: (
|
|
|
162
162
|
}
|
|
163
163
|
}
|
|
164
164
|
}
|
|
165
|
+
|
|
166
|
+
.platform-radio-checkbox {
|
|
167
|
+
display: inline-flex;
|
|
168
|
+
align-items: center;
|
|
169
|
+
cursor: pointer;
|
|
170
|
+
|
|
171
|
+
input {
|
|
172
|
+
position: absolute;
|
|
173
|
+
opacity: 0;
|
|
174
|
+
pointer-events: none;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
&.disabled {
|
|
178
|
+
pointer-events: none;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.radio-indicator {
|
|
182
|
+
width: 16px;
|
|
183
|
+
height: 16px;
|
|
184
|
+
border-radius: 50%;
|
|
185
|
+
@include themify($platform_checkbox_contrasts) {
|
|
186
|
+
border: 2px solid apply('checkboxList');
|
|
187
|
+
}
|
|
188
|
+
display: inline-flex;
|
|
189
|
+
align-items: center;
|
|
190
|
+
justify-content: center;
|
|
191
|
+
transition: all 0.15s ease;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
input:checked + .radio-indicator {
|
|
195
|
+
@include themify($platform_checkbox_contrasts) {
|
|
196
|
+
border-color: apply('checkboxList');
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
input:checked + .radio-indicator::after {
|
|
201
|
+
content: '';
|
|
202
|
+
width: 8px;
|
|
203
|
+
height: 8px;
|
|
204
|
+
border-radius: 50%;
|
|
205
|
+
@include themify($platform_checkbox_contrasts) {
|
|
206
|
+
background-color: apply('checkboxList');
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
}
|
|
@@ -372,6 +372,44 @@ $platform_fullcalendar_contrasts: (
|
|
|
372
372
|
}
|
|
373
373
|
}
|
|
374
374
|
|
|
375
|
+
.fc-more-link {
|
|
376
|
+
@include font-weight--semibold;
|
|
377
|
+
@include font-color--blue--light;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
.fc-popover.fc-more-popover {
|
|
381
|
+
@include themify($platform_fullcalendar_contrasts) {
|
|
382
|
+
.fc-popover-header {
|
|
383
|
+
background: apply('fullcalendarToolbar');
|
|
384
|
+
|
|
385
|
+
.fc-popover-title {
|
|
386
|
+
color: apply('fullcalendarDateLabel');
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.fc-popover-close {
|
|
390
|
+
color: apply('fullcalendarToolbarScroll');
|
|
391
|
+
}
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
.fc-popover-body {
|
|
395
|
+
background: apply('fullcalendarTodayMonthBackground');
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
border-radius: 5px;
|
|
399
|
+
|
|
400
|
+
.fc-popover-header {
|
|
401
|
+
border-top-right-radius: 5px;
|
|
402
|
+
border-top-left-radius: 5px;
|
|
403
|
+
}
|
|
404
|
+
.fc-popover-body {
|
|
405
|
+
border-bottom-right-radius: 5px;
|
|
406
|
+
border-bottom-left-radius: 5px;
|
|
407
|
+
max-height: 425px;
|
|
408
|
+
overflow: scroll;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
}
|
|
412
|
+
|
|
375
413
|
// Other elements on calendar view
|
|
376
414
|
.cal-popover-container {
|
|
377
415
|
.popover-arrow {
|
package/styles/_layout.scss
CHANGED
|
@@ -430,6 +430,13 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
430
430
|
}
|
|
431
431
|
}
|
|
432
432
|
|
|
433
|
+
.header-tab-button {
|
|
434
|
+
top: 110px;
|
|
435
|
+
position: absolute;
|
|
436
|
+
z-index: 1000 !important;
|
|
437
|
+
right: -5px;
|
|
438
|
+
}
|
|
439
|
+
|
|
433
440
|
mat-icon.three-dot-menu-trigger {
|
|
434
441
|
position: relative;
|
|
435
442
|
top: 13px;
|
|
@@ -577,6 +584,15 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
577
584
|
}
|
|
578
585
|
}
|
|
579
586
|
|
|
587
|
+
.widget-pull-up-container {
|
|
588
|
+
margin-top: -30px;
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
.widget-detail-container {
|
|
592
|
+
min-width: 130px;
|
|
593
|
+
flex-shrink: 0;
|
|
594
|
+
}
|
|
595
|
+
|
|
580
596
|
.widget-title-color {
|
|
581
597
|
@include themify($platform_layout_contrasts) {
|
|
582
598
|
color: apply('detailWidgetTitle');
|
package/styles/_ng-select.scss
CHANGED
package/styles/_typography.scss
CHANGED
|
@@ -27,7 +27,7 @@ $platform_text_contrasts: (
|
|
|
27
27
|
textDefaultSemiMuted: $beacon-gray-300,
|
|
28
28
|
textDefaultInvert: $beacon-gray-500,
|
|
29
29
|
textBlue: $beacon-dark-blue-300,
|
|
30
|
-
textBlueLight: $beacon-blue-
|
|
30
|
+
textBlueLight: $beacon-blue-100,
|
|
31
31
|
textBlueDark: $beacon-dark-blue-400,
|
|
32
32
|
textBlueHighlight: $beacon-dark-blue-300,
|
|
33
33
|
textBlueDarkHighlight: $beacon-dark-blue-400,
|