This repository was archived by the owner on Aug 25, 2018. It is now read-only.
File tree 3 files changed +12
-12
lines changed
3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 1
1
.status { .text (normal ); }
2
- .status-added { .text (info ); }
3
- .status-ignored { .text (subtle); }
4
- .status-modified { .text (warning); }
5
- .status-removed { .text (error); }
6
- .status-renamed { .text (success ); }
2
+ .status-added { .text (success ); } // green
3
+ .status-ignored { .text (subtle); } // faded
4
+ .status-modified { .text (warning); } // orange
5
+ .status-removed { .text (error); } // red
6
+ .status-renamed { .text (info ); } // blue
Original file line number Diff line number Diff line change 31
31
32
32
}
33
33
34
- .generate-list-item-status-color (@text-color-subtle , ignored);
35
34
.generate-list-item-status-color (@text-color-added , added);
36
- .generate-list-item-status-color (@text-color-renamed , renamed );
35
+ .generate-list-item-status-color (@text-color-ignored , ignored );
37
36
.generate-list-item-status-color (@text-color-modified , modified);
38
37
.generate-list-item-status-color (@text-color-removed , removed);
38
+ .generate-list-item-status-color (@text-color-renamed , renamed);
39
39
40
40
li :not (.list-nested-item ).selected ,
41
41
li .list-nested-item.selected > .list-item {
Original file line number Diff line number Diff line change 139
139
@text-color-warning : hsl ( 37 , 90% , 44% );
140
140
@text-color-error : hsl ( 0 , 90% , 56% );
141
141
142
- @text-color-ignored : @text-color-subtle ;
143
- @text-color-added : @text-color-success ;
144
- @text-color-renamed : @text-color-info ;
145
- @text-color-modified : @text-color-warning ;
146
- @text-color-removed : @text-color-error ;
142
+ @text-color-added : @text-color-success ; // green
143
+ @text-color-ignored : @text-color-subtle ; // faded
144
+ @text-color-modified : @text-color-warning ; // orange
145
+ @text-color-removed : @text-color-error ; // red
146
+ @text-color-renamed : @text-color-info ; // blue
147
147
148
148
149
149
// Sizes
You can’t perform that action at this time.
0 commit comments