Merge pull request #5279 from svbergerem/overflow-long-names-tag-page

Hidden overflow for long names on tag pages

Conflicts:
	Changelog.md
This commit is contained in:
Jonne Haß 2014-10-14 13:30:22 +02:00
commit e5b20106c6
2 changed files with 12 additions and 1 deletions

View file

@ -56,6 +56,7 @@ The keys will still be available in the root level within the 0.5 release. The o
* Reduce number of useless background job retries and pull public posts when missing [#5209](https://github.com/diaspora/diaspora/pull/5209
* Updated Weekly User Stats admin page to show data for the most recent week including reversing the order of the weeks in the drop down to show the most recent. [#5331](https://github.com/diaspora/diaspora/pull/5331)
* Convert some cukes to rspec tests [#5289](https://github.com/diaspora/diaspora/pull/5289)
* 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

@ -24,5 +24,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;
}
}
}
}