2016-05-11 02:22:32 +00:00
|
|
|
.CodeMirror {
|
2016-09-14 17:03:51 +00:00
|
|
|
font-family: Inconsolata, monospace;
|
|
|
|
height: 100%;
|
2016-05-11 02:22:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror-linenumbers {
|
|
|
|
padding-right: #{10 / $base-font-size}rem;
|
2016-12-19 22:07:04 +00:00
|
|
|
|
2016-05-11 02:22:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror-linenumber {
|
2016-12-19 22:07:04 +00:00
|
|
|
width: #{32 / $base-font-size}rem;
|
2017-10-11 21:31:23 +00:00
|
|
|
left: #{-3 / $base-font-size}rem !important;
|
2016-12-19 22:07:04 +00:00
|
|
|
@include themify() {
|
|
|
|
color: getThemifyVariable('inactive-text-color');
|
|
|
|
}
|
2016-05-11 02:22:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror-lines {
|
2017-10-11 21:31:23 +00:00
|
|
|
padding-top: #{25 / $base-font-size}rem;
|
2016-05-12 22:29:38 +00:00
|
|
|
}
|
|
|
|
|
2017-10-11 21:31:23 +00:00
|
|
|
pre.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;
|
2018-10-10 21:40:47 +00:00
|
|
|
width: #{49 / $base-font-size}rem;
|
2016-07-12 23:11:07 +00:00
|
|
|
position: absolute;
|
|
|
|
height: 100%;
|
2017-10-12 20:19:18 +00:00
|
|
|
right: 100%;
|
2016-07-12 23:11:07 +00:00
|
|
|
}
|
|
|
|
|
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) {
|
2020-04-27 22:34:53 +00:00
|
|
|
opacity: 0.2;
|
2018-10-10 21:40:47 +00:00
|
|
|
width: #{49 / $base-font-size}rem !important;
|
2016-07-12 23:11:07 +00:00
|
|
|
height: 100%;
|
2018-10-10 21:40:47 +00:00
|
|
|
left: 49px !important;
|
2016-07-12 23:11:07 +00:00
|
|
|
// background-color: rgb(255, 95, 82);
|
|
|
|
}
|
2016-07-12 23:24:57 +00:00
|
|
|
|
|
|
|
.CodeMirror-lint-tooltip {
|
2016-09-14 17:03:51 +00:00
|
|
|
@include themify() {
|
|
|
|
background-color: getThemifyVariable('modal-background-color');
|
|
|
|
border: 1px solid getThemifyVariable('modal-border-color');
|
|
|
|
box-shadow: 0 12px 12px getThemifyVariable('shadow-color');
|
2016-09-21 22:52:44 +00:00
|
|
|
color: getThemifyVariable('primary-text-color');
|
2016-09-14 17:03:51 +00:00
|
|
|
}
|
2016-07-21 19:07:53 +00:00
|
|
|
border-radius: 2px;
|
2016-12-14 15:41:50 +00:00
|
|
|
font-family: Montserrat, sans-serif;
|
2016-07-12 23:24:57 +00:00
|
|
|
}
|
2016-09-07 20:33:01 +00:00
|
|
|
|
2016-09-21 22:52:44 +00:00
|
|
|
.CodeMirror-gutters {
|
|
|
|
@include themify() {
|
|
|
|
background-color: getThemifyVariable('editor-gutter-color');
|
|
|
|
border-color: getThemifyVariable('ide-border-color');
|
|
|
|
}
|
2016-10-05 16:26:49 +00:00
|
|
|
// left: 0 !important;
|
2016-12-19 22:07:04 +00:00
|
|
|
width: #{48 / $base-font-size}rem;
|
2016-07-12 23:24:57 +00:00
|
|
|
}
|
2016-09-07 20:33:01 +00:00
|
|
|
|
2017-06-06 19:20:21 +00:00
|
|
|
/*
|
|
|
|
Search dialog
|
|
|
|
*/
|
|
|
|
|
|
|
|
.CodeMirror-dialog {
|
2017-07-28 15:38:47 +00:00
|
|
|
position: fixed;
|
2017-06-06 19:20:21 +00:00
|
|
|
top: 0;
|
2017-07-28 15:38:47 +00:00
|
|
|
left: 50%;
|
|
|
|
margin-left: - #{365/2/$base-font-size}rem;
|
2017-06-06 19:20:21 +00:00
|
|
|
|
|
|
|
z-index: 10;
|
|
|
|
|
2017-07-28 15:38:47 +00:00
|
|
|
width: 100%;
|
|
|
|
max-width: #{365 / $base-font-size}rem;
|
2017-06-06 19:20:21 +00:00
|
|
|
|
|
|
|
font-family: Montserrat, sans-serif;
|
|
|
|
|
|
|
|
padding: #{14 / $base-font-size}rem #{20 / $base-font-size}rem #{14 / $base-font-size}rem #{18 / $base-font-size}rem;
|
|
|
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
|
|
|
@include themify() {
|
|
|
|
background-color: getThemifyVariable('modal-background-color');
|
|
|
|
box-shadow: 0 12px 12px 0 getThemifyVariable('shadow-color');
|
|
|
|
border: solid 0.5px getThemifyVariable('modal-border-color');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror-search-title {
|
|
|
|
display: block;
|
|
|
|
margin-bottom: #{12 / $base-font-size}rem;
|
|
|
|
|
|
|
|
font-size: #{21 / $base-font-size}rem;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror-search-field {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: #{12 / $base-font-size}rem;
|
2017-07-28 15:38:47 +00:00
|
|
|
@include themify() {
|
2020-04-27 23:24:00 +00:00
|
|
|
color: getThemifyVariable('input-text-color');
|
|
|
|
background-color: getThemifyVariable('input-secondary-background-color');
|
2017-07-28 15:38:47 +00:00
|
|
|
border: solid 0.5px getThemifyVariable('button-border-color');
|
|
|
|
}
|
2017-06-06 19:20:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror-search-count {
|
|
|
|
display: block;
|
|
|
|
height: #{20 / $base-font-size}rem;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror-search-actions {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
*/
|
|
|
|
.CodeMirror-search-modifiers {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
2020-04-28 21:31:27 +00:00
|
|
|
align-items: center;
|
2017-06-06 19:20:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror-regexp-button,
|
|
|
|
.CodeMirror-case-button,
|
|
|
|
.CodeMirror-word-button {
|
2020-04-28 21:31:27 +00:00
|
|
|
@include themify() {
|
|
|
|
// @extend %button;
|
|
|
|
padding: #{2 / $base-font-size}rem #{7 / $base-font-size}rem;
|
|
|
|
border: 2px solid transparent;
|
|
|
|
&:hover {
|
|
|
|
border-color: getThemifyVariable("button-border-color");
|
|
|
|
}
|
2017-06-06 19:20:21 +00:00
|
|
|
|
2020-04-28 21:31:27 +00:00
|
|
|
}
|
|
|
|
width: #{35 / $base-font-size}rem;
|
|
|
|
height: #{35 / $base-font-size}rem;
|
|
|
|
|
|
|
|
& + & {
|
|
|
|
margin-left: #{10 / $base-font-size}rem;
|
|
|
|
}
|
2017-06-06 19:20:21 +00:00
|
|
|
|
|
|
|
word-break: keep-all;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror-regexp-button .label,
|
|
|
|
.CodeMirror-case-button .label,
|
|
|
|
.CodeMirror-word-button .label {
|
|
|
|
@extend %hidden-element;
|
|
|
|
}
|
|
|
|
|
|
|
|
[aria-checked="true"] {
|
|
|
|
@include themify() {
|
2020-04-28 21:31:27 +00:00
|
|
|
color: getThemifyVariable("heavy-text-color");
|
|
|
|
background-color: getThemifyVariable("button-secondary-background-color");
|
|
|
|
border-color: getThemifyVariable("button-border-color");
|
2017-06-06 19:20:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Previous / Next buttons
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Visually hide button text
|
|
|
|
.CodeMirror-search-button .label {
|
|
|
|
@extend %hidden-element;
|
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror-search-button {
|
|
|
|
margin-right: #{10 / $base-font-size}rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror-search-button::after {
|
|
|
|
display: block;
|
|
|
|
content: ' ';
|
|
|
|
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
|
2017-06-26 21:46:47 +00:00
|
|
|
@include icon();
|
2017-06-06 19:20:21 +00:00
|
|
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Previous button
|
|
|
|
.CodeMirror-search-button.prev::after {
|
2020-04-29 22:34:37 +00:00
|
|
|
background-image: url(../images/up-arrow.svg?byUrl)
|
2017-06-06 19:20:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Next button
|
|
|
|
.CodeMirror-search-button.next::after {
|
2020-04-29 22:34:37 +00:00
|
|
|
background-image: url(../images/down-arrow.svg?byUrl)
|
2017-06-06 19:20:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Close button
|
|
|
|
*/
|
|
|
|
.CodeMirror-close-button {
|
|
|
|
position: absolute;
|
|
|
|
top: #{14 / $base-font-size}rem;
|
|
|
|
right: #{18 / $base-font-size}rem;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Visually hide button text
|
|
|
|
.CodeMirror-close-button .label {
|
|
|
|
@extend %hidden-element;
|
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror-close-button:after {
|
|
|
|
display: block;
|
|
|
|
content: ' ';
|
|
|
|
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
|
|
|
|
margin-left: #{8 / $base-font-size}rem;
|
|
|
|
|
2017-06-26 21:46:47 +00:00
|
|
|
@include icon();
|
2017-06-06 19:20:21 +00:00
|
|
|
|
2020-04-29 22:34:37 +00:00
|
|
|
background: transparent url(../images/exit.svg?byUrl) no-repeat;
|
2017-06-06 19:20:21 +00:00
|
|
|
}
|
|
|
|
|
2019-03-04 20:38:14 +00:00
|
|
|
// foldgutter
|
|
|
|
.CodeMirror-foldmarker {
|
|
|
|
text-shadow: -1px 0 #ed225d, 0 1px #ed225d, 1px 0 #ed225d, 0 -1px #ed225d;
|
|
|
|
color: #FFF;
|
|
|
|
/* background-color: rgba(237, 34, 93, 0.42); */
|
|
|
|
/* border-radius: 3px; */
|
|
|
|
font-weight: bold;
|
|
|
|
font-family: arial;
|
|
|
|
line-height: .3;
|
|
|
|
cursor: pointer;
|
|
|
|
opacity: 0.75;
|
|
|
|
}
|
|
|
|
.CodeMirror-foldgutter {
|
|
|
|
width: 2.7em;
|
|
|
|
}
|
|
|
|
.CodeMirror-foldgutter-open,
|
|
|
|
.CodeMirror-foldgutter-folded {
|
|
|
|
cursor: pointer;
|
|
|
|
padding-bottom: 0.4em;
|
|
|
|
text-align: right;
|
|
|
|
line-height: 1.0;
|
|
|
|
}
|
|
|
|
.CodeMirror-foldgutter-open:after {
|
|
|
|
content: "\25BE";
|
|
|
|
}
|
|
|
|
.CodeMirror-foldgutter-folded:after {
|
|
|
|
content: "\25B8";
|
|
|
|
}
|
|
|
|
|
2018-10-15 21:45:31 +00:00
|
|
|
.CodeMirror-foldgutter-open, .CodeMirror-foldgutter-folded {
|
|
|
|
position: absolute;
|
|
|
|
right: 100%;
|
|
|
|
}
|
|
|
|
|
2017-10-11 21:31:23 +00:00
|
|
|
.CodeMirror-foldgutter-open:after {
|
2017-10-12 18:22:17 +00:00
|
|
|
@include themify() {
|
|
|
|
background-image: getThemifyVariable('codefold-icon-open');
|
|
|
|
}
|
2017-10-11 21:31:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror-foldgutter-folded:after {
|
2017-10-12 18:22:17 +00:00
|
|
|
@include themify() {
|
|
|
|
background-image: getThemifyVariable('codefold-icon-closed');
|
|
|
|
}
|
2017-10-11 21:31:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror-foldgutter-folded:after,
|
|
|
|
.CodeMirror-foldgutter-open:after {
|
|
|
|
background-size: 10px 10px;
|
|
|
|
content: "";
|
|
|
|
padding-left: 15px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror-foldmarker {
|
|
|
|
text-shadow: none;
|
|
|
|
border-radius: 5px;
|
|
|
|
opacity: 1;
|
|
|
|
font-weight: normal;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
height: 0.85em;
|
|
|
|
line-height: 0.7;
|
|
|
|
padding: 0 #{5 / $base-font-size}rem;
|
|
|
|
font-family: serif;
|
|
|
|
}
|
|
|
|
|
2017-10-12 21:13:27 +00:00
|
|
|
|
|
|
|
.line-runtime-error + .CodeMirror-activeline-gutter {
|
|
|
|
background-color: rgb(255, 95, 82);
|
|
|
|
opacity: 0.3;
|
|
|
|
}
|
|
|
|
|
|
|
|
.line-runtime-error {
|
|
|
|
background-color: rgb(255, 95, 82) !important;
|
|
|
|
opacity: 0.3;
|
|
|
|
}
|
|
|
|
|
2017-01-05 19:40:04 +00:00
|
|
|
.editor-holder {
|
|
|
|
height: calc(100% - #{29 / $base-font-size}rem);
|
|
|
|
width: 100%;
|
|
|
|
position: absolute;
|
2020-04-08 20:28:49 +00:00
|
|
|
@include themify() {
|
|
|
|
border: 1px solid getThemifyVariable('ide-border-color');
|
|
|
|
}
|
|
|
|
&.editor-holder--hidden .CodeMirror {
|
2019-06-12 21:11:35 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2017-01-05 19:40:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.editor__header {
|
|
|
|
height: #{29 / $base-font-size}rem;
|
|
|
|
}
|
2016-12-19 22:07:04 +00:00
|
|
|
|
2016-09-07 20:33:01 +00:00
|
|
|
.editor__options-button {
|
2017-06-26 21:46:47 +00:00
|
|
|
@include icon();
|
2016-09-07 20:33:01 +00:00
|
|
|
position: absolute;
|
2016-12-19 22:19:07 +00:00
|
|
|
top: #{10 / $base-font-size}rem;
|
|
|
|
right: #{2 / $base-font-size}rem;
|
2016-09-07 20:33:01 +00:00
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
2016-12-19 22:07:04 +00:00
|
|
|
|
2016-09-07 20:33:01 +00:00
|
|
|
.editor__options {
|
|
|
|
display: none;
|
|
|
|
@extend %modal;
|
|
|
|
position: absolute;
|
2016-12-20 05:21:04 +00:00
|
|
|
right: #{0 / $base-font-size}rem;
|
|
|
|
padding: #{8 / $base-font-size}rem #{20 / $base-font-size}rem;
|
|
|
|
font-size: #{12 / $base-font-size}rem;
|
|
|
|
@include themify() {
|
|
|
|
background-color: getThemifyVariable('modal-background-color');
|
|
|
|
box-shadow: 0 0 18px getThemifyVariable('shadow-color');
|
|
|
|
}
|
2016-09-07 20:33:01 +00:00
|
|
|
.editor--options & {
|
|
|
|
display: block;
|
|
|
|
}
|
2016-09-12 05:31:30 +00:00
|
|
|
}
|
|
|
|
|
2016-12-20 05:21:04 +00:00
|
|
|
.editor__options li {
|
|
|
|
padding: #{4 / $base-font-size}rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.editor__options a {
|
|
|
|
@include themify() {
|
|
|
|
color: getThemifyVariable('secondary-text-color');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-09 17:52:14 +00:00
|
|
|
.editor__file-name {
|
|
|
|
@include themify() {
|
2020-04-21 21:49:02 +00:00
|
|
|
color: getThemifyVariable('primary-text-color');
|
2016-11-09 17:52:14 +00:00
|
|
|
}
|
2016-12-19 22:07:04 +00:00
|
|
|
height: #{29 / $base-font-size}rem;
|
2016-12-19 22:19:07 +00:00
|
|
|
padding-top: #{7 / $base-font-size}rem;
|
|
|
|
padding-left: #{56 / $base-font-size}rem;
|
2016-11-09 17:52:14 +00:00
|
|
|
font-size: #{12 / $base-font-size}rem;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2016-09-12 05:31:30 +00:00
|
|
|
}
|
2020-04-29 22:34:37 +00:00
|
|
|
|
|
|
|
.editor__unsaved-changes {
|
|
|
|
margin-left: #{2 / $base-font-size}rem;
|
|
|
|
}
|