border style fixes for data table rows (#2264)

This commit is contained in:
Denys Vuika
2017-08-31 11:58:18 +01:00
committed by Mario Romano
parent 58c298fc25
commit 0333daae1c

View File

@@ -62,6 +62,12 @@
outline-color: rgb(68, 138, 255); outline-color: rgb(68, 138, 255);
outline-style: solid; outline-style: solid;
} }
&:last-child {
& > td {
border-bottom: $data-table-dividers;
}
}
} }
} }
@@ -84,7 +90,6 @@
vertical-align: middle; vertical-align: middle;
height: $data-table-row-height; height: $data-table-row-height;
border-top: $data-table-dividers; border-top: $data-table-dividers;
border-bottom: $data-table-dividers;
padding-top: $data-table-cell-top; padding-top: $data-table-cell-top;
box-sizing: border-box; box-sizing: border-box;
@@ -230,14 +235,6 @@
display: none; display: none;
} }
/* small desktop */
@media all and (max-width: 1200px) {
}
/* tablet */
@media all and (max-width: 1024px) {
}
/* mobile phone */ /* mobile phone */
@media all and (max-width: 768px) { @media all and (max-width: 768px) {
.desktop-only { .desktop-only {