Compare commits

...

1 Commits
1.5.3 ... 1.5.4

Author SHA1 Message Date
a6db6615df No longer trimming activity text in views 2020-01-23 10:04:50 +00:00
2 changed files with 6 additions and 2 deletions

View File

@ -13,7 +13,6 @@ description: ''
tag: ''
base_table: oc_activity_field_data
base_field: id
core: 8.x
display:
default:
display_plugin: default
@ -233,7 +232,7 @@ display:
more_link_text: ''
more_link_path: ''
strip_tags: false
trim: true
trim: false
preserve_tags: ''
html: false
element_type: ''

View File

@ -41,3 +41,8 @@ body {
.block-superfish .menu ul li a:hover {
color: black;
}
/* In views, display label at top of field. Ths is because full descriptions are displayed in the activity view so having the label in the middle means it disappears down the page. */
td.views-field {
vertical-align: top;
}