2016-05-11 02:22:32 +00:00
|
|
|
.CodeMirror {
|
|
|
|
font-family: Inconsolata, monospace;
|
|
|
|
height: 100%;
|
2016-07-06 19:09:05 +00:00
|
|
|
border: 1px solid $ide-border-color;
|
2016-05-11 02:22:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
2016-05-12 22:29:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror-line {
|
2016-06-20 18:58:15 +00:00
|
|
|
padding-left: #{5 / $base-font-size}rem;
|
|
|
|
}
|
2016-07-12 23:11:07 +00:00
|
|
|
|
|
|
|
.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%;
|
|
|
|
}
|
|
|
|
|
2016-07-12 23:24:57 +00:00
|
|
|
.CodeMirror-lint-message-error, .CodeMirror-lint-message-warning {
|
|
|
|
background-image: none;
|
|
|
|
padding-left: inherit;
|
|
|
|
}
|
|
|
|
|
2016-07-12 23:11:07 +00:00
|
|
|
.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);
|
|
|
|
}
|
2016-07-12 23:24:57 +00:00
|
|
|
|
|
|
|
.CodeMirror-lint-tooltip {
|
2016-07-21 19:07:53 +00:00
|
|
|
background-color: $light-modal-background-color;
|
2016-07-13 20:13:28 +00:00
|
|
|
border: 1px solid $light-modal-border-color;
|
2016-07-21 19:07:53 +00:00
|
|
|
border-radius: 2px;
|
|
|
|
box-shadow: 0 12px 12px $light-shadow-color;
|
|
|
|
font-family: Montserrat, sans-serif;
|
2016-07-12 23:24:57 +00:00
|
|
|
}
|