diff --git a/components/system/components/PopoverNavigation.js b/components/system/components/PopoverNavigation.js
index 1b784c74..e73ec175 100644
--- a/components/system/components/PopoverNavigation.js
+++ b/components/system/components/PopoverNavigation.js
@@ -9,7 +9,9 @@ const STYLES_POPOVER = css`
position: absolute;
width: 288px;
border-radius: 4px;
+ user-select: none;
background-color: ${Constants.system.white};
+ color: ${Constants.system.pitchBlack};
box-shadow: inset 0 0 0 1px ${Constants.system.border},
0 1px 4px rgba(0, 0, 0, 0.07);
`;
diff --git a/scenes/SceneFilesFolder.js b/scenes/SceneFilesFolder.js
index 5492f2e9..6611ec8d 100644
--- a/scenes/SceneFilesFolder.js
+++ b/scenes/SceneFilesFolder.js
@@ -1,6 +1,7 @@
import * as React from "react";
import * as Actions from "~/common/actions";
import * as System from "~/components/system";
+import * as Strings from "~/common/strings";
import { css } from "@emotion/react";
@@ -53,10 +54,15 @@ export default class SceneFilesFolder extends React.Component {
}
render() {
+ let bytes = 0;
let rows = this.props.viewer.library[0].children.map((each) => {
+ bytes = each.size + bytes;
return {
...each,
- button: each.networks && each.networks.includes("FILECOIN") ? null : "Store on Filecoin",
+ button:
+ each.networks && each.networks.includes("FILECOIN")
+ ? null
+ : "Store on Filecoin",
};
});
@@ -102,14 +108,15 @@ export default class SceneFilesFolder extends React.Component {
{this.props.current.name}
+ ]}
+ >
@@ -116,10 +118,12 @@ export default class SceneSlate extends React.Component {
label="Will the Slate page look like this in the final product?"
description="No! Consider this page just a functionality test. Slates will be collaborative mood boards and will have a much more intuitive experience than this."
/>
-
- https://slate.host/@{this.props.viewer.username}/{slatename}
-
-
+ {slatename}
+
- Changing the slatename will change your public slate URL. Your slate URL is:{" "}
+ Changing the slatename will change your public slate URL. Your
+ slate URL is:{" "}
{slateURL}
@@ -154,12 +160,19 @@ export default class SceneSlate extends React.Component {
/>