fix username length

This commit is contained in:
Nicola Mustone 2014-08-21 10:07:11 +02:00
parent a17d86c153
commit 1d0cb1603f
3 changed files with 11 additions and 1 deletions

View File

@ -111,6 +111,10 @@
margin-top: 14px;
padding: 10px 12px;
border-radius: 4px;
max-width: 300px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
@include transition(background 0.5s);
small {
@ -238,6 +242,7 @@
.name {
float: left;
margin: 0;
max-width: 300px;
padding: 0 0 5px 0;
text-overflow: ellipsis;
white-space: nowrap;

View File

@ -1987,6 +1987,10 @@ table,
margin-top: 14px;
padding: 10px 12px;
border-radius: 4px;
max-width: 300px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
-webkit-transition: background 0.5s;
-moz-transition: background 0.5s;
transition: background 0.5s; }
@ -2100,6 +2104,7 @@ table,
.user-menu .name {
float: left;
margin: 0;
max-width: 300px;
padding: 0 0 5px 0;
text-overflow: ellipsis;
white-space: nowrap;

File diff suppressed because one or more lines are too long