mirror of
https://iceshrimp.dev/limepotato/jormungandr-patches.git
synced 2024-11-21 10:37:25 -07:00
post form height patch
This commit is contained in:
parent
9f0f226732
commit
80c54febcd
2 changed files with 23 additions and 1 deletions
|
@ -14,4 +14,5 @@ To apply a patch ``git am --keep-cr --signoff < {patch}``
|
||||||
- [Builtin Catppuccin Themes](./patches/builtin-catppuccin-themes.patch): All catppuccin themes (and accents), built-in
|
- [Builtin Catppuccin Themes](./patches/builtin-catppuccin-themes.patch): All catppuccin themes (and accents), built-in
|
||||||
- [Configurable Pinned Post Limit](./patches/configurable-pinLimit.patch): Allows admin to configure pinned post limit in config file
|
- [Configurable Pinned Post Limit](./patches/configurable-pinLimit.patch): Allows admin to configure pinned post limit in config file
|
||||||
- [Fix Find Server Link](./patches/fix-findserver-link.patch): the link for "Find servers" on the signup page for locked registration instances leads to a dead page, so this replaces the link with fedidb.org
|
- [Fix Find Server Link](./patches/fix-findserver-link.patch): the link for "Find servers" on the signup page for locked registration instances leads to a dead page, so this replaces the link with fedidb.org
|
||||||
- [Remove Maintainer-info Nag](./patches/remove-maintainer-info-nag.patch): Removes nag if you dont input maintainer information
|
- [Remove Maintainer-info Nag](./patches/remove-maintainer-info-nag.patch): Removes nag if you dont input maintainer information
|
||||||
|
- [Post Form Height](./patches/textarea.patch): Increases the post form height for usability.
|
21
patches/textarea.patch
Normal file
21
patches/textarea.patch
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
From a328de1c2cd89bd3973c404a8d6a580a8a25b032 Mon Sep 17 00:00:00 2001
|
||||||
|
From: limepotato <limepot@protonmail.ch>
|
||||||
|
Date: Fri, 5 Jul 2024 18:14:26 -0600
|
||||||
|
Subject: [PATCH] Clean textarea syling
|
||||||
|
|
||||||
|
---
|
||||||
|
packages/client/src/components/MkPostForm.vue | 1 +
|
||||||
|
1 files changed, 2 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/packages/client/src/components/MkPostForm.vue b/packages/client/src/components/MkPostForm.vue
|
||||||
|
index 6619c6b95..635a6cd98 100644
|
||||||
|
--- a/packages/client/src/components/MkPostForm.vue
|
||||||
|
+++ b/packages/client/src/components/MkPostForm.vue
|
||||||
|
@@ -132,6 +132,7 @@
|
||||||
|
v-model="text"
|
||||||
|
class="text"
|
||||||
|
:class="{ withCw: useCw }"
|
||||||
|
+ :style="'height: 300px'"
|
||||||
|
:disabled="posting"
|
||||||
|
:placeholder="placeholder"
|
||||||
|
data-cy-post-form-text
|
Loading…
Reference in a new issue