/
githubmirror
/
gutenberg
Обзор
Документация
Войти
/
githubmirror
/
gutenberg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
trunk
packages/block-library/src/code/style.scss
18 строк
508 B
Gautam Mehta
Fix overflow of Highlighted white-space in Code Block (#77085)
08 апр 2026, 17:01
Не верифицирован
08 апр 2026, 17:01
e28168c
Код
Авторство
О чём код?
.wp-block-code { // This block has customizable padding, border-box makes that more predictable. box-sizing: border-box; // Provide a minimum of overflow handling and ensure the code markup inherits // the font-family set on pre. code { display: block; font-family: inherit; overflow-wrap: break-word; white-space: break-spaces; // Set direction and avoid inheriting alignment from a parent element. /*!rtl:begin:ignore*/ direction: ltr; text-align: initial; /*!rtl:end:ignore*/ } }