Set width of comment entry area in note popups
This commit is contained in:
parent
3d7eb387a7
commit
8cd6168b48
3 changed files with 6 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
|||
<form action="#">
|
||||
<input type="hidden" name="lon">
|
||||
<input type="hidden" name="lat">
|
||||
<textarea name="text" cols="40" rows="10"></textarea>
|
||||
<textarea class="comment" name="text" cols="40" rows="10"></textarea>
|
||||
<br/>
|
||||
<div class="buttons">
|
||||
<input type="submit" name="add" value="<%- I18n.t('javascripts.notes.new.add') %>" data-url="<%- create_url %>">
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
<% }) %>
|
||||
<% if (note.status == "open") { %>
|
||||
<form action="#">
|
||||
<textarea name="text" cols="40" rows="5"></textarea>
|
||||
<textarea class="comment" name="text" cols="40" rows="5"></textarea>
|
||||
<br/>
|
||||
<div class="buttons">
|
||||
<input type="submit" name="close" value="<%- I18n.t('javascripts.notes.show.close') %>" data-url="<%- note.close_url %>">
|
||||
|
|
|
@ -1654,6 +1654,10 @@ a.button.submit {
|
|||
}
|
||||
}
|
||||
|
||||
.comment {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.buttons {
|
||||
margin-top: 5px;
|
||||
text-align: right;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue