This is an automated email from the ASF dual-hosted git repository.
paulk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy-geb.git
The following commit(s) were added to refs/heads/master by this push:
new 3bf0673c fix style url
3bf0673c is described below
commit 3bf0673cac44fc2aa8f6d8f03f645d0b4ecd8f47
Author: Paul King <[email protected]>
AuthorDate: Mon Feb 24 11:50:58 2025 +1000
fix style url
---
doc/site/site.gradle | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/site/site.gradle b/doc/site/site.gradle
index d9022171..e24e9016 100644
--- a/doc/site/site.gradle
+++ b/doc/site/site.gradle
@@ -122,7 +122,7 @@ tasks.register("replaceAnalyticsWithMatomo") {
} else if (file.name == 'style.css') {
String html = file.text
html = html.replace('@import
url(http://fonts.googleapis.com/css?family=Roboto+Slab|Roboto|Source+Code+Pro:500,700);',
- '@import url(ManualFonts.css);')
+ '@import url(../../../css/ManualFonts.css);')
file.text = html
}
}