Skip to content

Commit

Permalink
update table alternating row colors
Browse files Browse the repository at this point in the history
  • Loading branch information
daveosborne committed Feb 7, 2019
1 parent 943f074 commit f63c3a2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions public/sass/_variables.dark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -133,13 +133,13 @@ $empty-list-cta-bg: $gray-8;
// Tables
// -------------------------
$table-bg: transparent; // overall background-color
$table-bg-accent: $gray-5; // for striping
$table-bg-hover: $gray-5; // for hover
$table-bg-accent: darken($gray-7, 10%); // for striping
$table-bg-hover: $gray-7; // for hover
$table-bg-active: $table-bg-hover !default;
$table-border: $gray-3; // table and cell border

$table-bg-odd: $gray-6;
$table-bg-hover: $gray-5;
$table-bg-odd: darken($gray-7, 10%);
$table-bg-hover: $gray-7;

// Scrollbars
$scrollbarBackground: $gray-5;
Expand Down
8 changes: 4 additions & 4 deletions public/sass/_variables.light.scss
Original file line number Diff line number Diff line change
Expand Up @@ -133,13 +133,13 @@ $empty-list-cta-bg: $gray-8;
// Tables
// -------------------------
$table-bg: transparent; // overall background-color
$table-bg-accent: $gray-5; // for striping
$table-bg-hover: $gray-5; // for hover
$table-bg-accent: darken($gray-7, 10%); // for striping
$table-bg-hover: $gray-7; // for hover
$table-bg-active: $table-bg-hover !default;
$table-border: $gray-3; // table and cell border

$table-bg-odd: $gray-6;
$table-bg-hover: $gray-5;
$table-bg-odd: darken($gray-7, 10%);
$table-bg-hover: $gray-7;

// Scrollbars
$scrollbarBackground: $gray-5;
Expand Down

0 comments on commit f63c3a2

Please sign in to comment.