@@ -420,6 +420,7 @@ | |||||
.list-item input[type=checkbox] { | .list-item input[type=checkbox] { | ||||
margin: 0; | margin: 0; | ||||
margin-right: 5px; | margin-right: 5px; | ||||
flex: 0 0 12px; | |||||
} | } | ||||
.list-item .liked-by, | .list-item .liked-by, | ||||
.list-item .liked-by-filter-button { | .list-item .liked-by-filter-button { | ||||
@@ -11,7 +11,7 @@ | |||||
</i> | </i> | ||||
<span class="likes-count">{{ (_liked_by.length > 99 ? "99+" : _liked_by.length) || "" }}</span> | <span class="likes-count">{{ (_liked_by.length > 99 ? "99+" : _liked_by.length) || "" }}</span> | ||||
</span> | </span> | ||||
<a class="grey list-id {{ css_seen }}" | |||||
<a class="grey list-id {{ css_seen }} ellipsis" | |||||
data-name="{{ _name }}" | data-name="{{ _name }}" | ||||
href="#Form/{{ _doctype_encoded }}/{{ _name_encoded }}" | href="#Form/{{ _doctype_encoded }}/{{ _name_encoded }}" | ||||
title="{{ _full_title }}">{{ strip_html(_title) }}</a> | title="{{ _full_title }}">{{ strip_html(_title) }}</a> | ||||
@@ -447,9 +447,6 @@ frappe.views.ListRenderer = Class.extend({ | |||||
data._title = strip_html(data[title_field] || data.name); | data._title = strip_html(data[title_field] || data.name); | ||||
data._full_title = data._title; | data._full_title = data._title; | ||||
if (data._title.length > 35) { | |||||
data._title = data._title.slice(0, 35) + '...'; | |||||
} | |||||
data._workflow = null; | data._workflow = null; | ||||
if (this.workflow_state_fieldname) { | if (this.workflow_state_fieldname) { | ||||
@@ -514,6 +514,7 @@ | |||||
input[type=checkbox] { | input[type=checkbox] { | ||||
margin: 0; | margin: 0; | ||||
margin-right: 5px; | margin-right: 5px; | ||||
flex: 0 0 12px; | |||||
} | } | ||||
.liked-by, .liked-by-filter-button { | .liked-by, .liked-by-filter-button { | ||||