Move timestamp to the left
This commit is contained in:
parent
655e2690eb
commit
5e8ae7686e
|
@ -307,7 +307,7 @@ button {
|
|||
background: #fff;
|
||||
border-bottom: 1px solid #eee;
|
||||
bottom: 35px;
|
||||
box-shadow: inset 160px 0 #f9f9f9;
|
||||
box-shadow: inset 180px 0 #f9f9f9;
|
||||
left: 0;
|
||||
overflow-y: auto;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
|
@ -348,10 +348,10 @@ button {
|
|||
padding-bottom: 2px;
|
||||
}
|
||||
#chat .row:first-child span {
|
||||
padding-top: 6px;
|
||||
padding-top: 5px;
|
||||
}
|
||||
#chat .row:last-child span {
|
||||
padding-bottom: 6px;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
#chat .row:hover .time {
|
||||
color: #aaa;
|
||||
|
@ -359,7 +359,7 @@ button {
|
|||
#chat .from {
|
||||
padding-right: 10px;
|
||||
text-align: right;
|
||||
width: 160px;
|
||||
width: 134px;
|
||||
}
|
||||
#chat .text {
|
||||
padding-left: 10px;
|
||||
|
@ -393,8 +393,8 @@ button {
|
|||
}
|
||||
#chat .time {
|
||||
color: #ddd;
|
||||
text-align: center;
|
||||
width: 50px;
|
||||
text-align: right;
|
||||
width: 46px;
|
||||
}
|
||||
#chat .sidebar {
|
||||
bottom: 0;
|
||||
|
|
|
@ -136,6 +136,9 @@
|
|||
<script type="text/html" class="messages">
|
||||
{{#each messages}}
|
||||
<div class="row {{type}}">
|
||||
<span class="time">
|
||||
{{time}}
|
||||
</span>
|
||||
<span class="from">
|
||||
<a href="#{{from}}" class="user">{{from}}</a>
|
||||
</span>
|
||||
|
@ -147,9 +150,6 @@
|
|||
{{/if}}
|
||||
{{{uri text}}}
|
||||
</span>
|
||||
<span class="time">
|
||||
{{time}}
|
||||
</span>
|
||||
</div>
|
||||
{{/each}}
|
||||
</script>
|
||||
|
|
Loading…
Reference in New Issue