IE пользовательский ввод, показывающий внешний вид по умолчанию - PullRequest
0 голосов
/ 07 апреля 2020

Я пытаюсь создать пользовательский input, который может иметь тип radio или checkbox. Но у меня проблема с браузером css в IE.

Ожидаемый результат:

Expected result

IE Результат браузера

enter image description here

Вход JSX

const CheckBox2: FC<ICheckBox2Props> = ({ label, type = "checkbox", className, labelClassName, ...props }) => {
    return (
        <label className={[styles.container, className ?? ""].join(" ")}>
            <input
                {...props}
                type={type}
            />
            {label && <span className={[styles.label, labelClassName ?? ""].join(" ")} >{label}</span>}
        </label>
    );
};

export default CheckBox2;

Ввод CSS

.container {
    display: inline-flex;
    align-items: center;
    margin-right: 48px;

    >input {
        cursor: pointer;

        height: 17px;
        width: 17px;

        box-sizing: border-box;
        border: 1px solid #ABACAD;
        border-radius: 2px;

        -webkit-appearance: none;
        -moz-appearance: none;
        -ms-appearance: none;
        -o-appearance: none;
        appearance: none;

        outline: none;

        &:checked {
            height: 17px;
            width: 17px;

            box-sizing: border-box;
            border: 1px solid #2D3641;
            border-radius: 2px;
            background-color: #2D3641;

            background-image: url(../../../../assets/images/icons/ico_check.png);
            background-size: 10px 9px;
            background-repeat: no-repeat;
            background-position: center;
        }
    }

    .label{
        margin-left: 16px;
    }
}

Ответы [ 2 ]

0 голосов
/ 07 апреля 2020

Не лучшее решение и не лучшая практика, но вот кое-что, с чем я пришел:

МОЙ JSX

const CheckBox2: FC<ICheckBox2Props> = ({ label, type = "checkbox", className, labelClassName, ...props }) => {
    return (
        <label className={[styles.container, className ?? ""].join(" ")}>
            <input
                {...props}
                type={type}
            />
            <div className={styles.inputContainer}>
            </div>
            {label && <span className={[styles.label, labelClassName ?? ""].join(" ")} >{label}</span>}
        </label>
    );
};

CSS

.container {
    display: inline-flex;
    align-items: center;
    margin-right: 48px;
    position: relative;

    .inputContainer{
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;

        cursor: pointer;

        height: 16px;
        width: 16px;

        box-sizing: border-box;
        border: 1px solid #ABACAD;
        border-radius: 2px;
    }

    >input{
        opacity: 0;
        height: 16px;
        width: 16px;

        &:checked + .inputContainer {
            height: 16px;
            width: 16px;

            box-sizing: border-box;
            border: 1px solid #2D3641;
            border-radius: 2px;
            background-color: #2D3641;

            background-image: url(../../../../assets/images/icons/ico_check.png);
            background-size: 10px 9px;
            background-repeat: no-repeat;
            background-position: center;
        } 
    }

}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .container{
        .inputContainer{
            top: 2px;
            left: 0px
        }
    }
}


0 голосов
/ 07 апреля 2020

Я вижу, что вы используете CSS внешний вид в своем коде.

    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;

CSS внешний вид не поддерживается в IE Браузер и префикс -ms не помогут исправить это. Я думаю, что это является причиной проблемы.

enter image description here

Ссылка:

CSS Внешний вид

Я не получил никакой альтернативы для внешнего вида CSS.

Вы можете попробовать использовать инструменты разработчика для просмотра примененных свойств CSS. Это может помочь понять проблему.

...