Checkboxes don't work with unordered list bullets

Here’s a hacky CSS fix if you need it, @xiasummer:

Displays the bullet

.cooked ol ul li.has-checkbox {
    margin-left: 1em;
    list-style-type: initial;
    .list-item-checkbox {
        left: 0;
        position: relative;
    }
}

image

Hide the bullet:

.cooked ol ul li.has-checkbox {
    margin-left: 1em;
}

image

3 Likes