Former-commit-id: 89fa8e42f2e153e6c9b676d668779718714ac333 [formerly 89fa8e42f2e153e6c9b676d668779718714ac333 [formerly 89fa8e42f2e153e6c9b676d668779718714ac333 [formerly 89fa8e42f2e153e6c9b676d668779718714ac333 [formerly 955c03c4e108cbd8aa597fc947a9454e749d904f [formerly 5d8b1d73e78953d5f8e7fe4302764addfc2af0e8]]]]] Former-commit-id: 002ba25940eac6b1db5af8aa03a75ab43c3eccf3 Former-commit-id: 43f3ff50fc9a0d54bf21479e87da9b72b7fe20c3 Former-commit-id: 32ed9ae714fec2fdd3ba08fb40187e81e837edcb [formerly f34f58804fd798c1e271250f06f245b83f5e7c3e] Former-commit-id: 17640172e9d4f7b75dc2410e2faa6a93a90e09ac Former-commit-id: 521e6c1695e24e315d368d27db8f8232fbe30999 Former-commit-id: 3dd3d0a15ab7c64f29148a25fc8c4a0a5eb77497 Former-commit-id: 0753ae560b4ec27771a5b052f73a0a94436f9e0f Former-commit-id: 9a6f11a43fab5a79df9ab9527453c0f66ad7888d
105 lines
2.8 KiB
CSS
105 lines
2.8 KiB
CSS
.CodeMirror {
|
|
line-height: 1em;
|
|
font-family: monospace;
|
|
}
|
|
|
|
.CodeMirror-scroll {
|
|
overflow: auto;
|
|
height: 300px;
|
|
/* This is needed to prevent an IE[67] bug where the scrolled content
|
|
is visible outside of the scrolling box. */
|
|
position: relative;
|
|
}
|
|
|
|
.CodeMirror-gutter {
|
|
position: absolute; left: 0; top: 0;
|
|
z-index: 10;
|
|
background-color: #f7f7f7;
|
|
border-right: 1px solid #eee;
|
|
min-width: 2em;
|
|
height: 100%;
|
|
}
|
|
.CodeMirror-gutter-text {
|
|
color: #aaa;
|
|
text-align: right;
|
|
padding: .4em .2em .4em .4em;
|
|
white-space: pre !important;
|
|
}
|
|
.CodeMirror-lines {
|
|
padding: .4em;
|
|
}
|
|
|
|
.CodeMirror pre {
|
|
-moz-border-radius: 0;
|
|
-webkit-border-radius: 0;
|
|
-o-border-radius: 0;
|
|
border-radius: 0;
|
|
border-width: 0; margin: 0; padding: 0; background: transparent;
|
|
font-family: inherit;
|
|
font-size: inherit;
|
|
padding: 0; margin: 0;
|
|
white-space: pre;
|
|
word-wrap: normal;
|
|
}
|
|
|
|
.CodeMirror-wrap pre {
|
|
word-wrap: break-word;
|
|
white-space: pre-wrap;
|
|
}
|
|
.CodeMirror-wrap .CodeMirror-scroll {
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.CodeMirror textarea {
|
|
outline: none !important;
|
|
}
|
|
|
|
.CodeMirror pre.CodeMirror-cursor {
|
|
z-index: 10;
|
|
position: absolute;
|
|
visibility: hidden;
|
|
border-left: 1px solid black;
|
|
}
|
|
.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-style: italic; font-weight: bold;}
|
|
span.cm-link {text-decoration: underline;}
|
|
|
|
div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}
|
|
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
|