You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This container renders the time-travel play button, seek bar, playback controls, and the playback speed dropdown, located towards the bottom of the application, above the locked, download, upload, and tutorial buttons
@@ -39,7 +31,6 @@ function play( // function that will start/pause slider movement
39
31
if(playing){
40
32
// if already playing, clicking the button will pause the slider
41
33
dispatch(pause());
42
-
43
34
}else{
44
35
letcurrentIndex=sliderIndex;// the 'currentIndex' will be wherever the 'sliderIndex' is
45
36
if(currentIndex===snapshotsLength-1){
@@ -72,21 +63,17 @@ function TravelContainer(props: TravelContainerProps): JSX.Element {
//the buttons/tabs controlling what is displayed in STATECONTAINER (Map, Performance, History, Web Metrics, Tree)
90
-
$navbar-background: $background-color; //this color only shows up in Diff mode when buttons don't fill the whole bar //DIFF FEATURE IS CURRENTLY COMMENTED OUT
91
-
$navbar-selected: $primary-color-strong;
92
-
$navbar-selected-text: $light-text;
93
-
$navbar-unselected: $primary-color-weak;
94
-
$navbar-unselected-text: $dark-text;
95
-
$navbar-hover: darken($navbar-unselected, 15%);
96
-
97
-
$state-background: $background-color-strong;
98
-
$state-cont-border: $contrasting-color;
99
-
100
-
//MAP TAB
101
-
$map-options-label: $dark-text;
102
-
//the dropdown colors are determined in the dropDownStyle object in LinkControls.tsx
103
-
$map-link: $contrasting-color;
104
-
// $map-root-fill: $primary-color; //root fill is currently a visx LinearGradient defined in ComponentMap.tsx
105
-
$map-root-stroke: $primary-color;
106
-
$map-root-text: $light-text;
107
-
//$map-parent-fill: $primary-color-strong; //parent fill is currently a visx LinearGradient defined in ComponentMap.tsx
0 commit comments