Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/user-interface/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/machine-learning/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
User interface 什么设置升华文本3 UI主题的左文件窗格边距?_User Interface_Themes_Sublimetext3 - Fatal编程技术网

User interface 什么设置升华文本3 UI主题的左文件窗格边距?

User interface 什么设置升华文本3 UI主题的左文件窗格边距?,user-interface,themes,sublimetext3,User Interface,Themes,Sublimetext3,我将苏打黑UI主题用于Sublime Text 3,我想增加窗格中的左边距。我觉得太紧了 使用什么类别来定义该余量 您要查找的类是侧边栏_container,属性是内容_margin 我在您的屏幕截图中看到,您已经知道需要查看哪些文件,但其他用户可能知道您可以创建一个名为Soda Dark 3.sublime-theme inside Packages/User的文件,用于覆盖以下内容: [ // Soda Dark 3 theme overrides // Sidebar co

我将苏打黑UI主题用于Sublime Text 3,我想增加窗格中的左边距。我觉得太紧了

使用什么类别来定义该余量


您要查找的类是侧边栏_container,属性是内容_margin

我在您的屏幕截图中看到,您已经知道需要查看哪些文件,但其他用户可能知道您可以创建一个名为Soda Dark 3.sublime-theme inside Packages/User的文件,用于覆盖以下内容:

[
    // Soda Dark 3 theme overrides
    // Sidebar container
    {
        "class": "sidebar_container",
        "content_margin": [10, 0, 1, 0]
    }
]
content_margin的值具有以下语法,因此在这种情况下,您需要更改所需左边距值的第一个值:

[left, top, right, bottom]