| 1 |
/**************************** |
| 2 |
ORDERING TABLE |
| 3 |
****************************/ |
| 4 |
.sap-ordering-table table { |
| 5 |
width: 100%; |
| 6 |
border-collapse: collapse; |
| 7 |
} |
| 8 |
.sap-ordering-table table th, .sap-ordering-table table td { |
| 9 |
background: #f1f1f1; |
| 10 |
padding: 8px 16px; |
| 11 |
width: calc(100% - 32px); |
| 12 |
} |
| 13 |
.sap-ordering-table table td { |
| 14 |
border-bottom: 1px solid #ccc; |
| 15 |
cursor: move; |
| 16 |
} |
| 17 |
.sap-ordering-table table td:first-of-type { |
| 18 |
border-top: 1px solid #ccc; |
| 19 |
} |
| 20 |
.sap-ordering-table table tr:nth-of-type(2n+2) td { |
| 21 |
background: #fafafa; |
| 22 |
} |
| 23 |
.sap-ordering-table table th { |
| 24 |
background: #662D91; |
| 25 |
color: #fff; |
| 26 |
text-align: left; |
| 27 |
} |
| 28 |
.sap-ordering-table-restore-default.button-primary { |
| 29 |
margin-top: 16px; |
| 30 |
} |