word wrapping in list view

This commit is contained in:
yuri
2017-01-23 17:15:50 +02:00
parent 7649f4d680
commit cf9c4ec0b1
2 changed files with 7 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
{{#if isNotEmpty}}<span class="complext-text">{{complexText value}}</span>{{else}}{{translate 'None'}}{{/if}}
{{#if isNotEmpty}}<span class="complex-text">{{complexText value}}</span>{{else}}{{translate 'None'}}{{/if}}
+6 -1
View File
@@ -1068,10 +1068,15 @@ stream-head-text-container .span {
cursor: default;
}
.complext-text a {
.complex-text a {
word-wrap: break-word;
}
table.table td.cell .complex-text {
word-wrap: break-word;
white-space: normal;
}
#popup-notifications-container {
overflow-y: auto;
overflow-x: hidden;