Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changelog.md2
-rw-r--r--app/assets/stylesheets/tag.css.scss12
2 files changed, 12 insertions, 2 deletions
diff --git a/Changelog.md b/Changelog.md
index d1454b9e1..8c947ad07 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -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)
diff --git a/app/assets/stylesheets/tag.css.scss b/app/assets/stylesheets/tag.css.scss
index 1ee8427bb..f13a6fc7d 100644
--- a/app/assets/stylesheets/tag.css.scss
+++ b/app/assets/stylesheets/tag.css.scss
@@ -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;
+ }
+ }
+ }
}