Skip to content

Commit

Permalink
fix(tables): fix borders and hover effect
Browse files Browse the repository at this point in the history
  • Loading branch information
SashaSkywalker authored and KostyaDanovsky committed May 13, 2016
1 parent 95811fa commit aae3115
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions src/sass/theme/_table.scss
Original file line number Diff line number Diff line change
Expand Up @@ -221,15 +221,24 @@ input.search-input {
}

.black-muted-bg {
background-color: rgba(0, 0, 0, 0.1);
background-color: rgba(0, 0, 0, 0.2);
}

.table-hover {
tr:hover {
> tbody > tr:hover {
background-color: rgba(0, 0, 0, 0.1);
}
}

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td{
border: 1px solid $input-border;
}

.table-striped > tbody > tr:nth-of-type(odd) {
background-color: rgba(0, 0, 0, 0.1);
}
Expand Down

0 comments on commit aae3115

Please sign in to comment.