Ellipsize long conversation window titles

Fixes #304
This commit is contained in:
lilia 2015-07-08 14:28:04 -07:00
parent 476eb54db1
commit a95b6165f4
3 changed files with 10 additions and 2 deletions

View file

@ -4,7 +4,11 @@
}
.conversation-title {
display: block;
line-height: $header-height;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
#header {

View file

@ -431,7 +431,11 @@ input.search {
.conversation .file-input .close {
top: -10px; }
.conversation .conversation-title {
line-height: 36px; }
display: block;
line-height: 36px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis; }
.conversation #header {
position: inherit; }
.conversation .discussion-container {

File diff suppressed because one or more lines are too long