Убираем «Обновить, если не виден код» средствами CSS [DLE All]

Убираем «Обновить, если не виден код» средствами CSS [DLE All]

Название: Убираем «Обновить, если не виден код» средствами CSS
Автор: JacobClyne
CMS: DLE All
Описание:
Всем привет, увидел этот хак и решил поделится моим методом. Он работает через CSS и никаких файлов редактировать не нужно.
Добавить в css:

    span#dle-captcha {
        display: inline-block;
        position: relative;
        z-index: 9;
    }
    span#dle-captcha br {
        display: none !important;
    }
    span#dle-captcha img {
        position: relative;
        z-index: 1;
    }
    span#dle-captcha a {
        position: absolute;
        background: rgba(0, 0, 0, 0);
        top: 0px;
        left: 0px;
        z-index: 11;
        right: 0px;
        bottom: 0px;
        height: 100%;
        width: 100%;
        font-size: 0px !important;
        -moz-transition: all 0.2s ease;
        -webkit-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }
    span#dle-captcha a:hover {
        background: rgba(255, 255, 255, 0.1);
        -moz-transition: all 0.2s ease;
        -webkit-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }
    span#dle-captcha a:active {
        -moz-transition: all 0.2s ease;
        -webkit-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
        background: rgba(0, 0, 0, 0.1);
        }