diff --git a/frontend/app/components/Assist/components/AssistTabs/assistTabs.module.css b/frontend/app/components/Assist/components/AssistTabs/assistTabs.module.css
index 462879395..6bdc2f198 100644
--- a/frontend/app/components/Assist/components/AssistTabs/assistTabs.module.css
+++ b/frontend/app/components/Assist/components/AssistTabs/assistTabs.module.css
@@ -2,4 +2,5 @@
cursor: pointer;
color: $green;
text-decoration: underline;
-}
\ No newline at end of file
+ white-space: nowrap;
+}
diff --git a/frontend/app/components/Session_/Autoplay/Autoplay.js b/frontend/app/components/Session_/Autoplay/Autoplay.js
index 109c65d2f..b42625c07 100644
--- a/frontend/app/components/Session_/Autoplay/Autoplay.js
+++ b/frontend/app/components/Session_/Autoplay/Autoplay.js
@@ -5,6 +5,8 @@ import { session as sessionRoute } from 'App/routes';
import { Link, Icon, Slider, Toggler } from 'UI';
import { connectPlayer } from 'Player/store';
import { Controls as PlayerControls } from 'Player';
+import { Tooltip } from 'react-tippy';
+import cn from 'classnames';
function Autoplay(props) {
const { previousId, nextId, autoplay } = props
@@ -15,23 +17,48 @@ function Autoplay(props) {
return (
-
+
Auto-Play
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
+
)
}
diff --git a/frontend/app/components/Session_/EventsBlock/UserCard/UserCard.js b/frontend/app/components/Session_/EventsBlock/UserCard/UserCard.js
index f1a3c556b..68eeefb7c 100644
--- a/frontend/app/components/Session_/EventsBlock/UserCard/UserCard.js
+++ b/frontend/app/components/Session_/EventsBlock/UserCard/UserCard.js
@@ -64,19 +64,19 @@ function UserCard({
{ userDisplayName }
-
-
{formatDateTimeDefault(startedAt)}
-
·
-
{userBrowser}, {userDevice}
-
·
+
+
{formatDateTimeDefault(startedAt)}
+
·
{countries[userCountry]}
-
·
+
·
+
{userBrowser}, {userOs}, {userDevice}
+
·
More}
content={(
-
} label={countries[userCountry]} value={ formatTimeOrDate(startedAt) } />
+
} label={countries[userCountry]} value={
{formatTimeOrDate(startedAt)} } />
diff --git a/frontend/app/components/Session_/Subheader.js b/frontend/app/components/Session_/Subheader.js
index b22817c95..8441ca40a 100644
--- a/frontend/app/components/Session_/Subheader.js
+++ b/frontend/app/components/Session_/Subheader.js
@@ -18,7 +18,7 @@ function SubHeader(props) {
{location && (
{
copy(props.currentLocation);
setCopied(true)
@@ -38,14 +38,14 @@ function SubHeader(props) {
)}
-
+
+
-
-
+
+
diff --git a/frontend/app/components/Session_/playerBlockHeader.module.css b/frontend/app/components/Session_/playerBlockHeader.module.css
index bec261a1d..da6f7eaf8 100644
--- a/frontend/app/components/Session_/playerBlockHeader.module.css
+++ b/frontend/app/components/Session_/playerBlockHeader.module.css
@@ -16,4 +16,5 @@
cursor: pointer;
color: $green;
text-decoration: underline;
-}
\ No newline at end of file
+ white-space: nowrap;
+}
diff --git a/frontend/app/components/shared/Bookmark/Bookmark.tsx b/frontend/app/components/shared/Bookmark/Bookmark.tsx
index 89bcbbd72..486c88618 100644
--- a/frontend/app/components/shared/Bookmark/Bookmark.tsx
+++ b/frontend/app/components/shared/Bookmark/Bookmark.tsx
@@ -3,12 +3,15 @@ import { Popup, Button, Icon } from 'UI'
import { toggleFavorite } from 'Duck/sessions'
import { connect } from 'react-redux'
import { toast } from 'react-toastify';
+import { Tooltip } from 'react-tippy';
+import cn from 'classnames';
interface Props {
- toggleFavorite: (sessionId: string) => Promise
,
- favorite: Boolean,
- sessionId: any,
- isEnterprise: Boolean
+ toggleFavorite: (sessionId: string) => Promise;
+ favorite: Boolean;
+ sessionId: any;
+ isEnterprise: Boolean;
+ noMargin?: boolean;
}
function Bookmark(props : Props ) {
const { sessionId, favorite, isEnterprise } = props;
diff --git a/frontend/app/components/ui/CountryFlag/countryFlag.module.css b/frontend/app/components/ui/CountryFlag/countryFlag.module.css
index 4cbc1f39b..aa331ee77 100644
--- a/frontend/app/components/ui/CountryFlag/countryFlag.module.css
+++ b/frontend/app/components/ui/CountryFlag/countryFlag.module.css
@@ -1,8 +1,8 @@
.default {
width: 22px !important;
- height: 14px !important;
+ height: 12px !important;
}
.label {
line-height: 0 !important;
-}
\ No newline at end of file
+}