iconfont 左侧样式调整

调整iconfont左侧项目导航的样式

// ==UserScript==
// @name         iconfont 左侧样式调整
// @namespace    http://tampermonkey.net/
// @version      2024-01-06-1
// @description  调整iconfont左侧项目导航的样式
// @author       You
// @include      *://*.iconfont.cn/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=iconfont.cn
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    document.createElement('sytle')
    // 创建一个 style 元素
    var styleElement = document.createElement('style');

    // 设置样式内容
    var cssCode = `
        .page-manage-container .page-manage-left {
            width: auto;
        }
        .page-manage-container .page-manage-left .block-left-nav .nav-container .nav-lists .nav-item{
            width: auto;
        }
    `;

    // 将样式内容添加到 style 元素中
    styleElement.appendChild(document.createTextNode(cssCode));

    // 将 style 元素插入到文档头部
    document.head.appendChild(styleElement);

    // Your code here...
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址