Merge pull request #3130 from kensible/2797-long-job-names

Fixed display of non-breaking names
This commit is contained in:
kensible 2016-07-27 14:24:08 -04:00 committed by GitHub
commit 3b451ccebb
2 changed files with 9 additions and 1 deletions

View File

@ -44,9 +44,11 @@
color: @list-header-txt;
font-size: 14px;
font-weight: bold;
white-space: nowrap;
padding-bottom: 25px;
min-height: 45px;
word-break: break-all;
max-width: 90%;
word-wrap: break-word;
}
.Form-secondaryTitle{

View File

@ -66,6 +66,12 @@
display: inline-block;
color: @default-interface-txt;
text-transform: uppercase;
max-width: 200px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
display: inline-block;
vertical-align: bottom;
}
.BreadCrumb-item + .BreadCrumb-item:before {