@beacon-interactive-systems-llc/beacon-platform-ui 19.3.8 → 19.3.9
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/_layout.scss +2 -0
- package/styles/_ngx-datepicker.scss +18 -3
- package/styles/_widgets.scss +1 -2
- package/styles/styles.scss +7 -0
package/package.json
CHANGED
package/styles/_layout.scss
CHANGED
|
@@ -800,6 +800,8 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
800
800
|
|
|
801
801
|
.list-view-container.nested-list-container {
|
|
802
802
|
height: unset !important;
|
|
803
|
+
// A min height needs to be set or else drop down panels get cut off when list has little content
|
|
804
|
+
min-height: 72vh;
|
|
803
805
|
}
|
|
804
806
|
}
|
|
805
807
|
|
|
@@ -1,3 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
$platform_datepicker_contrasts: (
|
|
2
|
+
light: (
|
|
3
|
+
dateRangeBackground: $beacon-gray-200
|
|
4
|
+
),
|
|
5
|
+
dark: (
|
|
6
|
+
dateRangeBackground: $beacon-gray-600
|
|
7
|
+
),
|
|
8
|
+
highcontrast: (
|
|
9
|
+
dateRangeBackground: $beacon-gray-600
|
|
10
|
+
)
|
|
11
|
+
);
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
.bs-datepicker-body table.days span.in-range:not(.select-start):not(.disabled):before {
|
|
15
|
+
@include themify($platform_datepicker_contrasts) {
|
|
16
|
+
background: apply('dateRangeBackground');
|
|
17
|
+
}
|
|
18
|
+
}
|
package/styles/_widgets.scss
CHANGED
|
@@ -60,7 +60,7 @@ $platform_widget_contrasts: (
|
|
|
60
60
|
widgetDropShadow: none,
|
|
61
61
|
selectedFilterBackground: $beacon-gray-700,
|
|
62
62
|
selectedFilterAltBackground: $beacon-green-600,
|
|
63
|
-
widgetLineChartText: $beacon-gray-
|
|
63
|
+
widgetLineChartText: $beacon-gray-300,
|
|
64
64
|
suggestionIcon: url('../assets/icons/icon-clarity-DARK.svg'),
|
|
65
65
|
suggestionTextAnimation: $beacon-orange-650,
|
|
66
66
|
suggestionTextNoAnimation: $beacon-gray-300,
|
|
@@ -321,7 +321,6 @@ $platform_widget_contrasts: (
|
|
|
321
321
|
min-width: unset !important;
|
|
322
322
|
position: relative;
|
|
323
323
|
top: 5px;
|
|
324
|
-
width: 36px;
|
|
325
324
|
}
|
|
326
325
|
|
|
327
326
|
.days-current-mcs {
|
package/styles/styles.scss
CHANGED
|
@@ -151,6 +151,13 @@ button, a {
|
|
|
151
151
|
}
|
|
152
152
|
}
|
|
153
153
|
|
|
154
|
+
// MCS chips should size based on content unless on a table or grid page
|
|
155
|
+
.platform-table, .platform-widget.platform-equipment-card, .platform-widget.platform-asset-suite-card {
|
|
156
|
+
.mission-capable-status {
|
|
157
|
+
width: 82px !important;
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
|
|
154
161
|
.status {
|
|
155
162
|
@include themify($platform_contrasts) {
|
|
156
163
|
&--red { color: apply('accentRed') !important; }
|