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

asf-gitbox-commits pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tapestry-5-site-builder.git

commit 39bb11353d26a18bb4d12bfdb116891fc9d8c326
Author: Volker Lamp <[email protected]>
AuthorDate: Mon Aug 12 22:36:39 2024 +0200

    Make links appear in Tapestry green.
---
 supplemental-ui/css/tapestry.css         | 18 ++++++++++++++++++
 supplemental-ui/partials/head-styles.hbs |  2 ++
 2 files changed, 20 insertions(+)

diff --git a/supplemental-ui/css/tapestry.css b/supplemental-ui/css/tapestry.css
new file mode 100644
index 0000000..137a249
--- /dev/null
+++ b/supplemental-ui/css/tapestry.css
@@ -0,0 +1,18 @@
+
+.doc a {
+  color: #559d2f;
+}
+
+.doc a:hover {
+  color: #559d2f;
+  text-underline-offset: 5px;
+}
+
+.toc .toc-menu a {
+  color: #559d2f;
+}
+
+.toc .toc-menu a:hover {
+  color: #2a4e17;
+}
+
diff --git a/supplemental-ui/partials/head-styles.hbs 
b/supplemental-ui/partials/head-styles.hbs
new file mode 100644
index 0000000..6fb8d9f
--- /dev/null
+++ b/supplemental-ui/partials/head-styles.hbs
@@ -0,0 +1,2 @@
+    <link rel="stylesheet" href="{{{uiRootPath}}}/css/site.css">
+    <link rel="stylesheet" href="{{{uiRootPath}}}/css/tapestry.css">

Reply via email to