Spring 工具套件:如何隐藏所选文件的蓝色底部边框
Spring Tool Suite: How to hide blue color bottom border of selected file
如何隐藏所选文件的蓝色底部边框,如下图所示,我使用的是Spring Tool Suite 4.
没有 UI 可以更改它,您必须编辑 Eclipse CSS。
CSS 位于 Eclipse 安装的“plugins/org.eclipse.ui.themes_xxxx/css”文件夹中(xxxx 因 Eclipse 版本而异)。
对于深色主题,我认为这可能是 e4-dark_tabstyle.css
文件中的 CTabFolder.active
选择器:
CTabFolder.active {
swt-selected-tab-highlight: #316c9b;
swt-selected-highlight-top: false;
}
如何隐藏所选文件的蓝色底部边框,如下图所示,我使用的是Spring Tool Suite 4.
没有 UI 可以更改它,您必须编辑 Eclipse CSS。
CSS 位于 Eclipse 安装的“plugins/org.eclipse.ui.themes_xxxx/css”文件夹中(xxxx 因 Eclipse 版本而异)。
对于深色主题,我认为这可能是 e4-dark_tabstyle.css
文件中的 CTabFolder.active
选择器:
CTabFolder.active {
swt-selected-tab-highlight: #316c9b;
swt-selected-highlight-top: false;
}