43052cb675
detect infinite loop detect infinite loop
91 lines
1.8 KiB
SCSS
91 lines
1.8 KiB
SCSS
.CodeMirror {
|
|
font-family: Inconsolata, monospace;
|
|
height: 100%;
|
|
border: 1px solid $ide-border-color;
|
|
}
|
|
|
|
.CodeMirror-linenumbers {
|
|
padding-right: #{10 / $base-font-size}rem;
|
|
}
|
|
|
|
.CodeMirror-linenumber {
|
|
width: #{35 / $base-font-size}rem;
|
|
}
|
|
|
|
.CodeMirror-lines {
|
|
padding-top: #{25 / $base-font-size}rem;
|
|
}
|
|
|
|
.CodeMirror-line {
|
|
padding-left: #{5 / $base-font-size}rem;
|
|
}
|
|
|
|
.CodeMirror-gutter-wrapper {
|
|
right: 100%;
|
|
top: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.CodeMirror-lint-marker-warning, .CodeMirror-lint-marker-error, .CodeMirror-lint-marker-multiple {
|
|
background-image: none;
|
|
width: 70px;
|
|
position: absolute;
|
|
height: 100%;
|
|
}
|
|
|
|
.CodeMirror-lint-message-error, .CodeMirror-lint-message-warning {
|
|
background-image: none;
|
|
padding-left: inherit;
|
|
}
|
|
|
|
.CodeMirror-lint-marker-warning {
|
|
background-color: rgb(255, 190, 5);
|
|
}
|
|
|
|
.CodeMirror-lint-marker-error {
|
|
background-color: rgb(255, 95, 82);
|
|
}
|
|
|
|
.CodeMirror-gutter-elt:not(.CodeMirror-linenumber) {
|
|
opacity: 0.3;
|
|
width: 70px !important;
|
|
height: 100%;
|
|
// background-color: rgb(255, 95, 82);
|
|
}
|
|
|
|
.CodeMirror-lint-tooltip {
|
|
background-color: $light-modal-background-color;
|
|
border: 1px solid $light-modal-border-color;
|
|
border-radius: 2px;
|
|
box-shadow: 0 12px 12px $light-shadow-color;
|
|
font-family: Montserrat, sans-serif;
|
|
}
|
|
|
|
.editor__options-button {
|
|
@extend %icon;
|
|
position: absolute;
|
|
top: #{5 / $base-font-size}rem;
|
|
right: #{5 / $base-font-size}rem;
|
|
z-index: 1;
|
|
}
|
|
|
|
.editor__options {
|
|
display: none;
|
|
@extend %modal;
|
|
position: absolute;
|
|
top: #{20 / $base-font-size}rem;
|
|
right: #{5 / $base-font-size}rem;
|
|
padding: #{10 / $base-font-size}rem;
|
|
|
|
.editor--options & {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.lint-error {
|
|
font-family: Inconsolata, monospace;
|
|
font-size: 100%;
|
|
background: #FFBEC1;
|
|
color: red;
|
|
padding: 2px 5px 3px;
|
|
}
|