mirror of
https://github.com/usebruno/bruno.git
synced 2025-07-15 19:55:30 +02:00
* Refactor CodeMirror styling to remove glow outline around folded JSON * Improved font color for better legibility. * chore: used colot from theme for codemirror fold count --------- Co-authored-by: Anoop M D <anoop.md1421@gmail.com>
81 lines
1.8 KiB
JavaScript
81 lines
1.8 KiB
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
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;
|
|
}
|
|
|
|
/* Removes the glow outline around the folded json */
|
|
.CodeMirror-foldmarker {
|
|
text-shadow: none;
|
|
color: ${(props) => props.theme.textLink};
|
|
}
|
|
|
|
.CodeMirror-overlayscroll-horizontal div,
|
|
.CodeMirror-overlayscroll-vertical div {
|
|
background: #d2d7db;
|
|
}
|
|
|
|
.CodeMirror-dialog {
|
|
overflow: visible;
|
|
}
|
|
|
|
#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;
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper;
|