mirror of
https://github.com/openvk/openvk
synced 2025-01-28 18:45:30 +03:00
feat(audio edit): make lyrics textarea resizeable (#1212)
* Update al_music.js: make the lyrics textarea resizable * Update al_music.js: change max height of lyrics textarea
This commit is contained in:
parent
4c050b2ad1
commit
9ea67ac8aa
1 changed files with 1 additions and 1 deletions
|
@ -1321,7 +1321,7 @@ u(document).on("click", ".musicIcon.edit-icon", (e) => {
|
|||
|
||||
<div style="margin-top: 11px">
|
||||
${tr("lyrics")}
|
||||
<textarea name="lyrics" maxlength="5000" style="max-height: 200px;">${lyrics ?? ""}</textarea>
|
||||
<textarea name="lyrics" maxlength="5000" style="resize: vertical; max-height: 285px;">${lyrics ?? ""}</textarea>
|
||||
</div>
|
||||
|
||||
<div style="margin-top: 11px">
|
||||
|
|
Loading…
Reference in a new issue