Update theme_overrides_mjwarp.css to not render return type information.

PiperOrigin-RevId: 826821680
Change-Id: I2d8a08755631b85f910051ea395ae9081d4e3759
This commit is contained in:
Taylor Howell
2025-11-01 03:58:35 -07:00
committed by Copybara-Service
parent fbb95d5e8c
commit f604588a36
+5 -3
View File
@@ -131,10 +131,12 @@ dl.py.method .field-list > dd > dl > dd {
content: "" !important;
}
/* CONFLICT FIX: Hide unwanted labels ("TYPE:", "Return type:"). */
/* CONFLICT FIX: Hide unwanted labels ("TYPE:", "Return type:") and return value. */
dl.py.attribute > dd > dl.field-list > dt,
dl.py.function .field-list > dt:last-of-type,
dl.py.method .field-list > dt:last-of-type {
dl.py.function .field-list > dt[class*="return-type"],
dl.py.method .field-list > dt[class*="return-type"],
dl.py.function .field-list > dt[class*="return-type"] + dd,
dl.py.method .field-list > dt[class*="return-type"] + dd {
display: none !important;
}