Skip to content
Snippets Groups Projects
Verified Commit 08c9aa4b authored by Sean King's avatar Sean King
Browse files

Use <p> elements instead of <br> for notice on edit status form

parent f56298ad
No related branches found
No related tags found
2 merge requests!1711Update stable - 2.5.0 release,!1537Add edit status functionality
......@@ -66,14 +66,13 @@
<span v-if="safeDMEnabled">{{ $t('post_status.direct_warning_to_first_only') }}</span>
<span v-else>{{ $t('post_status.direct_warning_to_all') }}</span>
</p>
<p
<div
v-if="isEdit"
class="visibility-notice"
class="visibility-notice edit-warning"
>
<span>{{ $t('post_status.edit_remote_warning') }}</span>
<br>
<span>{{ $t('post_status.edit_unsupported_warning') }}</span>
</p>
<p>{{ $t('post_status.edit_remote_warning') }}</p>
<p>{{ $t('post_status.edit_unsupported_warning') }}</p>
</div>
<div
v-if="!disablePreview"
class="preview-heading faint"
......@@ -419,6 +418,16 @@
align-items: baseline;
}
.visibility-notice.edit-warning {
> :first-child {
margin-top: 0;
}
> :last-child {
margin-bottom: 0;
}
}
.media-upload-icon, .poll-icon, .emoji-icon {
font-size: 1.85em;
line-height: 1.1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment