This is an automated email from the ASF dual-hosted git repository.

djencks pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-website.git

commit 7d5d17e2317febfd628307ab2abd398bc5a766f2
Author: David Jencks <[email protected]>
AuthorDate: Fri Oct 8 23:00:19 2021 -0700

    (UI) Allow anchor class in table cells, so option names can link to 
themselves.
---
 antora-ui-camel/src/css/doc.css | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/antora-ui-camel/src/css/doc.css b/antora-ui-camel/src/css/doc.css
index b7946f4..e571bd8 100644
--- a/antora-ui-camel/src/css/doc.css
+++ b/antora-ui-camel/src/css/doc.css
@@ -78,7 +78,8 @@
 .doc h3 .anchor,
 .doc h4 .anchor,
 .doc h5 .anchor,
-.doc h6 .anchor {
+.doc h6 .anchor,
+.doc td .anchor {
   position: absolute;
   text-decoration: none;
   width: 1.75ex;
@@ -95,7 +96,8 @@
 .doc h3 .anchor::before,
 .doc h4 .anchor::before,
 .doc h5 .anchor::before,
-.doc h6 .anchor::before {
+.doc h6 .anchor::before,
+.doc td .anchor::before {
   content: '\00a7';
 }
 
@@ -104,7 +106,8 @@
 .doc h3:hover .anchor,
 .doc h4:hover .anchor,
 .doc h5:hover .anchor,
-.doc h6:hover .anchor {
+.doc h6:hover .anchor,
+.doc td:hover .anchor {
   visibility: visible;
 }
 

Reply via email to