2017-03-31 87 views
1

除了狀態欄外,我成功修改了Material Theme的sidebar_containertabset_control。這對我來說有點太大了,我想調整它的高度,如Piatto's(如果可能的話,也是寬度/高度)。如何增加/減少崇高狀態欄的高度?

材料主題:(修改,除了狀態欄) enter image description here

PIATTO黑暗主題: enter image description here

如何設置狀態欄的高度/寬度? (如果可能的話,還有按鈕)

回答

2

您可以嘗試將以下代碼添加到.sublime-theme文件中。修改「content_margin」中的值以調整高度。

{ 
    "class": "status_bar", 
    "content_margin": [0, 0, 0, 0] 
}, 
{ 
    "class": "status_button", 
    "content_margin": [0, 0, 0, 0], 
    "min_size": [75, 0] 
} 

或添加用戶設置如下:

"material_theme_small_statusbar": true 
+0

最後一行是我需要什麼 – newbieguy