Merge pull request #758 from rubenmoya/dev

Fix table borders (Issue #476)
old
Javi Velasco 2016-09-03 11:13:29 +02:00 committed by GitHub
commit 120bf58356
1 changed files with 5 additions and 2 deletions

View File

@ -8,10 +8,10 @@
font-size: $font-size-tiny;
color: $table-text-color;
text-align: left;
border-spacing: 0;
tr {
height: $table-row-height;
line-height: $table-row-height;
border-bottom: $table-row-divider;
}
th {
font-weight: $font-weight-bold;
@ -20,6 +20,7 @@
}
}
th, td {
border-bottom: $table-row-divider;
position: relative;
padding: 0 $table-row-offset;
&.selectable {
@ -35,7 +36,9 @@
.row {
transition: background-color $animation-duration $animation-curve-default;
&:last-child {
border-color: transparent;
td {
border-color: transparent;
}
}
> td {
> input {