@beacon-interactive-systems-llc/beacon-platform-ui 19.2.7 → 19.2.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/_layout.scss +6 -2
- package/styles/styles.scss +1 -0
package/package.json
CHANGED
package/styles/_layout.scss
CHANGED
|
@@ -627,6 +627,11 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
627
627
|
height: 100vh;
|
|
628
628
|
width: 100%;
|
|
629
629
|
|
|
630
|
+
&.showing-cui {
|
|
631
|
+
height: calc(100vh - 24px);
|
|
632
|
+
margin-top: 24px;
|
|
633
|
+
}
|
|
634
|
+
|
|
630
635
|
.parent-row {
|
|
631
636
|
@include themify($platform_layout_contrasts) {
|
|
632
637
|
background: apply('fullDetailParentBackground');
|
|
@@ -698,7 +703,6 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
698
703
|
flex-grow: 1;
|
|
699
704
|
padding: 8px 16px;
|
|
700
705
|
overflow-y: auto;
|
|
701
|
-
height: 100vh;
|
|
702
706
|
|
|
703
707
|
.focused-detail-widget {
|
|
704
708
|
@include widget-background-color;
|
|
@@ -732,7 +736,7 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
732
736
|
.list-view-container-widget {
|
|
733
737
|
.list-view-container {
|
|
734
738
|
height: unset !important;
|
|
735
|
-
|
|
739
|
+
|
|
736
740
|
.nested-list-container {
|
|
737
741
|
height: unset !important;
|
|
738
742
|
}
|
package/styles/styles.scss
CHANGED