|
@@ -8,7 +8,7 @@
|
|
|
|
|
|
@click='goToUser'
|
|
|
></avatar-icon>
|
|
|
- <div style='width: 100%;' @click='goToThread'>
|
|
|
+ <div style='width: calc(100% - 3rem);' @click='goToThread'>
|
|
|
<div class='thread_display__header'>
|
|
|
<span class='thread_display__name'>
|
|
|
{{thread.name}}
|
|
@@ -16,7 +16,7 @@
|
|
|
<div class='thread_display__meta_bar'>
|
|
|
<div>
|
|
|
By
|
|
|
- <span class='thread_display__username' ref='username'>{{threadUsername}}</span>
|
|
|
+ <span class='thread_display__username' ref='username'>{{threadUsername | truncateMid(25)}}</span>
|
|
|
in
|
|
|
<span class='thread_display__category' ref='category'>{{thread.Category.name}}</span>
|
|
|
·
|
|
@@ -119,11 +119,16 @@
|
|
|
@at-root #{&}__name {
|
|
|
font-weight: 500;
|
|
|
font-size: 1.25rem;
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ line-height: 1.5rem;
|
|
|
+ height: 1.5rem;
|
|
|
}
|
|
|
@at-root #{&}__meta_bar {
|
|
|
- display: flex;
|
|
|
color: $color--gray__darkest;
|
|
|
- justify-content: space-between;
|
|
|
+ flex-shrink: 0;
|
|
|
+ line-height: 1.5rem;
|
|
|
+ height: 1.5rem;
|
|
|
}
|
|
|
|
|
|
@at-root #{&}__replies_bar {
|