Skip to content

Commit

Permalink
Closes #7936
Browse files Browse the repository at this point in the history
- 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.
  • Loading branch information
charlesh88 committed Dec 20, 2024
1 parent e6cb940 commit f163034
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/plugins/events/components/events-view.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
4 changes: 3 additions & 1 deletion src/plugins/imagery/components/imagery-view.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit f163034

Please sign in to comment.