summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDan Allen <dan.j.allen@gmail.com>2021-09-10 02:43:03 -0600
committerDan Allen <dan.j.allen@gmail.com>2021-09-10 02:43:42 -0600
commitedf69103549fe92520751cec6c5a7f8c6cf2f7c5 (patch)
tree49f4b65f01cf5d17dc8999dd57b94597cc6357a2 /src
parent7cdf41a3221aa886c7b4cbf9e4c6ed87ad72319e (diff)
backport fix for #4165 honor stripes=none on nested table
Diffstat (limited to 'src')
-rw-r--r--src/stylesheets/asciidoctor.css8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/stylesheets/asciidoctor.css b/src/stylesheets/asciidoctor.css
index 247a9c28..978f7b25 100644
--- a/src/stylesheets/asciidoctor.css
+++ b/src/stylesheets/asciidoctor.css
@@ -1622,10 +1622,10 @@ table.frame-ends > * > tr > :last-child {
border-right-width: 0;
}
-table.stripes-all tr,
-table.stripes-odd tr:nth-of-type(odd),
-table.stripes-even tr:nth-of-type(even),
-table.stripes-hover tr:hover {
+table.stripes-all > * > tr,
+table.stripes-odd > * > tr:nth-of-type(odd),
+table.stripes-even > * > tr:nth-of-type(even),
+table.stripes-hover > * > tr:hover {
background: #f8f8f7;
}