Commit 8465238899ef2e7569df2c2a1780a4e331ed612c
1 parent
8cadeb67
Exists in
master
and in
4 other branches
fix long names on wall
Showing
1 changed file
with
5 additions
and
2 deletions
Show diff stats
app/assets/stylesheets/sections/wall.scss
... | ... | @@ -26,8 +26,11 @@ |
26 | 26 | .wall-author { |
27 | 27 | color: #666; |
28 | 28 | float: left; |
29 | - width: 100px; | |
29 | + font-size: 12px; | |
30 | + width: 120px; | |
30 | 31 | text-overflow: ellipsis; |
32 | + white-space: nowrap; | |
33 | + overflow: hidden; | |
31 | 34 | } |
32 | 35 | |
33 | 36 | .wall-text { |
... | ... | @@ -35,7 +38,7 @@ |
35 | 38 | margin-left: 10px; |
36 | 39 | padding-left: 10px; |
37 | 40 | float: left; |
38 | - width: 80%; | |
41 | + width: 75%; | |
39 | 42 | } |
40 | 43 | |
41 | 44 | .wall-file { | ... | ... |