Make Table rows have 1px borders. Lighten Table header color for increased contrast with row color. (#9864) (#9918)

This commit is contained in:
CJ Cenizal 2017-01-17 16:04:32 -08:00 committed by GitHub
parent 47d3f82a66
commit 4979bc0914
3 changed files with 5 additions and 4 deletions

View file

@ -40,6 +40,7 @@ $errorBorderColor: $errorColor;
// Borders
$tableBorder: 2px solid $panelColor;
$tableRowBorder: 1px solid $panelColor;
// Timing
$formTransitionTiming: 0.1s linear;

View file

@ -20,7 +20,7 @@
.kuiTableHeaderCell {
@include tableCell;
color: #787878;
color: #a7a7a7;
}
/**
@ -60,7 +60,7 @@
.kuiTableRowCell {
@include tableCell;
color: $fontColor;
border-top: $tableBorder;
border-top: $tableRowBorder;
}
/**

View file

@ -760,7 +760,7 @@ body {
line-height: 1.5;
padding: 7px 8px 8px;
text-align: left;
color: #787878; }
color: #a7a7a7; }
.kuiTableHeaderCell:last-child {
padding-right: 16px; }
@ -796,7 +796,7 @@ body {
padding: 7px 8px 8px;
text-align: left;
color: #191E23;
border-top: 2px solid #E4E4E4; }
border-top: 1px solid #E4E4E4; }
.kuiTableRowCell:last-child {
padding-right: 16px; }