2019-01-27 23:08:45 +01:00
|
|
|
@import "mixins";
|
|
|
|
@import "theme";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Styling for Script Editor (both Ace and CodeMirror)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#script-editor-container {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ace-editor {
|
|
|
|
margin: 10px;
|
|
|
|
height: 80%;
|
|
|
|
width: 100%;
|
|
|
|
margin-left: 6px;
|
|
|
|
padding-left: 6px;
|
|
|
|
padding-top: 6px;
|
|
|
|
padding-bottom: 6px;
|
|
|
|
border: 2px solid var(--my-highlight-color);
|
|
|
|
z-index: 1;
|
|
|
|
font-family: $fontFamily;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This temp element is used for auto adjusting filename field */
|
|
|
|
.tmp-element {
|
|
|
|
visibility: hidden;
|
|
|
|
white-space: pre;
|
|
|
|
}
|
|
|
|
|
|
|
|
#script-editor-container {
|
|
|
|
position: fixed;
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#script-editor-buttons-wrapper {
|
|
|
|
width: 100%;
|
|
|
|
padding-right: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#script-editor-wrapper {
|
|
|
|
height: 100%;
|
|
|
|
width: 70%;
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
#script-editor-filename-wrapper {
|
|
|
|
background-color: #555;
|
|
|
|
margin-left: 6px;
|
|
|
|
margin-right: 0;
|
|
|
|
padding-left: 6px;
|
|
|
|
width: 100%;
|
|
|
|
border: 2px solid var(--my-highlight-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
#script-editor-filename-tag {
|
|
|
|
display: inline-block;
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom: 0;
|
|
|
|
float: center;
|
|
|
|
background-color: #555;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
#script-editor-filename {
|
|
|
|
$boxShadowArgs: inset 0 0 8px rgba(0, 0, 0, 0.1), 0 0 16px rgba(0, 0, 0, 0.1);
|
|
|
|
@include boxShadow($boxShadowArgs);
|
|
|
|
|
|
|
|
background-color: #555;
|
2019-04-10 08:34:23 +02:00
|
|
|
border: 2px solid var(--my-highlight-color);
|
|
|
|
color: #fff;
|
2019-01-27 23:08:45 +01:00
|
|
|
display: inline-block;
|
|
|
|
float: center;
|
|
|
|
margin: 4px;
|
|
|
|
padding: 2px;
|
2019-04-10 08:34:23 +02:00
|
|
|
resize: none;
|
2019-04-14 11:08:10 +02:00
|
|
|
width: 60%;
|
2019-01-27 23:08:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#script-editor-status {
|
|
|
|
float: left;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
#script-editor-options-panel {
|
|
|
|
position: absolute;
|
|
|
|
right: 9%;
|
|
|
|
bottom: 15%;
|
|
|
|
border: 2px solid #fff;
|
|
|
|
width: 19%;
|
|
|
|
background-color: #444;
|
|
|
|
padding: 2px;
|
|
|
|
overflow: auto;
|
|
|
|
z-index: 1;
|
|
|
|
color: #fff;
|
2019-01-30 07:02:27 +01:00
|
|
|
max-height: 50%;
|
2019-01-27 23:08:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#script-editor-options-panel fieldset {
|
|
|
|
margin-top: 8px;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
padding: 2px;
|
|
|
|
font-size: $defaultFontSize * 0.75;
|
|
|
|
|
|
|
|
input {
|
|
|
|
margin: 2px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Specific overrides for Ace Editor */
|
|
|
|
.ace_line,
|
|
|
|
.ace_line * {
|
|
|
|
background-color: transparent;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ace_text-input {
|
|
|
|
font-size: $defaultFontSize;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Specified overrides for Code mirror Editor are defined in codemirror-override.scss */
|