Skip to content

Commit

Permalink
refactor(tables): make contextual table opacity
Browse files Browse the repository at this point in the history
  • Loading branch information
SashaSkywalker committed Feb 29, 2016
1 parent c8e4500 commit be4c44d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/sass/theme/_table.scss
Original file line number Diff line number Diff line change
Expand Up @@ -241,23 +241,23 @@ body.badmin-transparent {
background-color: rgba(0, 0, 0, 0.1);
}
.table > tbody > tr.primary > td {
background-color: $primary;
background-color: rgba($primary,0.7);
border: none;
}
.table > tbody > tr.success > td {
background-color: $success;
background-color: rgba($success,0.7);
border: none;
}
.table > tbody > tr.warning > td {
background-color: $warning;
background-color: rgba($warning,0.7);
border: none;
}
.table > tbody > tr.danger > td {
background-color: $danger;
background-color: rgba($danger,0.7);
border: none;
}
.table > tbody > tr.info > td {
background-color: $info;
background-color: rgba($info,0.7);
border: none;
}

Expand Down

0 comments on commit be4c44d

Please sign in to comment.