forked from AkkomaGang/akkoma-fe
Disable horizontal textarea resize
This commit is contained in:
parent
39c4672175
commit
6d9c79fb6d
4 changed files with 8 additions and 2 deletions
|
@ -23,6 +23,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
### Changed
|
### Changed
|
||||||
- Errors when fetching are now shown with popup errors instead of "Error fetching updates" in panel headers
|
- Errors when fetching are now shown with popup errors instead of "Error fetching updates" in panel headers
|
||||||
- Made reply/fav/repeat etc buttons easier to hit
|
- Made reply/fav/repeat etc buttons easier to hit
|
||||||
|
- Disabled horizontal textarea resize
|
||||||
|
|
||||||
|
|
||||||
## [2.2.1] - 2020-11-11
|
## [2.2.1] - 2020-11-11
|
||||||
|
|
|
@ -332,6 +332,10 @@ input, textarea, .select, .input {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.resize-height {
|
||||||
|
resize: vertical;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
option {
|
option {
|
||||||
|
|
|
@ -75,6 +75,7 @@
|
||||||
<p>{{ $t('settings.filtering_explanation') }}</p>
|
<p>{{ $t('settings.filtering_explanation') }}</p>
|
||||||
<textarea
|
<textarea
|
||||||
id="muteWords"
|
id="muteWords"
|
||||||
|
class="resize-height"
|
||||||
v-model="muteWordsString"
|
v-model="muteWordsString"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
<input
|
<input
|
||||||
id="username"
|
id="username"
|
||||||
v-model="newName"
|
v-model="newName"
|
||||||
classname="name-changer"
|
class="name-changer"
|
||||||
>
|
>
|
||||||
</EmojiInput>
|
</EmojiInput>
|
||||||
<p>{{ $t('settings.bio') }}</p>
|
<p>{{ $t('settings.bio') }}</p>
|
||||||
|
@ -22,7 +22,7 @@
|
||||||
>
|
>
|
||||||
<textarea
|
<textarea
|
||||||
v-model="newBio"
|
v-model="newBio"
|
||||||
classname="bio"
|
class="bio resize-height"
|
||||||
/>
|
/>
|
||||||
</EmojiInput>
|
</EmojiInput>
|
||||||
<p>
|
<p>
|
||||||
|
|
Loading…
Reference in a new issue