Downloads
The Ubercart team have done a superb job with the coding and for the most part have left the theming and styling up to us. One area that I thought could use a little CSS modification was the checkout review table at store/cart/checkout/review. Following is the CSS coding that I am using at my store; obviously, you can change the colors and other specifications to suit your own needs. I started out at uc_order.css but decided to move the whole thing to a separate CSS file so that I would not lose this coding when I upgrade to a new version of UC. Enjoy!
/*checkout review table @ store/cart/checkout/review */
.order-review-table tbody tr { background: #E0DFB1; line-height: 2em; }
.order-review-table tbody tr td {padding-left: .31em; padding-right: .31em; }
.order-review-table .title-col { padding-left: 3em; padding-right: 3em; background: #E0DFB1; text-align: left;}
.order-review-table .data-col { padding-left: 3em; padding-right: 3em; background: #E0DFB1; text-align: right; font-weight: 700;}
.pane-title-row td { background: #535233; color: white; padding: 1em;}
.order-review-table tbody .review-button-row { text-align: center; background: #535233;}
.order-review-table tbody .review-button-row .form-submit { background: #000; color: white; padding: .51em; margin-bottom: 1em;}





. I've attached my interpretation of what you've done, in case it's of any use to anyone else.