diff --git a/static/app-strings.json b/static/app-strings.json index ef663f169..8555a55ac 100644 --- a/static/app-strings.json +++ b/static/app-strings.json @@ -1005,13 +1005,11 @@ "Model": "Model", "Binary": "Binary", "Other": "Other", - "For video content, use MP4s in H264/AAC format and a friendly bitrate (720p) for more reliable streaming.": "For video content, use MP4s in H264/AAC format and a friendly bitrate (720p) for more reliable streaming.", "Please check your deposit amount.": "Please check your deposit amount.", - "Your video has a bitrate over 5 mbps. We suggest transcoding to provide viewers the best experience.": "Your video has a bitrate over 5 mbps. We suggest transcoding to provide viewers the best experience.", "For video content, use MP4s in H264/AAC format and a friendly bitrate (1080p) for more reliable streaming.": "For video content, use MP4s in H264/AAC format and a friendly bitrate (1080p) for more reliable streaming.", - "Unable to validate your video.": "Unable to validate your video.", "Checking your video...": "Checking your video...", "Your video has a bitrate over 8 mbps. We suggest transcoding to provide viewers the best experience.": "Your video has a bitrate over 8 mbps. We suggest transcoding to provide viewers the best experience.", "Your video may not be the best format. Use MP4s in H264/AAC format and a friendly bitrate (1080p) for more reliable streaming.": "Your video may not be the best format. Use MP4s in H264/AAC format and a friendly bitrate (1080p) for more reliable streaming.", - "Publishing Guide": "Publishing Guide" -} \ No newline at end of file + "Publishing Guide": "Publishing Guide", + "This is equivalent to a password. Do not post or share this.": "This is equivalent to a password. Do not post or share this." +} diff --git a/ui/component/publishFile/view.jsx b/ui/component/publishFile/view.jsx index 4f9bde212..49452f950 100644 --- a/ui/component/publishFile/view.jsx +++ b/ui/component/publishFile/view.jsx @@ -83,7 +83,7 @@ function PublishFile(props: Props) { // @endif if (isVid && duration && getBitrate(size, duration) > RECOMMENDED_BITRATE) { return ( -
+
{__('Your video has a bitrate over 8 mbps. We suggest transcoding to provide viewers the best experience.')}{' '}
@@ -92,7 +92,7 @@ function PublishFile(props: Props) { if (isVid && !duration) { return ( -+
{__( 'Your video may not be the best format. Use MP4s in H264/AAC format and a friendly bitrate (1080p) for more reliable streaming.' )}{' '} diff --git a/ui/scss/init/_gui.scss b/ui/scss/init/_gui.scss index a04c73eef..5ea73d2eb 100644 --- a/ui/scss/init/_gui.scss +++ b/ui/scss/init/_gui.scss @@ -208,8 +208,8 @@ a { } .help--warning { - background-color: var(--color-warning); - color: var(--color-black); + @extend .help; + color: var(--color-text-help-warning); } .help--inline { diff --git a/ui/scss/themes/dark.scss b/ui/scss/themes/dark.scss index 1bad47008..f42d4a831 100644 --- a/ui/scss/themes/dark.scss +++ b/ui/scss/themes/dark.scss @@ -44,6 +44,7 @@ // Text --color-text: #eeeeee; --color-text-error: #f5748c; + --color-text-help-warning: #f5ec74; --color-text-empty: #bbbbbb; --color-text-help: #bbbbbb; --color-text-subtitle: #9fafc0; diff --git a/ui/scss/themes/light.scss b/ui/scss/themes/light.scss index fa070c0f3..ae0ecccb1 100644 --- a/ui/scss/themes/light.scss +++ b/ui/scss/themes/light.scss @@ -24,6 +24,7 @@ --color-text-help: #999999; --color-text-subtitle: #767676; --color-text-warning: #212529; + --color-text-help-warning: #989b20; --color-text-warning--background: var(--lbry-yellow-1); --color-blockquote: var(--color-gray-3);