23 lines
298 B
SCSS
23 lines
298 B
SCSS
@import 'mixins';
|
|
|
|
.mainPanel td:last-of-type {
|
|
@include ellipsis;
|
|
} // for type td
|
|
|
|
.paymentTypeIcon {
|
|
color: $bluegrass;
|
|
}
|
|
|
|
.refundStatus {
|
|
font-weight: bold;
|
|
}
|
|
.refundStatus.succeeded {
|
|
color: $thankYou-green;
|
|
}
|
|
.refundStatus.failed {
|
|
color: $red;
|
|
}
|
|
.refundStatus.pending {
|
|
color: $oj;
|
|
}
|
|
|