import styled from 'styled-components'; const StyledWrapper = styled.div` &.read-only { div.CodeMirror .CodeMirror-cursor { display: none !important; } } div.CodeMirror { background: ${(props) => props.theme.codemirror.bg}; border: solid 1px ${(props) => props.theme.codemirror.border}; font-family: ${(props) => (props.font ? props.font : 'default')}; font-size: ${(props) => (props.fontSize ? `${props.fontSize}px` : 'inherit')}; line-break: anywhere; flex: 1 1 0; display: flex; flex-direction: column-reverse; } /* Removes the glow outline around the folded json */ .CodeMirror-foldmarker { text-shadow: none; color: ${(props) => props.theme.textLink}; background: none; padding: 0; margin: 0; } .CodeMirror-overlayscroll-horizontal div, .CodeMirror-overlayscroll-vertical div { background: #d2d7db; } .CodeMirror-dialog { overflow: visible; position: relative; top: unset; left: unset; input { background: transparent; border: 1px solid #d3d6db; outline: none; border-radius: 0px; } } #search-results-count { display: inline-block; position: absolute; top: calc(100% + 1px); right: 0; border-width: 0 0 1px 1px; border-style: solid; border-color: ${(props) => props.theme.codemirror.border}; padding: 0.1em 0.8em; background-color: ${(props) => props.theme.codemirror.bg}; color: rgb(102, 102, 102); white-space: nowrap; } textarea.cm-editor { position: relative; } // Todo: dark mode temporary fix // Clean this .CodeMirror.cm-s-monokai { .CodeMirror-overlayscroll-horizontal div, .CodeMirror-overlayscroll-vertical div { background: #444444; } } .cm-s-monokai span.cm-property, .cm-s-monokai span.cm-attribute { color: #9cdcfe !important; } .cm-s-monokai span.cm-string { color: #ce9178 !important; } .cm-s-monokai span.cm-number { color: #b5cea8 !important; } .cm-s-monokai span.cm-atom { color: #569cd6 !important; } .cm-variable-valid { color: green; } .cm-variable-invalid { color: red; } .CodeMirror-search-hint { display: inline; } .cm-s-default span.cm-property { color: #1f61a0 !important; } .cm-s-default span.cm-variable { color: #397d13 !important; } //matching bracket fix .CodeMirror-matchingbracket { background: #5cc0b48c !important; text-decoration:unset; } .cm-search-line-highlight { background: ${(props) => props.theme.codemirror.searchLineHighlightCurrent}; } .cm-search-match { background: rgba(255, 193, 7, 0.25); } .cm-search-current { background: rgba(255, 193, 7, 0.4); } `; export default StyledWrapper;