60fc6f2456
* make usercss editor full-height again * make sectioned editor open quickly again * remove leftovers * autofocus when add/clone button is clicked * don't fit to content on clicking the add button * scroll the window to show a manually added section entirely * autofocus on a manually added applies-to * disable Save button while loading * use standard CSS for a focused CodeMirror outline * trigger refresh sooner by one viewport in advance * declare refreshOnView as a standard function * run fixedHeader asynchronously to prevent self-triggering * account for header in compact mode when fitting to content * code cosmetics
77 lines
1.5 KiB
CSS
77 lines
1.5 KiB
CSS
.CodeMirror-hints {
|
|
z-index: 999;
|
|
}
|
|
.CodeMirror-hint:hover {
|
|
color: white;
|
|
background: #08f;
|
|
}
|
|
.CodeMirror {
|
|
border: solid #CCC 1px;
|
|
}
|
|
.CodeMirror-lint-mark-warning {
|
|
background: none;
|
|
}
|
|
.CodeMirror-dialog {
|
|
-webkit-animation: highlight 3s cubic-bezier(.18, .02, 0, .94);
|
|
}
|
|
.CodeMirror-focused {
|
|
outline: #7dadd9 auto 1px; /* not using the ring-color hack as it became ugly in new Chrome */
|
|
}
|
|
.CodeMirror-bookmark {
|
|
background: linear-gradient(to right, currentColor, transparent);
|
|
position: absolute;
|
|
width: 2em;
|
|
opacity: .5;
|
|
}
|
|
.CodeMirror-search-field {
|
|
width: 10em;
|
|
}
|
|
.CodeMirror-jump-field {
|
|
width: 5em;
|
|
}
|
|
.CodeMirror-search-hint {
|
|
color: #888;
|
|
}
|
|
.cm-uso-variable {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.CodeMirror-activeline .applies-to ul {
|
|
z-index: 2;
|
|
}
|
|
|
|
.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;
|
|
}
|