Compare commits

..

No commits in common. "6b71793b3b3dbb323155e925bd2cb6e23d52f681" and "4da91e00762680391c18a4644368920ee4fc5cfc" have entirely different histories.

3 changed files with 1 additions and 16 deletions

View file

@ -1,4 +0,0 @@
Combined subject and content fields in post form (visually)
Fixes for some elements not scaling with user UI scale
Moved post form's emoji button into input field
Minor visual changes and fixes

View file

@ -108,12 +108,6 @@
align-items: baseline;
}
.visibility-notice {
border: 1px solid var(--border);
border-radius: var(--roundness);
padding: 0.5em 1em
}
.visibility-notice.edit-warning {
> :first-child {
margin-top: 0;
@ -201,10 +195,6 @@
line-height: 1.85;
}
.inputs-wrapper {
padding: 0;
}
.input.form-post-body {
// TODO: make a resizable textarea component?
box-sizing: content-box; // needed for easier computation of dynamic size
@ -212,7 +202,6 @@
transition: min-height 200ms 100ms;
// stock padding + 1 line of text (for counter)
padding-bottom: calc(var(--_padding) + var(--post-line-height) * 1em);
padding-right: 1.5em;
// two lines of text
height: calc(var(--post-line-height) * 1em);
min-height: calc(var(--post-line-height) * 1em);

View file

@ -156,7 +156,7 @@
class="preview-status"
/>
</div>
<div class="input inputs-wrapper">
<div class="input">
<EmojiInput
v-if="!disableSubject && (newStatus.spoilerText || alwaysShowSubject)"
v-model="newStatus.spoilerText"