Merge pull request #940 from uzegonemad/hotfix/fix-long-path-label

Fixed: Add wrapping to fix long paths in labels
This commit is contained in:
Mark McDowall 2015-11-16 13:37:26 -08:00
commit e9692d5b9c
1 changed files with 4 additions and 1 deletions

View File

@ -433,7 +433,10 @@
.label {
display : inline-block;
margin-bottom : 2px;
padding : 4px 6px 3px 6px
padding : 4px 6px 3px 6px;
max-width : 100%;
white-space : normal;
word-wrap : break-word;
}
}