Hidden overflow for long names on tag pages
This commit is contained in:
parent
eac3f042a4
commit
65e9e1c744
2 changed files with 12 additions and 2 deletions
|
|
@ -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)
|
* 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)
|
* 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)
|
* 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
|
## Bug fixes
|
||||||
* orca cannot see 'Add Contact' button [#5158](https://github.com/diaspora/diaspora/pull/5158)
|
* orca cannot see 'Add Contact' button [#5158](https://github.com/diaspora/diaspora/pull/5158)
|
||||||
|
|
|
||||||
|
|
@ -22,5 +22,15 @@ h1.tag {
|
||||||
}
|
}
|
||||||
|
|
||||||
#tags_show {
|
#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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue