From 1138e3f83be0f638a41f745ee720c7df3c9fc190 Mon Sep 17 00:00:00 2001 From: Xuan Wang Date: Mon, 31 Jul 2023 09:58:33 -0700 Subject: [PATCH] [Documentation] Fix Python documentation CSS (#33908) Fix python documentation website sidebar. ### Before: Screenshot 2023-07-27 at 4 49 25 PM ### After: ![Screenshot 2023-07-28 at 1 04 01 PM](https://github.com/grpc/grpc/assets/24593237/c7cc16b6-926f-4c8b-bc54-6cedfebb62b4) --- doc/python/sphinx/_static/custom.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/python/sphinx/_static/custom.css b/doc/python/sphinx/_static/custom.css index d961c389b9e..34a31a9926f 100644 --- a/doc/python/sphinx/_static/custom.css +++ b/doc/python/sphinx/_static/custom.css @@ -1,3 +1,8 @@ dl.field-list > dt { word-break: keep-all !important; } +.sphinxsidebar { + overflow-y: scroll; + top: 0; + bottom: 0; +}