[ui] ellipsis in list view column frappe/erpnext#8004version-14
@@ -152,6 +152,15 @@ | |||||
} | } | ||||
.filterable { | .filterable { | ||||
cursor: pointer; | cursor: pointer; | ||||
display: inline-block; | |||||
overflow: hidden; | |||||
text-overflow: ellipsis; | |||||
} | |||||
.col-sm-2 .filterable { | |||||
max-width: 90px; | |||||
} | |||||
.col-sm-3 .filterable { | |||||
max-width: 145px; | |||||
} | } | ||||
.doclist-row .label { | .doclist-row .label { | ||||
margin-right: 8px; | margin-right: 8px; | ||||
@@ -189,8 +189,20 @@ | |||||
.filterable { | .filterable { | ||||
cursor: pointer; | cursor: pointer; | ||||
display: inline-block; | |||||
overflow: hidden; | |||||
text-overflow: ellipsis; | |||||
} | |||||
.col-sm-2 .filterable { | |||||
max-width: 90px; | |||||
} | } | ||||
.col-sm-3 .filterable { | |||||
max-width: 145px; | |||||
} | |||||
.doclist-row .label { | .doclist-row .label { | ||||
margin-right: 8px; | margin-right: 8px; | ||||
} | } | ||||