mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
Make Table rows have 1px borders. Lighten Table header color for increased contrast with row color. (#9864) (#9918)
This commit is contained in:
parent
47d3f82a66
commit
4979bc0914
3 changed files with 5 additions and 4 deletions
|
@ -40,6 +40,7 @@ $errorBorderColor: $errorColor;
|
|||
|
||||
// Borders
|
||||
$tableBorder: 2px solid $panelColor;
|
||||
$tableRowBorder: 1px solid $panelColor;
|
||||
|
||||
// Timing
|
||||
$formTransitionTiming: 0.1s linear;
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
4
ui_framework/dist/ui_framework.css
vendored
4
ui_framework/dist/ui_framework.css
vendored
|
@ -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; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue