diff --git a/frontend/app/components/Assist/RequestingWindow/RequestingWindow.tsx b/frontend/app/components/Assist/RequestingWindow/RequestingWindow.tsx
index ac811de63..32f6c7d6f 100644
--- a/frontend/app/components/Assist/RequestingWindow/RequestingWindow.tsx
+++ b/frontend/app/components/Assist/RequestingWindow/RequestingWindow.tsx
@@ -30,13 +30,12 @@ const WIN_VARIANTS = {
function RequestingWindow({ userDisplayName, type }: Props) {
return (
-
-
-
Waiting for
-
{userDisplayName}
+
+
+
Waiting for {userDisplayName}
{WIN_VARIANTS[type].text}
-
+
)
diff --git a/frontend/app/components/Session_/Player/Controls/TimeTracker.js b/frontend/app/components/Session_/Player/Controls/TimeTracker.js
index 55e1b1c43..b5f9e2de3 100644
--- a/frontend/app/components/Session_/Player/Controls/TimeTracker.js
+++ b/frontend/app/components/Session_/Player/Controls/TimeTracker.js
@@ -1,12 +1,12 @@
import React from 'react';
import { connectPlayer } from 'Player';
import styles from './timeTracker.module.css';
+import cn from 'classnames'
-
-const TimeTracker = ({ time, scale }) => (
+const TimeTracker = ({ time, scale, live, left }) => (
99 ? styles.liveTime : null) }
style={ { width: `${ time * scale }%` } }
/>
@@ -16,4 +16,4 @@ TimeTracker.displayName = 'TimeTracker';
export default connectPlayer(state => ({
time: state.time,
-}))(TimeTracker);
\ No newline at end of file
+}))(TimeTracker);
diff --git a/frontend/app/components/Session_/Player/Controls/Timeline.js b/frontend/app/components/Session_/Player/Controls/Timeline.js
index 883da9399..e53f567f0 100644
--- a/frontend/app/components/Session_/Player/Controls/Timeline.js
+++ b/frontend/app/components/Session_/Player/Controls/Timeline.js
@@ -206,7 +206,7 @@ export default class Timeline extends React.PureComponent {
minX={BOUNDRY}
maxX={this.progressRef.current && this.progressRef.current.offsetWidth + BOUNDRY}
/>
-
+
{!live && skip ?
skipIntervals.map((interval) => (
diff --git a/frontend/app/components/Session_/Player/Controls/timeTracker.module.css b/frontend/app/components/Session_/Player/Controls/timeTracker.module.css
index 86dd5bd16..8fdd7c6f6 100644
--- a/frontend/app/components/Session_/Player/Controls/timeTracker.module.css
+++ b/frontend/app/components/Session_/Player/Controls/timeTracker.module.css
@@ -21,3 +21,8 @@
height: 10px;
z-index: 1;
}
+
+
+.liveTime {
+ background-color: rgba(66, 174, 94, 0.3)!important;
+}