Skip to content

Commit

Permalink
closes #38
Browse files Browse the repository at this point in the history
  • Loading branch information
45kb committed Dec 11, 2016
1 parent 91da351 commit a862430
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
10 changes: 7 additions & 3 deletions lib/content.pug
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,15 @@
.col-xs-2
span(ng-class="{'color-positive font-light': !aPackage.wanted && !aPackage.latest}")
| {{ aPackage.current }}
.col-xs-2 {{ aPackage.wanted }}
.col-xs-2
i(class="fa fa-check", ng-if="!aPackage.wanted && !aPackage.latest")
| {{ aPackage.wanted }}
.col-xs-2
b(ng-if="aPackage.latest")
| {{ aPackage.latest}}
.col-xs-2 {{ aPackage.kind }}
| {{ aPackage.latest }}
i(class="fa fa-check color-positive", ng-if="!aPackage.wanted && !aPackage.latest")
.col-xs-2
| {{ aPackage.kind }}
div.table-infos(ng-if="content.packageInformations && content.packageInformations.length > 0")
div.row
div.col-md-12
Expand Down
1 change: 1 addition & 0 deletions lib/scss/colors.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//this file is probably going to be DEPRECATED
.color-muted {
color: $color-muted;
}
Expand Down
4 changes: 4 additions & 0 deletions lib/scss/table.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
&:active, &.active {
background: $bg-table-row-highlight;
}

i {
color: $color-table-light-icons;
}
}

.table-body {
Expand Down
1 change: 1 addition & 0 deletions lib/scss/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ $color-bbb: #bbb;
$color-ccc: #ccc;
$color-white: #fff;
$color-black: black;
$color-table-light-icons: #d6e7e8;
/*
backgrounds
*/
Expand Down

0 comments on commit a862430

Please sign in to comment.