You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

177 lines
2.9 KiB

6 months ago
.CodeMirror {
font-family: monospace;
line-height: 1em;
}
.CodeMirror-scroll {
/* This is needed to prevent an IE[67] bug where the scrolled content
is visible outside of the scrolling box. */
position: relative;
height: 300px;
overflow: auto;
}
.CodeMirror-gutter {
position: absolute;
top: 0;
left: 0;
z-index: 10;
min-width: 2em;
height: 100%;
background-color: #f7f7f7;
border-right: 1px solid #eee;
}
.CodeMirror-gutter-text {
padding: 0.4em 0.2em 0.4em 0.4em;
color: #aaa;
white-space: pre !important;
text-align: right;
}
.CodeMirror-lines {
padding: 0.4em;
}
.CodeMirror pre {
margin: 0;
margin: 0;
padding: 0;
padding: 0;
font-size: inherit;
font-family: inherit;
white-space: pre;
word-wrap: normal;
background: transparent;
border-width: 0;
-moz-border-radius: 0;
-webkit-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
}
.CodeMirror-wrap pre {
white-space: pre-wrap;
word-wrap: break-word;
}
.CodeMirror-wrap .CodeMirror-scroll {
overflow-x: hidden;
}
.CodeMirror textarea {
outline: none !important;
}
.CodeMirror pre.CodeMirror-cursor {
position: absolute;
z-index: 10;
border-left: 1px solid black;
visibility: hidden;
}
.CodeMirror-focused pre.CodeMirror-cursor {
visibility: visible;
}
span.CodeMirror-selected {
background: #d9d9d9;
}
.CodeMirror-focused span.CodeMirror-selected {
background: #d2dcf8;
}
.CodeMirror-searching {
background: #ffa;
}
/* Default theme */
.cm-s-default span.cm-keyword {
color: #708;
}
.cm-s-default span.cm-atom {
color: #219;
}
.cm-s-default span.cm-number {
color: #164;
}
.cm-s-default span.cm-def {
color: #00f;
}
.cm-s-default span.cm-variable {
color: black;
}
.cm-s-default span.cm-variable-2 {
color: #05a;
}
.cm-s-default span.cm-variable-3 {
color: #085;
}
.cm-s-default span.cm-property {
color: black;
}
.cm-s-default span.cm-operator {
color: black;
}
.cm-s-default span.cm-comment {
color: #a50;
}
.cm-s-default span.cm-string {
color: #a11;
}
.cm-s-default span.cm-string-2 {
color: #f50;
}
.cm-s-default span.cm-meta {
color: #555;
}
.cm-s-default span.cm-error {
color: #f00;
}
.cm-s-default span.cm-qualifier {
color: #555;
}
.cm-s-default span.cm-builtin {
color: #30a;
}
.cm-s-default span.cm-bracket {
color: #cc7;
}
.cm-s-default span.cm-tag {
color: #170;
}
.cm-s-default span.cm-attribute {
color: #00c;
}
.cm-s-default span.cm-header {
color: #a0a;
}
.cm-s-default span.cm-quote {
color: #090;
}
.cm-s-default span.cm-hr {
color: #999;
}
.cm-s-default span.cm-link {
color: #00c;
}
span.cm-header,
span.cm-strong {
font-weight: bold;
}
span.cm-em {
font-style: italic;
}
span.cm-emstrong {
font-weight: bold;
font-style: italic;
}
span.cm-link {
text-decoration: underline;
}
div.CodeMirror span.CodeMirror-matchingbracket {
color: #0f0;
}
div.CodeMirror span.CodeMirror-nonmatchingbracket {
color: #f22;
}