44 lines
824 B
CSS
44 lines
824 B
CSS
.selected-row {
|
|
background-color: green !important;
|
|
color: white; /* Optionally, change text color for better contrast */
|
|
}
|
|
|
|
.selected-row a,
|
|
.selected-row span,
|
|
.selected-row td {
|
|
color: white; /* Ensures all text within the row is white */
|
|
}
|
|
|
|
.custom-modal-tracker {
|
|
max-width: 1320px !important;
|
|
margin: 0 auto;
|
|
overflow-x: hidden; /* Prevents horizontal overflow in the modal */
|
|
}
|
|
|
|
th.price, td.price {
|
|
width:7% !important;
|
|
}
|
|
|
|
th.qty, td.qty {
|
|
width: 7% !important;
|
|
}
|
|
|
|
th.emailAdd, td.emailAdd {
|
|
width: 10% !important;
|
|
}
|
|
|
|
th.suppName, td.suppName {
|
|
width: 15% !important;
|
|
}
|
|
|
|
th.Manufacturer, td.Manufacturer {
|
|
width: 15% !important;
|
|
}
|
|
|
|
th.Specification, td.Specification {
|
|
width: 30% !important;
|
|
}
|
|
|
|
th.action, td.action {
|
|
width: 7% !important;
|
|
} |