add cursor:pointer to checkbox and radio fields (https://github.com/woocommerce/woocommerce-blocks/pull/9102)
Co-authored-by: Paulo Arromba <17236129+wavvves@users.noreply.github.com>
This commit is contained in:
parent
32f43e3d84
commit
b3acdea73c
|
@ -4,6 +4,7 @@
|
|||
margin: em($gap) 0;
|
||||
padding: 0 0 0 em($gap-larger);
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
|
||||
&:first-child {
|
||||
margin-top: 0;
|
||||
|
@ -70,6 +71,7 @@
|
|||
left: 0;
|
||||
top: 50%;
|
||||
transform: translate(0, -50%);
|
||||
cursor: pointer;
|
||||
|
||||
&:checked::before {
|
||||
background: #000;
|
||||
|
|
|
@ -6,7 +6,12 @@
|
|||
align-items: flex-start;
|
||||
display: flex;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
@include font-size(small);
|
||||
|
||||
input[type="checkbox"] {
|
||||
cursor: inherit;
|
||||
}
|
||||
}
|
||||
|
||||
.wc-block-components-checkbox__input[type="checkbox"] {
|
||||
|
|
Loading…
Reference in New Issue