Skip to content
Snippets Groups Projects
Commit 33b13d37 authored by kaniini's avatar kaniini
Browse files

Merge branch 'fixup/post-status-styling' into 'develop'

post status form: styling fixes for content-type selector, align icons with selector

See merge request pleroma/pleroma-fe!327
parents 958acbab f9bfe2ea
No related branches found
No related tags found
No related merge requests found
......@@ -502,6 +502,10 @@ nav {
.text-format {
float: right;
}
div {
padding-top: 5px;
}
}
.visibility-notice {
......
......@@ -34,11 +34,14 @@
</textarea>
<div class="visibility-tray">
<span class="text-format">
<select v-model="newStatus.contentType" class="form-control">
<option value="text/plain">{{$t('post_status.content_type.plain_text')}}</option>
<option value="text/html">HTML</option>
<option value="text/markdown">Markdown</option>
</select>
<label for="post-content-type" class="select">
<select id="post-content-type" v-model="newStatus.contentType" class="form-control">
<option value="text/plain">{{$t('post_status.content_type.plain_text')}}</option>
<option value="text/html">HTML</option>
<option value="text/markdown">Markdown</option>
</select>
<i class="icon-down-open"></i>
</label>
</span>
<div v-if="scopeOptionsEnabled">
......
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