43 lines
962 B
CSS
43 lines
962 B
CSS
#formipay-orders table td {
|
|
vertical-align: top;
|
|
}
|
|
th.gridjs-th[data-column-id=id],
|
|
th.gridjs-th[data-column-id=date],
|
|
th.gridjs-th[data-column-id=total],
|
|
th.gridjs-th[data-column-id=paymentGateway],
|
|
th.gridjs-th[data-column-id=status] {
|
|
text-align: center;
|
|
}
|
|
td.gridjs-td[data-column-id=id],
|
|
td.gridjs-td[data-column-id=paymentGateway],
|
|
td.gridjs-td[data-column-id=date],
|
|
td.gridjs-td[data-column-id=status] {
|
|
text-align: center;
|
|
}
|
|
span.grand_total {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
span.grand_total img {
|
|
margin-bottom: -4px;
|
|
}
|
|
span:has(.status-label) {
|
|
width: 100%;
|
|
display: block;
|
|
text-align: center;
|
|
padding-top: 5px;
|
|
}
|
|
span.status-label {
|
|
padding: 5px 10px;
|
|
border-radius: 5px;
|
|
text-transform: capitalize;
|
|
background-color: #999999;
|
|
color: white;
|
|
}
|
|
span.status-label.Completed {
|
|
background-color: #277aff;
|
|
}
|
|
.top-40 {
|
|
top: 40px!important;
|
|
} |