zoukankan      html  css  js  c++  java
  • vscode 文件标签栏多行显示

    .title {
        height: auto !important;
    }
    
    .tabs-and-actions-container {
        display: block !important;
        height: auto !important;
    }
    
    .tabs-and-actions-container .monaco-scrollable-element {
        height: auto !important;
    }
    
    .tabs-container {
        overflow: initial !important;
        height: auto !important;
        display: flex !important;
        flex-wrap: wrap !important;
    }
    
    .tabs-and-actions-container .editor-actions {
        position: fixed !important;
        right: 0 !important;
        z-index: 20 !important;
        bottom: 20px !important;
        background: #222 !important;
    }

    以上是tabs-wrapper.css内容

    /*
    安装Custom CSS and JS Loader

    setting.json中增加
    "vscode_custom_css.imports": [
    "file:C://Users//gongjianmin//.vscode/tabs-wrapper.css"
    ],
    "vscode_custom_css.policy": true,

    ctrl+shift+P中运行
    Reload Custom CSS and JS
    重启VScode(或许需要管理员启动)
    即可看到文件标签栏是多行的
    */

    来源:https://blog.csdn.net/tangyang8941/article/details/107169763

  • 相关阅读:
    pyQt5新手教程 (二)开始你的旅程-编写
    未来写作
    电脑使用问题
    cad学习问题
    chm制作
    github学习之路
    python解决实际问题
    英语学习
    经济学
    通过playgrounds程序学习swift语言及思想
  • 原文地址:https://www.cnblogs.com/gongkiro/p/14210214.html
Copyright © 2011-2022 走看看