Skip to content

Commit

Permalink
fix frozen column styling in materialize theme
Browse files Browse the repository at this point in the history
  • Loading branch information
olifolkerd committed Jul 23, 2023
1 parent c609b7e commit a8caf1a
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
30 changes: 15 additions & 15 deletions dist/css/tabulator_materialize.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/css/tabulator_materialize.css.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/scss/themes/materialize/tabulator_materialize.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ $sortArrowActive: #666 !default;
$sortArrowInactive: #bbb !default;

//row theming
$rowBackgroundColor:transparent !default; //table row background color
$rowBackgroundColor:#fff !default; //table row background color
$rowAltBackgroundColor: $table-striped-color !default; //table row background color
$rowBorderColor:$table-border-color !default; //table border color
$rowHoverBackground:$table-striped-color !default; //row background color on hover
Expand Down Expand Up @@ -159,7 +159,7 @@ $footerActiveColor:$primary-color !default; //footer bottom active text color
border-bottom:1px solid $rowBorderColor;

&.tabulator-row-even{
background-color: transparent;
background-color: $rowBackgroundColor;
}

.tabulator-cell{
Expand Down
2 changes: 1 addition & 1 deletion src/scss/themes/materialize/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ $colors: (
}

$table-border-color: rgba(0,0,0,.12) !default;
$table-striped-color: rgba(242, 242, 242, 0.5) !default;
$table-striped-color: #f8f8f8 !default;


$primary-color: color("materialize-red", "lighten-2") !default;

0 comments on commit a8caf1a

Please sign in to comment.