This is an automated email from the ASF dual-hosted git repository. rclabo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/lucenenet.git
commit 8935c26b0a756fda82ebede47f4b5ba1cbae5b9f Author: Ron Clabo <[email protected]> AuthorDate: Mon Jan 10 15:22:27 2022 -0500 Added gray boxes around images on "Setup Java Debugging" page. --- websites/site/contributing/how-to-setup-java-lucene-debugging.md | 7 ++++++- websites/site/lucenetemplate/styles/main.css | 6 +++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/websites/site/contributing/how-to-setup-java-lucene-debugging.md b/websites/site/contributing/how-to-setup-java-lucene-debugging.md index 19b8bba..19c2c5e 100644 --- a/websites/site/contributing/how-to-setup-java-lucene-debugging.md +++ b/websites/site/contributing/how-to-setup-java-lucene-debugging.md @@ -1,4 +1,8 @@ -# How to Setup Java Lucene 4.8 Debugging +--- +uid: setupJavaDebugging +--- + +# How to Setup Java Lucene 4.8 Debugging --- @@ -528,3 +532,4 @@ When you clone the repository locally, it only shows the default branch that you ### Disable Java Update Checker One more thing you might want to do is to disable the Java update check so it doesn't accidentally get rid of Java 8. See: https://thegeekpage.com/turn-off-java-update-notification-in-windows-10/ + diff --git a/websites/site/lucenetemplate/styles/main.css b/websites/site/lucenetemplate/styles/main.css index af4967f..7da4cc8 100644 --- a/websites/site/lucenetemplate/styles/main.css +++ b/websites/site/lucenetemplate/styles/main.css @@ -80,10 +80,14 @@ header ul.navbar-nav { } } -.article img { +article img { margin:15px 0 30px 0; } +article[data-uid="setupJavaDebugging"] img { + border: solid 1px #dedcd3 +} + .sidefilter { top: 120px; }
