VSCode hide top-right icons

后端 未结 6 1824
陌清茗
陌清茗 2020-12-05 18:43

I\'m a big fan of VScode\'s minimalist approach, but one thing is bugging me. I would like to hide editor-tab icons.

The icons are from extensions: gi

6条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-05 19:09

    Extension Custom CSS and JS Loader

    .tabs-and-actions-container .editor-actions {
        display: none !important;
    }
    

    Optionally, show them on hover:

    .tabs-and-actions-container:hover .editor-actions {
        display: flex !important;
    }
    

提交回复
热议问题