Add git icons, use them in select-lists

This commit is contained in:
Ben Ogle
2013-08-27 16:48:51 -07:00
parent 7ab4565b9d
commit 3f6ddbc3f4
3 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
@import "ui-mixins";
@import "ui-variables";
.status { .text(normal); }
.status-added { .text(info); }
.status-ignored { .text(subtle); }
.status-modified { .text(warning); }
.status-removed { .text(error); }
.status-renamed { .text(success); }

View File

@@ -22,6 +22,14 @@
border-bottom: 1px solid @overlay-background-color;
&.two-lines { padding: @component-padding/2 @component-padding; }
.status.icon {
float: right;
margin-left: @component-icon-padding;
&:before {
margin-right: 0;
}
}
}
}
}

View File

@@ -2,6 +2,7 @@
'atom'
'utilities'
'text'
'git'
'icons'
'loading'
'buttons'