summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Allen <dan.j.allen@gmail.com>2020-10-28 15:29:47 -0600
committerGitHub <noreply@github.com>2020-10-28 15:29:47 -0600
commit45bbdd4ab7ec2b040e641b2bcfc4306922f00a0b (patch)
treede22dbd0dc5b67a151004e4da81c7dbebd2e981a
parent9a4d739620be2acbd8af75a5559826981d0e3795 (diff)
resolves #2563 don't remove right border on last table cell in row (PR #3794)
- this was done to avoid a double border, but that's since been solved by #3793
-rw-r--r--CHANGELOG.adoc1
-rw-r--r--data/stylesheets/asciidoctor-default.css1
2 files changed, 1 insertions, 1 deletions
diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc
index 9a6a502b..f2318d77 100644
--- a/CHANGELOG.adoc
+++ b/CHANGELOG.adoc
@@ -45,6 +45,7 @@ Bug Fixes::
* Fix resolved value of :to_dir when both :to_file and :to_dir options are set to absolute paths (#3778)
* Restore label in front of each bibliography entry in DocBook output that was dropped by fix for #3085 (#3782)
* Don't apply border-collapse: separate to HTML for table blocks; fixes double border at boundary of colspan/rowspan (#3793) (*@ahus1*)
+ * Don't remove right border on last table cell in row (#2563)
Compliance::
diff --git a/data/stylesheets/asciidoctor-default.css b/data/stylesheets/asciidoctor-default.css
index f8ca0cb6..67f6ab12 100644
--- a/data/stylesheets/asciidoctor-default.css
+++ b/data/stylesheets/asciidoctor-default.css
@@ -261,7 +261,6 @@ table.grid-all>tfoot>tr>.tableblock{border-width:1px 1px 0 0}
table.grid-cols>*>tr>.tableblock{border-width:0 1px 0 0}
table.grid-rows>thead>tr>.tableblock,table.grid-rows>tbody>tr>.tableblock{border-width:0 0 1px}
table.grid-rows>tfoot>tr>.tableblock{border-width:1px 0 0}
-table.grid-all>*>tr>.tableblock:last-child,table.grid-cols>*>tr>.tableblock:last-child{border-right-width:0}
table.grid-all>tbody>tr:last-child>.tableblock,table.grid-all>thead:last-child>tr>.tableblock,table.grid-rows>tbody>tr:last-child>.tableblock,table.grid-rows>thead:last-child>tr>.tableblock{border-bottom-width:0}
table.frame-all{border-width:1px}
table.frame-sides{border-width:0 1px}