Skip to content

金山文档深色模式 by Bansuiji

Details

AuthorBansuiji

LicenseMIT

Categorykdocs

Created

Updated

Size1.0 kB

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

应用于www.kdocs.cn的深色模式,支持首页和word, excel, pdf页

Notes

开启时请注意和dark reader类似的浏览器插件的样式冲突,为当前网址关闭其功能

Source code

/* ==UserStyle==
@name         金山文档深色模式
@version      20240504.12.06
@namespace    https://userstyles.world/user/Bansuiji
@description  应用于www.kdocs.cn的深色模式,支持首页和word, excel, pdf页
@author       Bansuiji
@license      MIT
==/UserStyle== */

@-moz-document domain("www.kdocs.cn") {
:root {
    --filter: invert(100%) contrast(90%);
    filter: var(--filter);
    /*   还原部分   */
    img,
    svg,
    button,
    video {
        filter: var(--filter);
        span {
            filter: var(--filter);
        }
    }
    /*   结束还原部分   */
}

#app {
    #k-float-kdocs {
        display: none;
    }
}

#root {
    background: white;
    .et-container-middle,
    .pdf-container,
    #workspace {
        filter: var(--filter);
        /*   反转还原部分   */
        img,
        svg,
        button,
        video {
            filter: initial;
            span {
                filter: initial;
            }
        }
        /*   结束反转还原部分   */
    }
}
}

Reviews

No reviews yet.