Lessify the base fuzzy finder stylehsheet

This commit is contained in:
Kevin Sawicki
2013-05-01 16:51:39 -07:00
parent 01ad97e7b0
commit 37b298fcba

View File

@@ -4,74 +4,77 @@
padding: 5px 10px 5px 10px;
}
.path, .file {
.path {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
color: rgba(0, 0, 0, 0.5);
margin-top: -2px;
margin-left: 26px;
font-size: .9em;
}
.status {
font-family: 'Octicons Regular';
font-size: 16px;
width: 16px;
height: 16px;
margin-left: 5px;
-webkit-font-smoothing: antialiased;
color: #9d9d9d;
float: right;
&new:before {
position: relative;
top: 3px;
content: "\f06b";
}
&:before {
position: relative;
top: 3px;
content: "\f06d";
}
}
.file {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
&:before {
font-family: 'Octicons Regular';
font-size: 16px;
width: 16px;
height: 16px;
margin-right: 5px;
margin-left: 5px;
-webkit-font-smoothing: antialiased;
color: #9d9d9d;
}
&.text-name:before {
content: "\f011";
}
&.image-name:before {
content: "\f012";
}
&.compressed-name:before {
content: "\f013";
}
&.pdf-name:before {
content: "\f014";
}
&.readme-name:before {
content: "\f007";
}
&.binary-name:before {
content: "\f094";
}
}
}
.fuzzy-finder .path {
color: rgba(0, 0, 0, 0.5);
margin-top: -2px;
margin-left: 26px;
font-size: .9em;
}
.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";
}