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;
|
2020-10-13 18:14:54 +00:00
|
|
|
transition: box-shadow .1s;
|
|
|
|
}
|
|
|
|
#stylus#stylus .CodeMirror {
|
|
|
|
/* Using a specificity hack to override userstyles */
|
|
|
|
/* Not using the ring-color hack as it became ugly in new Chrome */
|
|
|
|
outline: none !important;
|
2017-09-24 08:54:21 +00:00
|
|
|
}
|
|
|
|
.CodeMirror-lint-mark-warning {
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
.CodeMirror-dialog {
|
2020-10-14 16:48:59 +00:00
|
|
|
animation: highlight 3s cubic-bezier(.18, .02, 0, .94);
|
2017-09-24 08:54:21 +00:00
|
|
|
}
|
2020-06-01 04:54:49 +00:00
|
|
|
.CodeMirror-bookmark {
|
|
|
|
background: linear-gradient(to right, currentColor, transparent);
|
|
|
|
position: absolute;
|
|
|
|
width: 2em;
|
|
|
|
opacity: .5;
|
|
|
|
}
|
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-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;
|
|
|
|
}
|