Hidden overflow for long names on tag pages

This commit is contained in:
Steffen van Bergerem 2014-10-04 14:08:24 +02:00
parent eac3f042a4
commit 65e9e1c744
2 changed files with 12 additions and 2 deletions

View file

@ -42,7 +42,7 @@ The default for including jQuery from a CDN has changed. If you want to continue
* Display new conversation form on conversations/index [#5178](https://github.com/diaspora/diaspora/pull/5178)
* Port profile page to Backbone [#5180](https://github.com/diaspora/diaspora/pull/5180)
* Pull punycode.js from rails-assets.org [#5263](https://github.com/diaspora/diaspora/pull/5263)
* Hidden overflow for long names on tag pages [#5279](https://github.com/diaspora/diaspora/pull/5279)
## Bug fixes
* orca cannot see 'Add Contact' button [#5158](https://github.com/diaspora/diaspora/pull/5158)

View file

@ -22,5 +22,15 @@ h1.tag {
}
#tags_show {
.span3 { border-right: 1px solid $border-grey; }
.span3 {
border-right: 1px solid $border-grey;
.side_stream #people_stream {
.name { display: block; }
.name, .diaspora_handle, .tags {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
}
}