@beacon-interactive-systems-llc/beacon-platform-ui 19.0.13 → 19.0.15
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 +7 -30
- package/styles/_tables.scss +12 -0
package/package.json
CHANGED
package/styles/_layout.scss
CHANGED
|
@@ -106,35 +106,11 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
106
106
|
width: calc(100vw - $leftnav-width);
|
|
107
107
|
transition: all 0.5s ease-in-out;
|
|
108
108
|
|
|
109
|
-
&:not(.main-view-container--expanded) .detail-view-container .list-view-container.nested-list-container {
|
|
110
|
-
width: calc(100vw - 212px - 32px) !important;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
&:not(.main-view-container--expanded) .drawer__body.search__drawer {
|
|
114
|
-
width: calc(100vw - 212px);
|
|
115
|
-
position: relative;
|
|
116
|
-
left: calc(162px);
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
.detail-view-container .detail__body .detail__body__section .list-view-container.nested-list-container {
|
|
120
|
-
width: 100% !important;
|
|
121
|
-
}
|
|
122
|
-
|
|
123
109
|
&--expanded {
|
|
124
110
|
left: calc(#{$leftnav-collapsed-width});
|
|
125
111
|
width: calc(100vw - $leftnav-collapsed-width);
|
|
126
112
|
transition: all 0.5s ease-in-out;
|
|
127
113
|
|
|
128
|
-
.detail-view-container .list-view-container.nested-list-container {
|
|
129
|
-
width: calc(100vw - 50px - 32px);
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
.drawer__body.search__drawer {
|
|
133
|
-
position: relative;
|
|
134
|
-
left: 0;
|
|
135
|
-
width: calc(100vw - 50px);
|
|
136
|
-
}
|
|
137
|
-
|
|
138
114
|
.list-view-container, .detail-view-container, .dashboard-view-container, .navbar__header {
|
|
139
115
|
width: calc(100vw - $leftnav-collapsed-width);
|
|
140
116
|
transition: all 0.5s ease-in-out;
|
|
@@ -478,6 +454,11 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
478
454
|
}
|
|
479
455
|
}
|
|
480
456
|
|
|
457
|
+
// do not modify detail__body__section width for mobile based on leftnav open or closed
|
|
458
|
+
.main-view-container.main-view-container--expanded.platform-mobile .detail-view-container .detail__body__section {
|
|
459
|
+
width: calc(100vw - $detail-sidebar-width - $leftnav-collapsed-width - 24px) !important;
|
|
460
|
+
}
|
|
461
|
+
|
|
481
462
|
.list-view-container {
|
|
482
463
|
@include themify($platform_layout_contrasts) {
|
|
483
464
|
background: apply('containerBackground');
|
|
@@ -488,7 +469,7 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
488
469
|
width: calc(100vw - $leftnav-width);
|
|
489
470
|
min-width: 600px;
|
|
490
471
|
overflow-y: scroll;
|
|
491
|
-
transition:
|
|
472
|
+
transition: all 0.5s ease-in-out;
|
|
492
473
|
|
|
493
474
|
&.nested-list-container {
|
|
494
475
|
box-shadow: none;
|
|
@@ -496,7 +477,7 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
496
477
|
padding: 0px !important;
|
|
497
478
|
height: calc(100vh - ($header-height + $detail-header-height + 1rem)); // Container fluid padding: 1rem
|
|
498
479
|
width: 100%;
|
|
499
|
-
transition:
|
|
480
|
+
transition: none;
|
|
500
481
|
}
|
|
501
482
|
}
|
|
502
483
|
|
|
@@ -570,10 +551,6 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
570
551
|
}
|
|
571
552
|
}
|
|
572
553
|
|
|
573
|
-
.drawer__body.search__drawer {
|
|
574
|
-
transition: all 0.5s ease-in-out;
|
|
575
|
-
}
|
|
576
|
-
|
|
577
554
|
.pending-request-warning {
|
|
578
555
|
font-size: 14px !important;
|
|
579
556
|
@include font-weight--bold;
|
package/styles/_tables.scss
CHANGED
|
@@ -183,6 +183,18 @@ table.platform-table {
|
|
|
183
183
|
}
|
|
184
184
|
}
|
|
185
185
|
|
|
186
|
+
// fix width of select th's in table add w-100 to th/th's you want to grow/shrink
|
|
187
|
+
&.fixed-table {
|
|
188
|
+
table-layout: fixed !important;
|
|
189
|
+
|
|
190
|
+
$column-sizes: 50px, 75px, 90px, 100px, 125px, 150px, 180px, 200px;
|
|
191
|
+
.fixed-width {
|
|
192
|
+
@each $size in $column-sizes {
|
|
193
|
+
&--#{$size} { width: $size; }
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
|
|
186
198
|
&--expandable {
|
|
187
199
|
margin-top: 5px;
|
|
188
200
|
thead {
|