From 3c823c5470c82010355fa9fa830037d97aa72b46 Mon Sep 17 00:00:00 2001 From: Yuval Tassa Date: Mon, 17 Aug 2026 06:32:48 -0700 Subject: [PATCH] Fix inconsistent bullet indentation in changelog admonitions. PiperOrigin-RevId: 965935062 Change-Id: I9f99ce00571d0062496383e345212beea914d52b --- doc/css/theme_overrides.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/doc/css/theme_overrides.css b/doc/css/theme_overrides.css index 6804c042..9a5a18c5 100644 --- a/doc/css/theme_overrides.css +++ b/doc/css/theme_overrides.css @@ -393,8 +393,11 @@ dt .at { padding-bottom: 0.25rem; } -/* Align admonition bullets with section-level bullets */ -.admonition ul { +/* Align admonition bullets with section-level bullets. The margin is set here + rather than inherited from ul.simple, which docutils drops from any list + holding a multi-paragraph item. */ +.admonition > ul { + margin-left: 24px; padding-left: 0.1em; margin-top: 0; margin-bottom: 0;