File size: 442 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
.min-width-100px {
min-width: 100px;
}
.site-select-checkbox,
.site-bulk-select__checkbox {
input[type="checkbox"] {
&:checked::before {
content: url(/calypso/images/checkbox-icons/checkmark-jetpack.svg);
}
&::after {
// Making tap area larger
content: "";
position: absolute;
inset-block-start: -18px;
inset-inline-start: -16px;
width: 40px;
height: 50px;
}
}
}
.padding-0 {
padding: 0 !important;
}
|