Skip to content

Commit f163034

Browse files
committed
Closes #7936
- 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.
1 parent e6cb940 commit f163034

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/plugins/events/components/events-view.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919

2020
&__container {
2121
// Holds event lines
22-
background: $colorPlotBg;
23-
box-shadow: inset $colorPlotAreaBorder 0 0 0 1px; // Using box-shadow instead of border to not affect box size
22+
background-color: $colorPlotBg;
23+
//box-shadow: inset $colorPlotAreaBorder 0 0 0 1px; // Using box-shadow instead of border to not affect box size
2424
position: absolute;
2525
top: $m; right: 0; bottom: $m; left: 0;
2626
}

src/plugins/imagery/components/imagery-view.scss

+3-1
Original file line numberDiff line numberDiff line change
@@ -511,10 +511,12 @@
511511
.c-imagery-tsv {
512512
$m: $interiorMargin;
513513
@include abs();
514+
// We need overflow: hidden this because an image thumb can extend to the right past the time frame edge
515+
overflow: hidden;
514516

515517
&-container {
516518
background: $colorPlotBg;
517-
box-shadow: inset $colorPlotAreaBorder 0 0 0 1px; // Using box-shadow instead of border to not affect box size
519+
//box-shadow: inset $colorPlotAreaBorder 0 0 0 1px; // Using box-shadow instead of border to not affect box size
518520
position: absolute;
519521
top: $m; right: 0; bottom: $m; left: 0;
520522
}

0 commit comments

Comments
 (0)