file-icons / atom

Atom file-specific icons for improved visual grepping.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How do other folders use the default icon?

baagod opened this issue · comments

I created a folder called inc.
I want this folder to have the same icon as [folder name: include], how do I set it?

I want this folder to have the same icon as [folder name: include]

I'm not sure what you mean by that. Could you elaborate? Possibly with a screenshot?

how do I set it?

All icon customisation is achieved using CSS. To replicate the default styling applied to directories, you'd use:

.directory > .header > .icon{
	&[data-name="inc"]:before{
		font-family: "Octicons Regular";
		font-size: 16px;
		content: "\f016";
	}
}

Simply, I hope that the icons of these two folders are the same.

image

How to set them in IDEA ?

I don't know, because the IDEA port isn't something I have control over. You're better off reporting this to the proper repository. 😉

Closing as unrelated.