refactor(monitor): limited width to the client and zone columns
gitea/salix/pipeline/head This commit looks good Details

Refs: 3458
This commit is contained in:
Joan Sanchez 2021-12-17 13:09:00 +01:00
parent 4cb346c2a8
commit da59a556ca
2 changed files with 9 additions and 1 deletions

View File

@ -167,7 +167,7 @@
{{::ticket.state}}
</span>
</td>
<td>
<td name="zone">
<span
title="{{::ticket.zoneName}}"
vn-click-stop="zoneDescriptor.show($event, ticket.zoneFk)"

View File

@ -36,4 +36,12 @@ vn-monitor-sales-tickets {
.highRisk i {
color: $color-alert
}
td[name="nickname"] {
max-width: 200px
}
td[name="zone"] {
max-width: 150px
}
}