Enhance invoice data report styling by adding left text alignment for customer trade name
This commit is contained in:
@@ -29,6 +29,9 @@
|
|||||||
white-space: nowrap !important;
|
white-space: nowrap !important;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
.td-left {
|
||||||
|
text-align: left !important;
|
||||||
|
}
|
||||||
th {
|
th {
|
||||||
background-color: #215c98;
|
background-color: #215c98;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
@@ -101,7 +104,8 @@
|
|||||||
@endif
|
@endif
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td>{{ $row['customer_trade_name'] }}</td>
|
{{-- <td>{{ $row['customer_trade_name'] }}</td> --}}
|
||||||
|
<td class="td-left">{{ $row['customer_trade_name'] }}</td>
|
||||||
<td>{{ $row['customer_location'] }}</td>
|
<td>{{ $row['customer_location'] }}</td>
|
||||||
{{-- <td class="{{ $row['status'] == 'Went Out' ? 'status-wentout' : ($row['status'] == 'Pending' ? 'status-pending' : '') }}">
|
{{-- <td class="{{ $row['status'] == 'Went Out' ? 'status-wentout' : ($row['status'] == 'Pending' ? 'status-pending' : '') }}">
|
||||||
{{ $row['status'] }}
|
{{ $row['status'] }}
|
||||||
|
|||||||
Reference in New Issue
Block a user