fix(table): change cell border color

pull/46/head
KostyaDanovsky 2016-05-05 11:22:39 +03:00 committed by kostya.danovsky
parent 03a7808d23
commit b76d0a64e3
1 changed files with 3 additions and 2 deletions

View File

@ -221,7 +221,7 @@ input.search-input {
}
.black-muted-bg {
background-color: rgba(0, 0, 0, 0.2);
background-color: rgba(0, 0, 0, 0.1);
}
.table-hover {
@ -230,13 +230,14 @@ input.search-input {
}
}
.table-bordered,
.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;
border: 1px solid rgba($border, 0.2);
}
.table-striped > tbody > tr:nth-of-type(odd) {