truncating loooooooooong name fields

This commit is contained in:
Kris Aubuchon 2014-07-03 23:40:49 -04:00
parent 026a11e8dd
commit d74d5fb39e
7 changed files with 69 additions and 30 deletions

View File

@ -8,7 +8,7 @@
<a href="{{unbound url}}">{{unbound title}}</a> <a href="{{unbound url}}">{{unbound title}}</a>
</span> </span>
{{#if byName}} {{#if byName}}
<span class="title"> <span class="name">
{{unbound byName}} {{unbound byName}}
</span> </span>
{{/if}} {{/if}}

View File

@ -7,20 +7,21 @@
<h2><a {{bind-attr href="usernameUrl"}}>{{name}}</a></h2> <h2><a {{bind-attr href="usernameUrl"}}>{{name}}</a></h2>
{{/if}} {{/if}}
{{#if showBadges}}
<div class="badge-section">
{{#each user.featured_user_badges}}
{{user-badge badge=badge}}
{{/each}}
{{#if showMoreBadges}}
{{#link-to 'user.badges' user class="btn more-user-badges"}}
{{i18n badges.more_badges count=moreBadgesCount}}
{{/link-to}}
{{/if}}
</div>
{{/if}}
</div> </div>
{{#if showBadges}}
<div class="badge-section">
{{#each user.featured_user_badges}}
{{user-badge badge=badge}}
{{/each}}
{{#if showMoreBadges}}
{{#link-to 'user.badges' user class="btn more-user-badges"}}
{{i18n badges.more_badges count=moreBadgesCount}}
{{/link-to}}
{{/if}}
</div>
{{/if}}
{{#if user}} {{#if user}}
<div class="metadata"> <div class="metadata">
{{#if user.location}}<h3><i class="fa fa-map-marker"></i> {{user.location}}</h3>{{/if}} {{#if user.location}}<h3><i class="fa fa-map-marker"></i> {{user.location}}</h3>{{/if}}

View File

@ -44,6 +44,10 @@
a { a {
color: $header_primary; color: $header_primary;
font-size: 14px; font-size: 14px;
max-width: 200px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
} }
} }
button.login-button { button.login-button {

View File

@ -6,6 +6,11 @@
span { span {
font-size: 13px; font-size: 13px;
padding-right: 8px; padding-right: 8px;
display: inline-block;
max-width: 280px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
a { a {
color: scale-color($primary, $lightness: 30%); color: scale-color($primary, $lightness: 30%);
} }

View File

@ -13,20 +13,27 @@
h1 { h1 {
display: inline-block; display: inline-block;
min-width: 120px; min-width: 120px;
font-size: 30px; font-size: 25px;
line-height: 33px; line-height: 1.25;
margin-bottom: 8px; display: block;
max-width: 280px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
a { a {
color: $primary; color: $primary;
} }
} }
h2 { h2 {
font-size: 20px; font-size: 15px;
line-height: 22px; line-height: 1.25;
font-weight: normal; font-weight: normal;
margin-bottom: 5px; display: block;
max-width: 280px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
a { a {
color: $primary; color: $primary;
@ -51,10 +58,11 @@
} }
.metadata { .metadata {
float: right; position: absolute;
right: 20px;
top: 10px;
max-width: 180px; max-width: 180px;
text-align: right; text-align: right;
margin-top: 5px;
} }
.bottom { .bottom {
@ -101,16 +109,12 @@
float: left; float: left;
} }
h2 {
line-height: 12px;
}
.badge-section { .badge-section {
margin-top: 10px; margin-top: 10px;
float: left;
width: 300px;
h3 { h3 {
line-height: 43px;
color: $primary; color: $primary;
font-size: 14px; font-size: 14px;
margin-bottom: -8px; margin-bottom: -8px;
@ -120,7 +124,6 @@
.more-user-badges { .more-user-badges {
@extend .user-badge; @extend .user-badge;
padding: 3px 8px; padding: 3px 8px;
line-height: 19px;
font-size: 13px; font-size: 13px;
} }
} }

View File

@ -102,6 +102,12 @@
table.group-members { table.group-members {
width: 100%; width: 100%;
p {
max-width: 600px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
th.seen { th.seen {
text-align: right; text-align: right;
} }
@ -175,6 +181,10 @@
margin-bottom: 6px; margin-bottom: 6px;
font-weight: normal; font-weight: normal;
margin-top: 5px; margin-top: 5px;
max-width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
} }
a[href] { a[href] {
@ -331,6 +341,18 @@
.title { .title {
display: block; display: block;
font-size: 14px; font-size: 14px;
max-width: 80%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.name {
display: block;
font-size: 14px;
max-width: 400px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
} }
.edit-reason { .edit-reason {
background-color: scale-color($highlight, $lightness: 25%); background-color: scale-color($highlight, $lightness: 25%);

View File

@ -117,6 +117,10 @@
font-size: 20px; font-size: 20px;
margin-bottom: 6px; margin-bottom: 6px;
font-weight: normal; font-weight: normal;
max-width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
} }
a[href] { a[href] {