From 263a471c40724eb74de0ab0bc126a8065ac0e830 Mon Sep 17 00:00:00 2001 From: Valerie Date: Wed, 27 Sep 2017 17:08:47 +0300 Subject: [PATCH] Wizard: Fix chevron placement in toggle list --- assets/css/wc-setup.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/assets/css/wc-setup.scss b/assets/css/wc-setup.scss index 8024c9f8f6d..eb190d4e1fb 100644 --- a/assets/css/wc-setup.scss +++ b/assets/css/wc-setup.scss @@ -567,6 +567,7 @@ body { // Toggle display a list of services .wc-wizard-service-enable input { visibility: hidden; + position: relative; &:before { content: "\f347"; // down chevron @@ -575,12 +576,15 @@ body { color: #666; font-size: 25px; margin-left: -5px; // center it + top: -6px; + position: absolute; } } .wc-wizard-service-enable input:checked { &:before { content: "\f343"; // up chevron + top: -7px; } } .wc-wizard-services.manual .wc-wizard-service-item {