Spring Tool Suite: 如何隐藏所选文件的蓝色底部边框

huangapple go评论79阅读模式
英文:

Spring Tool Suite: How to hide blue color bottom border of selected file

问题

如何隐藏选定文件的蓝色底部边框,如下图所示,我正在使用Spring Tool Suite 4。

英文:

How to hide blue color bottom border of selected file, as shown in the below image, I am using Spring Tool Suite 4.Spring Tool Suite: 如何隐藏所选文件的蓝色底部边框

答案1

得分: 1

这个没有用户界面来更改,你将不得不编辑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;
}
英文:

There is no UI to change this, you will have to edit the Eclipse CSS.

The CSS is in the "plugins/org.eclipse.ui.themes_xxxx/css" folder in your Eclipse installation (xxxx varies depending on your Eclipse release).

For the dark theme I think this is probably the CTabFolder.active selector in the e4-dark_tabstyle.css file:

CTabFolder.active {
    swt-selected-tab-highlight: #316c9b;
    swt-selected-highlight-top: false;
}

huangapple
  • 本文由 发表于 2020年10月6日 15:03:36
  • 转载请务必保留本文链接:https://go.coder-hub.com/64220857.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定