Handle long title in support tickets
parent
b2ca3fa448
commit
687bb36e0e
|
@ -83,6 +83,14 @@
|
|||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
span:first-child {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.cp-support-title-buttons {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
}
|
||||
.cp-support-collapsed {
|
||||
display: flex;
|
||||
|
|
|
@ -269,7 +269,10 @@ define([
|
|||
'data-cat': content.category,
|
||||
'data-id': content.id
|
||||
}, [
|
||||
h('h2', [ticketCategory, ticketTitle, h('span.cp-support-title-buttons',url)]),
|
||||
h('h2', [
|
||||
h('span', [ticketCategory, ticketTitle]),
|
||||
h('span.cp-support-title-buttons',url)
|
||||
]),
|
||||
actions
|
||||
]));
|
||||
|
||||
|
|
Loading…
Reference in New Issue