move reply-quote buttons on same line as preview
This commit is contained in:
parent
c698dec89d
commit
619423eacb
1
changelog.d/quote-buttons.fix
Normal file
1
changelog.d/quote-buttons.fix
Normal file
|
@ -0,0 +1 @@
|
||||||
|
reply-or-quote buttons now take less space
|
|
@ -103,29 +103,6 @@
|
||||||
icon="circle-notch"
|
icon="circle-notch"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<div
|
|
||||||
v-if="showPreview"
|
|
||||||
class="preview-container"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
v-if="!preview"
|
|
||||||
class="preview-status"
|
|
||||||
>
|
|
||||||
{{ $t('general.loading') }}
|
|
||||||
</div>
|
|
||||||
<div
|
|
||||||
v-else-if="preview.error"
|
|
||||||
class="preview-status preview-error"
|
|
||||||
>
|
|
||||||
{{ preview.error }}
|
|
||||||
</div>
|
|
||||||
<StatusContent
|
|
||||||
v-else
|
|
||||||
:status="preview"
|
|
||||||
class="preview-status"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div
|
<div
|
||||||
v-if="quotable"
|
v-if="quotable"
|
||||||
role="radiogroup"
|
role="radiogroup"
|
||||||
|
@ -156,6 +133,29 @@
|
||||||
{{ $t('post_status.quote_option') }}
|
{{ $t('post_status.quote_option') }}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
v-if="showPreview"
|
||||||
|
class="preview-container"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
v-if="!preview"
|
||||||
|
class="preview-status"
|
||||||
|
>
|
||||||
|
{{ $t('general.loading') }}
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
v-else-if="preview.error"
|
||||||
|
class="preview-status preview-error"
|
||||||
|
>
|
||||||
|
{{ preview.error }}
|
||||||
|
</div>
|
||||||
|
<StatusContent
|
||||||
|
v-else
|
||||||
|
:status="preview"
|
||||||
|
class="preview-status"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
<EmojiInput
|
<EmojiInput
|
||||||
v-if="!disableSubject && (newStatus.spoilerText || alwaysShowSubject)"
|
v-if="!disableSubject && (newStatus.spoilerText || alwaysShowSubject)"
|
||||||
v-model="newStatus.spoilerText"
|
v-model="newStatus.spoilerText"
|
||||||
|
@ -447,6 +447,8 @@
|
||||||
|
|
||||||
.reply-or-quote-selector {
|
.reply-or-quote-selector {
|
||||||
margin-bottom: 0.5em;
|
margin-bottom: 0.5em;
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr 1fr;
|
||||||
}
|
}
|
||||||
|
|
||||||
.text-format {
|
.text-format {
|
||||||
|
|
Loading…
Reference in a new issue