From 96e638cb7b90f46ae8e015b0d61b5cd1f4485fb5 Mon Sep 17 00:00:00 2001 From: Infamous003 Date: Mon, 26 May 2025 00:23:07 +0530 Subject: [PATCH 1/2] Fix: Remove verticle scrollbar from zoomed out views of resource embed page --- doc/_static/css/custom.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/_static/css/custom.css b/doc/_static/css/custom.css index 3e33eb2830..8e61f66a11 100644 --- a/doc/_static/css/custom.css +++ b/doc/_static/css/custom.css @@ -293,6 +293,10 @@ table.resource-table td > .resource-thumb.file-icon { /* Not clear why this doesn't work for the .caption-text */ font-size: 1em !important; } +.resource-handle > .literal { + /* Removes the verticle scroll when you zoom out more than 100% */ + overflow-y: hidden; +} /* Imitate sphinx-copybutton style */ From e51791feaf9c1326fa4f5680ed2697b7993036f0 Mon Sep 17 00:00:00 2001 From: Infamous003 Date: Mon, 26 May 2025 13:22:44 +0530 Subject: [PATCH 2/2] Fix: Add missing backticks in codeblock --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 38ca1b7333..915b818a66 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -254,10 +254,10 @@ language. On Linux distros based on Debian and Ubuntu, you may need to install the following packages to build PDFs: -``console +```console sudo apt install latexmk sudo apt install texlive-latex-extra -`` +``` To reduce the large (300 MB+) install size of the second package, you may be able to use the `--no-install-recommends` flag.