forked from AkkomaGang/akkoma-fe
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
This commit is contained in:
commit
33b13d3775
2 changed files with 12 additions and 5 deletions
|
@ -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">
|
||||
<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">
|
||||
|
|
Loading…
Reference in a new issue