Skip to content

Commit

Permalink
feat: Add "material_theme_big_fileicons" setting
Browse files Browse the repository at this point in the history
Close #997
  • Loading branch information
equinusocio committed Oct 10, 2016
1 parent ba25d37 commit 4da341b
Show file tree
Hide file tree
Showing 7 changed files with 63 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Material-Theme-Darker.sublime-theme
Original file line number Diff line number Diff line change
Expand Up @@ -6354,6 +6354,21 @@
"settings": ["material_theme_disable_fileicons"],
"layer0.opacity": 0,
"content_margin": [0, 0]
},

// Bigger file_type icons

{
"class": "icon_file_type",
"settings": ["material_theme_big_fileicons"],
"content_margin": [11, 11]
},

{
"class": "icon_file_type",
"settings": ["material_theme_big_fileicons"],
"parents": [{"class": "tree_row", "attributes": ["selected"]}],
"content_margin": [11, 11]
}

//
Expand Down
15 changes: 15 additions & 0 deletions Material-Theme-Lighter.sublime-theme
Original file line number Diff line number Diff line change
Expand Up @@ -6360,6 +6360,21 @@
"settings": ["material_theme_disable_fileicons"],
"layer0.opacity": 0,
"content_margin": [0, 0]
},

// Bigger file_type icons

{
"class": "icon_file_type",
"settings": ["material_theme_big_fileicons"],
"content_margin": [11, 11]
},

{
"class": "icon_file_type",
"settings": ["material_theme_big_fileicons"],
"parents": [{"class": "tree_row", "attributes": ["selected"]}],
"content_margin": [11, 11]
}

//
Expand Down
15 changes: 15 additions & 0 deletions Material-Theme.sublime-theme
Original file line number Diff line number Diff line change
Expand Up @@ -6372,6 +6372,21 @@
"settings": ["material_theme_disable_fileicons"],
"layer0.opacity": 0,
"content_margin": [0, 0]
},

// Bigger file_type icons

{
"class": "icon_file_type",
"settings": ["material_theme_big_fileicons"],
"content_margin": [11, 11]
},

{
"class": "icon_file_type",
"settings": ["material_theme_big_fileicons"],
"parents": [{"class": "tree_row", "attributes": ["selected"]}],
"content_margin": [11, 11]
}

//
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ If you want to enable the white panels and inputs you can install the addon pack
"material_theme_compact_sidebar" : true , // Set compact side bar
"material_theme_contrast_mode" : true , // Enable sidebar and panels contrast mode
"material_theme_disable_fileicons" : true , // Hide sidebar file type icons
"material_theme_big_fileicons" : true , // Show bigger file type icons
"material_theme_disable_folder_animation" : true , // Disable folder animation
"material_theme_disable_tree_indicator" : true , // Disable sidebar file indicator
"material_theme_panel_separator" : true , // Show bottom panel separator
Expand Down
1 change: 1 addition & 0 deletions messages/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ You can also manually activate this theme by adding these lines to your user set
"material_theme_compact_sidebar" : true , // Set compact side bar
"material_theme_contrast_mode" : true , // Enable sidebar and panels contrast mode
"material_theme_disable_fileicons" : true , // Hide sidebar file type icons
"material_theme_big_fileicons" : true , // Show bigger file type icons
"material_theme_disable_folder_animation" : true , // Disable folder animation
"material_theme_disable_tree_indicator" : true , // Disable sidebar file indicator
"material_theme_panel_separator" : true , // Show bottom panel separator
Expand Down
1 change: 1 addition & 0 deletions plugins/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
'Sidebar',
[
'material_theme_disable_fileicons',
'material_theme_big_fileicons',
'material_theme_disable_folder_animation',
'material_theme_compact_sidebar',
'material_theme_disable_tree_indicator',
Expand Down
15 changes: 15 additions & 0 deletions sources/themes/commons/options.json
Original file line number Diff line number Diff line change
Expand Up @@ -285,4 +285,19 @@
"settings": ["material_theme_disable_fileicons"],
"layer0.opacity": 0,
"content_margin": [0, 0]
},

// Bigger file_type icons

{
"class": "icon_file_type",
"settings": ["material_theme_big_fileicons"],
"content_margin": [11, 11]
},

{
"class": "icon_file_type",
"settings": ["material_theme_big_fileicons"],
"parents": [{"class": "tree_row", "attributes": ["selected"]}],
"content_margin": [11, 11]
}

0 comments on commit 4da341b

Please sign in to comment.