- Sanding and shimming on imagery and events TS look and feel.
- Fixed scrollbar issue in imagery TS view when thumb goes beyond the right edge of the time frame.
This commit is contained in:
Charles Hacskaylo 2024-12-19 17:34:31 -08:00
parent e6cb940ee7
commit f163034e18
2 changed files with 5 additions and 3 deletions

View File

@ -19,8 +19,8 @@
&__container {
// Holds event lines
background: $colorPlotBg;
box-shadow: inset $colorPlotAreaBorder 0 0 0 1px; // Using box-shadow instead of border to not affect box size
background-color: $colorPlotBg;
//box-shadow: inset $colorPlotAreaBorder 0 0 0 1px; // Using box-shadow instead of border to not affect box size
position: absolute;
top: $m; right: 0; bottom: $m; left: 0;
}

View File

@ -511,10 +511,12 @@
.c-imagery-tsv {
$m: $interiorMargin;
@include abs();
// We need overflow: hidden this because an image thumb can extend to the right past the time frame edge
overflow: hidden;
&-container {
background: $colorPlotBg;
box-shadow: inset $colorPlotAreaBorder 0 0 0 1px; // Using box-shadow instead of border to not affect box size
//box-shadow: inset $colorPlotAreaBorder 0 0 0 1px; // Using box-shadow instead of border to not affect box size
position: absolute;
top: $m; right: 0; bottom: $m; left: 0;
}