Skip to content

Commit

Permalink
update minimum version to 172 due to change in tab selectors, see #104
Browse files Browse the repository at this point in the history
  • Loading branch information
DanBrooker committed Jan 14, 2015
1 parent 1e961b3 commit c0a1c19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"license": "MIT",
"engines": {
"atom": ">0.136.0"
"atom": ">0.171.0"
},
"dependencies": {},
"readme": "# file-icons\n\nAdds file specific icons to atom for improved visual grepping\n\n![Screenshot](https://raw.githubusercontent.com/DanBrooker/file-icons/master/file-icons.png)\n\n# Customisation\n\nCSS classes can be used to customise the file icon or the filename\n\n // This is the ruby default css\n // Sets the icon to octicon-ruby and colours it red\n .filetype-icon-rb:before\n {\n content: \"\\f047\";\n color: red;\n }\n\nClasses are generated based on file extension or file name in absence of extension.\ne.g.\n* .rb -> file-icon-rb\n* .erb -> file-icon-erb\n* .html -> file-icon-html\n* Procfile -> file-icon-Procfile\n\n```\n// You could also colour the entire filename and icon if you so desired\n// Sets the icon to octicon-ruby and colours both the icon and filename text\n.filetype-icon-rb\n{\n color: red;\n}\n.filetype-icon-rb:before\n{\n content: \"\\f047\";\n}\n```\n\n# Acknowledgments\nWouldn't have even tried to make this if it weren't for [sommerper/filetype-color](https://github.com/sommerper/filetype-color)\n",
Expand Down

0 comments on commit c0a1c19

Please sign in to comment.