mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-01-15 22:30:53 +00:00
Fixes shoutbox styling
This commit is contained in:
parent
314d47b7bf
commit
9156865068
3 changed files with 23 additions and 8 deletions
|
@ -35,7 +35,12 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.shoutbox-messages {
|
.shoutbox-messages {
|
||||||
@include span-columns(12);
|
display: table;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
.user {
|
||||||
|
width: 10%;
|
||||||
|
}
|
||||||
|
|
||||||
.timestamp {
|
.timestamp {
|
||||||
margin: 0 5px 5px;
|
margin: 0 5px 5px;
|
||||||
|
|
|
@ -10,9 +10,12 @@
|
||||||
display: table-row;
|
display: table-row;
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
clear: both;
|
clear: both;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
.timestamp {
|
.destroy {
|
||||||
@extend .highlight;
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: -10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.user {
|
.user {
|
||||||
|
@ -34,6 +37,11 @@
|
||||||
.message {
|
.message {
|
||||||
max-width: 66%;
|
max-width: 66%;
|
||||||
display: table-cell;
|
display: table-cell;
|
||||||
padding-left: 10px;
|
|
||||||
|
.contents {
|
||||||
|
position: relative;
|
||||||
|
display: block;
|
||||||
|
padding: 0 10px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,6 @@
|
||||||
<div class="shoutmsg">
|
<div class="shoutmsg">
|
||||||
<div class="user">
|
<div class="user">
|
||||||
<span class="username">
|
<span class="username">
|
||||||
<% if shoutmsg.can_destroy? cuser %>
|
|
||||||
<%= link_to icon('times'), shoutmsg, method: :delete %>
|
|
||||||
<% end %>
|
|
||||||
<%= namelink shoutmsg.user %>
|
<%= namelink shoutmsg.user %>
|
||||||
</span>
|
</span>
|
||||||
<span class="time">
|
<span class="time">
|
||||||
|
@ -11,6 +8,11 @@
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="message">
|
<div class="message">
|
||||||
<%= shoutmsg.text %>
|
<div class="contents">
|
||||||
|
<%= shoutmsg.text %>
|
||||||
|
<% if shoutmsg.can_destroy? cuser %>
|
||||||
|
<%= link_to icon('times'), shoutmsg, method: :delete, class: 'destroy' %>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue