From ad5709d3b55a791cda1e346bd6e13233cecec857 Mon Sep 17 00:00:00 2001 From: Valerie Date: Wed, 20 Sep 2017 22:47:19 +0300 Subject: [PATCH] Setup wizard: Add shipping list header --- assets/css/wc-setup.scss | 30 +++++++++++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) diff --git a/assets/css/wc-setup.scss b/assets/css/wc-setup.scss index 5f2086d7dff..d8e83f5b22e 100644 --- a/assets/css/wc-setup.scss +++ b/assets/css/wc-setup.scss @@ -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; + } + } + } +}