-
Notifications
You must be signed in to change notification settings - Fork 29
Closed
Labels
area:coreA bug/feature for the core code-input.js/code-input.css filesA bug/feature for the core code-input.js/code-input.css filesarea:externalA bug/feature due to integration with another library / JavaScript framework, but not the browser.A bug/feature due to integration with another library / JavaScript framework, but not the browser.bugSomething isn't workingSomething isn't workingpriority:medium
Description
This is a fix for when using CSS frameworks like BulmaCSS. For BulmaCSS all <pre>
tags are set with overflow-x: auto;
which causes horizontal/vertically scrolled code to be cut off with a white background.
Forcing pre to overflow visible will override other CSS frameworks hopefully saving future headaches.
code-input pre {
z-index: 0;
overflow: visible!important;
}
Thank you for making this by the way!

Metadata
Metadata
Assignees
Labels
area:coreA bug/feature for the core code-input.js/code-input.css filesA bug/feature for the core code-input.js/code-input.css filesarea:externalA bug/feature due to integration with another library / JavaScript framework, but not the browser.A bug/feature due to integration with another library / JavaScript framework, but not the browser.bugSomething isn't workingSomething isn't workingpriority:medium