fix(tables): fix borders and hover effect

pull/46/head
alex 2016-04-25 15:40:37 +03:00 committed by kostya.danovsky
parent 95811fa515
commit aae31155fd
1 changed files with 11 additions and 2 deletions

View File

@ -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);
}