Change Project Explorer tree view font size in Eclipse Oxygen

前端 未结 12 1232
难免孤独
难免孤独 2020-12-24 08:04

I am using Eclipse Version: Oxygen.1a Release (4.7.1a) and I want to enlarge the Project Explorer tree view font size because I have some sight issues and thus I searched ma

12条回答
  •  执笔经年
    2020-12-24 08:54

    In my case using a MacBook 13", I had to edit the following file /Users/myuser/.p2/pool/plugins/org.eclipse.ui.themes_1.2.800.v20191030-0746/css/e4-dark_mac1013.css

    Then I searched for this existing item and added the font-size and font-size-adjust. Doing that prevents the tree line to be cropped:

    CTabFolder Tree, CTabFolder Canvas {
        background-color: #2F2F2F;
        color: #CCC;
        font-size-adjust: none;
        font-size: 14px;
    }
    

提交回复
热议问题