mirror of https://github.com/zulip/zulip.git
Fix alignment of 'Not Delivered buttons' on smaller devices.
This commit is contained in:
parent
79b4ac8155
commit
73fb9c6f66
|
@ -324,6 +324,14 @@
|
|||
top: 40px;
|
||||
}
|
||||
|
||||
.message_failed {
|
||||
left: 0px;
|
||||
}
|
||||
|
||||
.message_content {
|
||||
padding-right: 35px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media only screen and (min-device-width: 300px) and (max-device-width: 700px) {
|
||||
|
|
|
@ -43,7 +43,9 @@
|
|||
<i class="icon-vector-chevron-down"></i>
|
||||
</div>
|
||||
<div class="message_failed {{#unless msg.failed_request}}notvisible{{/unless}}">
|
||||
<i class="icon-vector-refresh refresh-failed-message" data-toggle="tooltip" title="Not Delivered: Resend"></i><i class="icon-vector-pencil edit-failed-message" data-toggle="tooltip" title="Not Delivered: Edit"></i><i class="icon-vector-remove-sign remove-failed-message" data-toggle="tooltip" title="Not Delivered: Delete"></i>
|
||||
<i class="icon-vector-refresh refresh-failed-message" data-toggle="tooltip" title="Not Delivered: Resend"></i>
|
||||
<i class="icon-vector-pencil edit-failed-message" data-toggle="tooltip" title="Not Delivered: Edit"></i>
|
||||
<i class="icon-vector-remove-sign remove-failed-message" data-toggle="tooltip" title="Not Delivered: Delete"></i>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue