feat: Add icons to root folders

Close #241
This commit is contained in:
Mattia Astorino 2018-08-27 22:03:00 +02:00
parent dc007442d8
commit 3ad76f1894
No known key found for this signature in database
GPG key ID: 7BE552533AB6D4E2
3 changed files with 20 additions and 4 deletions

View file

@ -19,6 +19,7 @@
},
"accentableIcons": [
"_folder_open",
"_folder_root_open",
"_folder_open_build",
"_folder_vscode_open",
"_folder_gulp_open",
@ -212,6 +213,12 @@
"_folder_light": {
"iconPath": "../icons/folder_light.svg"
},
"_folder_root_dark": {
"iconPath": "../icons/folder_root_dark.svg"
},
"_folder_root_light": {
"iconPath": "../icons/folder_root_light.svg"
},
"_file_folder": {
"iconPath": "../icons/file_folder.svg"
},
@ -221,6 +228,9 @@
"_folder_open": {
"iconPath": "../icons/folder_open.svg"
},
"_folder_root_open": {
"iconPath": "../icons/folder_root_open.svg"
},
"_folder_open_build": {
"iconPath": "../icons/folder_open_build.svg"
}
@ -286,6 +296,8 @@
"_folder_node",
"_folder_vscode",
"_folder_dark",
"_folder_light"
"_folder_light",
"_folder_root_dark",
"_folder_root_light"
]
}

View file

@ -1,3 +1,5 @@
"file": "_file_dark",
"folder": "_folder_dark",
"folderExpanded": "_folder_open",
"rootFolder": "_folder_root_dark",
"rootFolderExpanded": "_folder_root_open",

View file

@ -1,6 +1,8 @@
"light": {
"folderExpanded": "_folder_open",
"folder": "_folder_light",
"rootFolder": "_folder_root_light",
"rootFolderExpanded": "_folder_root_open",
"folderNames": {
"test": "_folder_test",
"node_modules": "_folder_node",