catalog-checkboxes.scss 1.57 KB
@import "../../vars";
@import "../../mixins";

.catalog-content-checkboxes {

    &__title {
        color: $vmainGrey;
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;
    }
}

.catalog-checkboxes-container {
    display: inline-block;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    padding-left: 23px;
    margin-right: 11px;
    color: #636B78;
    margin-top: 16px;
    font-size: 14px;
}

.catalog-checkboxes-count {
    margin-left: 6px;
}

/* скрываем дефолтный флажок */
.catalog-checkboxes-container .check-highload {
    position: absolute;
    opacity: 0;
}

.highload2 {
    position: absolute;
    top: 1px;
    left: 0;
    height: 14px;
    width: 14px;
    background-color: #eee;
    background-color: #fff;
    border: 1px solid #ABB2BF;
    border-radius: 3px;
}

/* Когда отмечен, то красим */
.catalog-checkboxes-container .check-highload:checked~.highload2 {
    background-color: #ABB2BF;
}

/* Создаем когда отмечено (не видно, когда не отмечено) */
.highload2:after {
    content: "";
    position: absolute;
    display: none;
}

/* Показываем когда отмечен */
.catalog-checkboxes-container .check-highload:checked~.highload2:after {
    display: block;
}

/* Стили индикатора */
.catalog-checkboxes-container .highload2:after {
    width: 12px;
    height: 12px;
    border: 2px solid white;
    border-radius: 2px;

}