mirror of
https://github.com/atom/atom.git
synced 2026-02-05 20:25:04 -05:00
Move fuzzy finder stylesheet into package directory
This commit is contained in:
64
src/packages/fuzzy-finder/stylesheets/fuzzy-finder.less
Normal file
64
src/packages/fuzzy-finder/stylesheets/fuzzy-finder.less
Normal file
@@ -0,0 +1,64 @@
|
||||
.fuzzy-finder .directory {
|
||||
color: rgba(0, 0, 0, 0.5);
|
||||
word-break: break-word;
|
||||
margin-left: 5px;
|
||||
line-height: 150%;
|
||||
}
|
||||
|
||||
.fuzzy-finder .file:before {
|
||||
font-family: 'Octicons Regular';
|
||||
font-size: 16px;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
margin-right: 5px;
|
||||
margin-left: 5px;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
color: #9d9d9d;
|
||||
}
|
||||
|
||||
.fuzzy-finder .status {
|
||||
font-family: 'Octicons Regular';
|
||||
font-size: 16px;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
margin-left: 5px;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
color: #9d9d9d;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.fuzzy-finder .status.new:before {
|
||||
position: relative;
|
||||
top: 3px;
|
||||
content: "\f06b";
|
||||
}
|
||||
|
||||
.fuzzy-finder .status.modified:before {
|
||||
position: relative;
|
||||
top: 3px;
|
||||
content: "\f06d";
|
||||
}
|
||||
|
||||
.fuzzy-finder .file.text-name:before {
|
||||
content: "\f011";
|
||||
}
|
||||
|
||||
.fuzzy-finder .file.image-name:before {
|
||||
content: "\f012";
|
||||
}
|
||||
|
||||
.fuzzy-finder .file.compressed-name:before {
|
||||
content: "\f013";
|
||||
}
|
||||
|
||||
.fuzzy-finder .file.pdf-name:before {
|
||||
content: "\f014";
|
||||
}
|
||||
|
||||
.fuzzy-finder .file.readme-name:before {
|
||||
content: "\f007";
|
||||
}
|
||||
|
||||
.fuzzy-finder .file.binary-name:before {
|
||||
content: "\f094";
|
||||
}
|
||||
Reference in New Issue
Block a user