/
githubmirror
/
zulip
Обзор
Документация
Войти
/
githubmirror
/
zulip
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/_static/theme_overrides.css
18 строк
494 B
Karl Stolley
dev_docs: Better present images in tables.
24 апр 2025, 21:23
24 апр 2025, 21:23
bd4d172
Код
Авторство
О чём код?
/* override table width restrictions */ .wy-table-responsive table td, .wy-table-responsive table th { /* !important prevents the common CSS stylesheets from overriding this as on RTD they are loaded after this stylesheet */ white-space: normal !important; } .wy-table-responsive { overflow: visible !important; } /* Present tables with columns of equal size when images are present. */ .rst-content table.docutils:has(img) { table-layout: fixed; width: 100%; }