Striped table rows updated

This commit is contained in:
Yohn 2025-01-17 03:50:25 -05:00
parent 0875d75701
commit 565884540b
6 changed files with 315 additions and 53 deletions

View file

@ -5,7 +5,7 @@
// Settings
//
// Theme color
// Theme colors
$yo-themes: (
"amber",
"azure",
@ -13,7 +13,6 @@ $yo-themes: (
"cyan",
"fuchsia",
"green",
"grey",
"indigo",
"jade",
"lime",
@ -22,11 +21,8 @@ $yo-themes: (
"pumpkin",
"purple",
"red",
"sand",
"slate",
"violet",
"yellow",
"zinc"
"yellow"
);
$random: list.nth($yo-themes, math.random(list.length($yo-themes)));
// picks a random theme to use as default
@ -64,6 +60,11 @@ $enable-transitions: true !default;
// Enable overriding with !important
$enable-important: true !default;
// How many hidden rows do you expect to have within a table?
// <tr hidden> is what is accounted for striped rows.
// if none, put 0 instead of 3.
$hidden-table-levels: 4 !default;
// Optional parent selector
// If defined, all HTML tags are wrapped with this selector
// :root is not wrapped