Move the send button into a <div>

So we can float other things along with it.

(imported from commit a01e554bdb3ab3187557244400954194149fb172)
This commit is contained in:
Keegan McAllister 2012-11-29 10:44:16 -05:00
parent c25d1ea8e7
commit f8d83af2f0
2 changed files with 4 additions and 2 deletions

View File

@ -118,7 +118,9 @@
<div class="message_content">
<textarea class="new_message_textarea" name="content" id="new_message_content"
value="" placeholder="Compose your message here..." tabindex="140"></textarea>
<input type="submit" value="Send" id="compose-send-button" class="btn send_message" tabindex="150"/>
<div id="send_controls">
<input type="submit" value="Send" id="compose-send-button" class="btn send_message" tabindex="150"/>
</div>
<div tabindex="151" onfocus="ui.safari_composebox_workaround();"></div>
</div>
</td>

View File

@ -363,7 +363,7 @@ input.recipient_box {
width: 75%;
}
input.send_message {
#send_controls {
float: right;
}