mirror of
https://github.com/friendica/friendica
synced 2024-11-17 20:23:40 +00:00
Merge pull request #14455 from haheute/textarea-event-description
add rows=8 for event description textarea
This commit is contained in:
commit
452cdadaa3
3 changed files with 3 additions and 3 deletions
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: 2024.09-dev\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-09-19 14:20+0200\n"
|
||||
"POT-Creation-Date: 2024-10-03 12:14+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
|
@ -404,7 +404,7 @@ header #banner {
|
|||
font-family: tahoma, "Lucida Sans", sans;
|
||||
color: #fff;
|
||||
font-weight: bold;
|
||||
whitespace: nowrap;
|
||||
white-space: nowrap;
|
||||
padding-left: 55px;
|
||||
}
|
||||
header #banner #logo-img,
|
||||
|
|
|
@ -75,7 +75,7 @@
|
|||
{{* The textarea for the event description *}}
|
||||
<div class="form-group">
|
||||
<div id="event-desc-text"><b>{{$d_text}}</b></div>
|
||||
<textarea id="comment-edit-text-desc" class="form-control text-autosize" name="desc" dir="auto">{{$d_orig}}</textarea>
|
||||
<textarea id="comment-edit-text-desc" class="form-control text-autosize" name="desc" rows="8" dir="auto">{{$d_orig}}</textarea>
|
||||
<ul id="event-desc-text-edit-bb" class="comment-edit-bb comment-icon-list nav nav-pills hidden-xs pull-left">
|
||||
{{* commented out because it isn't implemented yet
|
||||
<li>
|
||||
|
|
Loading…
Reference in a new issue