Wizard: Fix chevron placement in toggle list

This commit is contained in:
Valerie 2017-09-27 17:08:47 +03:00
parent 3a3ae914a3
commit 263a471c40
1 changed files with 4 additions and 0 deletions

View File

@ -567,6 +567,7 @@ body {
// Toggle display a list of services // Toggle display a list of services
.wc-wizard-service-enable input { .wc-wizard-service-enable input {
visibility: hidden; visibility: hidden;
position: relative;
&:before { &:before {
content: "\f347"; // down chevron content: "\f347"; // down chevron
@ -575,12 +576,15 @@ body {
color: #666; color: #666;
font-size: 25px; font-size: 25px;
margin-left: -5px; // center it margin-left: -5px; // center it
top: -6px;
position: absolute;
} }
} }
.wc-wizard-service-enable input:checked { .wc-wizard-service-enable input:checked {
&:before { &:before {
content: "\f343"; // up chevron content: "\f343"; // up chevron
top: -7px;
} }
} }
.wc-wizard-services.manual .wc-wizard-service-item { .wc-wizard-services.manual .wc-wizard-service-item {