ensl.org/app/assets/stylesheets/components/_shoutbox.scss
Luke Barratt 20c4f4cfc4 Bump to Rails 3.2.18
Reduce aggressive topic reply/view count caching
Improve shout box spacing
Pass broken tests
2014-05-10 02:26:18 +01:00

39 lines
471 B
SCSS

/*
Shoutbox Messages
*/
#shoutbox {
display: table;
}
.shoutmsg {
display: table-row;
margin-bottom: 5px;
clear: both;
.timestamp {
@extend .highlight;
}
.user {
display: table-cell;
min-width: 30%;
.username {
clear: right;
display: block;
}
.time {
clear: left;
display: block;
color: #5a5a5a;
}
}
.message {
max-width: 66%;
display: table-cell;
padding-left: 10px;
}
}