diff --git a/app/components/Breadcrumb.js b/app/components/Breadcrumb.js
index 74296d144..c3f38f468 100644
--- a/app/components/Breadcrumb.js
+++ b/app/components/Breadcrumb.js
@@ -160,10 +160,13 @@ const SmallPadlockIcon = styled(PadlockIcon)`
`;
const SmallSlash = styled(GoToIcon)`
- width: 15px;
- height: 10px;
+ width: 12px;
+ height: 12px;
+ vertical-align: middle;
flex-shrink: 0;
- opacity: 0.25;
+
+ fill: ${(props) => props.theme.slate};
+ opacity: 0.5;
`;
const Crumb = styled(Link)`
diff --git a/app/components/DocumentMeta.js b/app/components/DocumentMeta.js
index 093e0a2ce..b026b6431 100644
--- a/app/components/DocumentMeta.js
+++ b/app/components/DocumentMeta.js
@@ -18,6 +18,11 @@ const Container = styled(Flex)`
min-width: 0;
`;
+const Viewed = styled.span`
+ text-overflow: ellipsis;
+ overflow: hidden;
+`;
+
const Modified = styled.span`
color: ${(props) => props.theme.textTertiary};
font-weight: ${(props) => (props.highlight ? "600" : "400")};
@@ -112,16 +117,16 @@ function DocumentMeta({
}
if (!lastViewedAt) {
return (
- <>
+
• {t("Never viewed")}
- >
+
);
}
return (
-
+
• {t("Viewed")}
-
+
);
};