11 lines
273 B
CSS
11 lines
273 B
CSS
|
/*
|
||
|
This fixes the vertical position of list markers when the first
|
||
|
element in the <li> is a <pre> block
|
||
|
|
||
|
Scrolling inside the <pre> block is still working as expected
|
||
|
*/
|
||
|
.rst-content pre.literal-block,
|
||
|
.rst-content div[class^='highlight'] pre {
|
||
|
overflow: visible;
|
||
|
}
|