Setup wizard: Add shipping list header

This commit is contained in:
Valerie 2017-09-20 22:47:19 +03:00 committed by Jeff Stieler
parent 27e148326f
commit ad5709d3b5
1 changed files with 27 additions and 3 deletions

View File

@ -487,11 +487,11 @@ body {
flex-wrap: nowrap;
justify-content: space-between;
padding: 2em 0;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
color: #666;
&:first-child {
border-top: 0;
&:last-child {
border-bottom: 0;
}
.payment-gateway-fee {
@ -594,3 +594,27 @@ body {
.wc-wizard-services.manual .wc-wizard-service-item {
display: none;
}
// Shipping
.wc-wizard-services.shipping {
.wc-wizard-service-name {
font-weight: normal;
text-align: left;
}
// List header
.wc-wizard-service-item {
padding-left: 2em;
&:first-child {
border-bottom: 0;
padding-bottom: 0;
font-weight: 700;
.wc-wizard-service-name {
font-weight: 700;
}
}
}
}