2017-11-28 17:03:50 +00:00
|
|
|
.CodeMirror-hints {
|
|
|
|
z-index: 999;
|
|
|
|
}
|
2017-09-24 08:54:21 +00:00
|
|
|
.CodeMirror-hint:hover {
|
|
|
|
color: white;
|
|
|
|
background: #08f;
|
|
|
|
}
|
|
|
|
.CodeMirror {
|
|
|
|
border: solid #CCC 1px;
|
|
|
|
}
|
|
|
|
.CodeMirror-lint-mark-warning {
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
.CodeMirror-dialog {
|
2017-12-17 18:59:07 +00:00
|
|
|
-webkit-animation: highlight 3s cubic-bezier(.18, .02, 0, .94);
|
2017-09-24 08:54:21 +00:00
|
|
|
}
|
|
|
|
.CodeMirror-focused {
|
|
|
|
outline: -webkit-focus-ring-color auto 5px;
|
|
|
|
outline-offset: -2px;
|
|
|
|
}
|
2017-12-02 16:38:03 +00:00
|
|
|
@supports (-moz-appearance:none) {
|
2017-11-15 08:49:02 +00:00
|
|
|
/* restrict to FF */
|
|
|
|
.CodeMirror-focused {
|
|
|
|
outline: #7dadd9 auto 1px;
|
|
|
|
outline-offset: -1px;
|
|
|
|
}
|
|
|
|
}
|
2017-09-24 08:54:21 +00:00
|
|
|
.CodeMirror-search-field {
|
|
|
|
width: 10em;
|
|
|
|
}
|
|
|
|
.CodeMirror-jump-field {
|
|
|
|
width: 5em;
|
|
|
|
}
|
|
|
|
.CodeMirror-search-hint {
|
|
|
|
color: #888;
|
|
|
|
}
|
2017-11-23 13:28:55 +00:00
|
|
|
.cm-uso-variable {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2017-12-01 15:01:19 +00:00
|
|
|
.cm-searching.cm-matchhighlight {
|
|
|
|
/* tokens found by manual search should not animate by cm-matchhighlight */
|
|
|
|
animation-name: search-and-match-highlighter !important;
|
|
|
|
}
|
|
|
|
@keyframes search-and-match-highlighter {
|
|
|
|
from { background-color: rgba(255, 255, 0, .4); } /* search color */
|
|
|
|
to { background-color: rgba(100, 255, 100, .4); } /* sarch + highlight */
|
|
|
|
}
|
2017-12-02 15:53:37 +00:00
|
|
|
|
|
|
|
.CodeMirror-activeline .applies-to:before {
|
|
|
|
background-color: hsla(214, 100%, 90%, 0.15);
|
|
|
|
content: "";
|
|
|
|
top: 1em;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 1em;
|
|
|
|
position: absolute;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2017-12-07 01:00:26 +00:00
|
|
|
|
|
|
|
.CodeMirror-activeline .applies-to ul {
|
|
|
|
z-index: 2;
|
|
|
|
}
|
2018-05-05 17:46:37 +00:00
|
|
|
|
|
|
|
.CodeMirror-foldgutter-open::after,
|
|
|
|
.CodeMirror-foldgutter-folded::after {
|
|
|
|
top: 5px;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
border-style: solid;
|
|
|
|
opacity: .5;
|
|
|
|
left: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror-foldgutter-open::after {
|
|
|
|
border-width: 5px 3px 0 3px;
|
|
|
|
border-color: currentColor transparent transparent transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror-foldgutter-folded::after {
|
|
|
|
margin-top: -2px;
|
|
|
|
margin-left: 1px;
|
|
|
|
border-width: 4px 0 4px 5px;
|
|
|
|
border-color: transparent transparent transparent currentColor;
|
|
|
|
}
|