From 084d31036624b3c1a5860ea7a4cc74815e1f835c Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 7 Aug 2013 13:50:38 -0700 Subject: [PATCH] Use octicon variables in fuzzy-finder.less --- .../stylesheets/fuzzy-finder.less | 22 ++++++++++--------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/src/packages/fuzzy-finder/stylesheets/fuzzy-finder.less b/src/packages/fuzzy-finder/stylesheets/fuzzy-finder.less index 3371e6fcd..5f7d7f25d 100644 --- a/src/packages/fuzzy-finder/stylesheets/fuzzy-finder.less +++ b/src/packages/fuzzy-finder/stylesheets/fuzzy-finder.less @@ -1,3 +1,5 @@ +@import "octicon-utf-codes.less"; + .fuzzy-finder { &.select-list li { @@ -20,16 +22,16 @@ color: #9d9d9d; float: right; - &new:before { + &.new:before { position: relative; top: 3px; - content: "\f06b"; + content: @diff-added; } - &:before { + &.modified:before { position: relative; top: 3px; - content: "\f06d"; + content: @diff-modified; } } @@ -46,27 +48,27 @@ } &.text-name:before { - content: "\f011"; + content: @file-text; } &.image-name:before { - content: "\f012"; + content: @file-media; } &.compressed-name:before { - content: "\f013"; + content: @file-zip; } &.pdf-name:before { - content: "\f014"; + content: @file-pdf; } &.readme-name:before { - content: "\f007"; + content: @book; } &.binary-name:before { - content: "\f094"; + content: @file-binary; } } }