2017-08-26 22:47:37 +02:00
|
|
|
.CodeMirror {
|
2018-10-17 19:14:24 +02:00
|
|
|
border: none;
|
2018-07-28 23:27:28 +02:00
|
|
|
border-radius: 0;
|
2018-10-17 00:29:55 +02:00
|
|
|
background: $lbry-white;
|
|
|
|
color: $lbry-black;
|
2017-08-26 22:47:37 +02:00
|
|
|
|
2018-10-17 00:29:55 +02:00
|
|
|
.CodeMirror-cursor {
|
|
|
|
border-color: $lbry-teal-3;
|
|
|
|
}
|
2018-07-28 23:27:28 +02:00
|
|
|
|
2018-10-17 00:29:55 +02:00
|
|
|
.CodeMirror-placeholder {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2017-08-26 22:47:37 +02:00
|
|
|
|
2018-10-17 00:29:55 +02:00
|
|
|
.CodeMirror-selected {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
2018-07-28 23:27:28 +02:00
|
|
|
|
2018-10-17 00:29:55 +02:00
|
|
|
.CodeMirror-selectedtext {
|
|
|
|
background-color: rgba($lbry-teal-3, 0.3);
|
|
|
|
color: $lbry-white;
|
|
|
|
}
|
2017-08-26 22:47:37 +02:00
|
|
|
|
2018-10-17 00:29:55 +02:00
|
|
|
.cm-spell-error:not(.cm-url):not(.cm-comment):not(.cm-tag):not(.cm-word) {
|
|
|
|
background: none;
|
|
|
|
text-decoration: underline;
|
|
|
|
text-decoration-color: $lbry-red-3;
|
|
|
|
text-decoration-style: dotted;
|
|
|
|
}
|
2017-08-26 22:47:37 +02:00
|
|
|
}
|
|
|
|
|
2018-10-17 00:29:55 +02:00
|
|
|
// Fix selection
|
|
|
|
.CodeMirror-line::selection,
|
|
|
|
.CodeMirror-line > span::selection,
|
|
|
|
.CodeMirror-line > span > span::selection {
|
|
|
|
background-color: $lbry-teal-1;
|
2017-08-26 22:47:37 +02:00
|
|
|
}
|
|
|
|
|
2018-10-17 00:29:55 +02:00
|
|
|
.editor-toolbar {
|
|
|
|
background-color: $lbry-gray-1;
|
2018-10-17 19:14:24 +02:00
|
|
|
border: none;
|
2018-10-17 00:29:55 +02:00
|
|
|
border-radius: 0;
|
2018-10-17 19:14:24 +02:00
|
|
|
opacity: 1; // ?
|
2017-08-26 22:47:37 +02:00
|
|
|
|
2018-10-17 00:29:55 +02:00
|
|
|
&:hover {
|
|
|
|
opacity: 1; // ?
|
|
|
|
}
|
2017-08-26 22:47:37 +02:00
|
|
|
|
2018-10-17 00:29:55 +02:00
|
|
|
&.disabled-for-preview a:not(.no-disable) {
|
|
|
|
background-color: $lbry-gray-1;
|
|
|
|
border-color: transparent;
|
|
|
|
opacity: 0.3;
|
|
|
|
}
|
2017-08-26 22:47:37 +02:00
|
|
|
|
2018-10-17 00:29:55 +02:00
|
|
|
&.fullscreen {
|
|
|
|
background-color: $lbry-gray-1;
|
2017-08-26 22:47:37 +02:00
|
|
|
|
2018-10-17 00:29:55 +02:00
|
|
|
&::before,
|
|
|
|
&::after {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2018-07-28 22:17:06 +02:00
|
|
|
|
2018-10-17 00:29:55 +02:00
|
|
|
a {
|
|
|
|
color: $lbry-black !important;
|
|
|
|
transition: opacity 0.3s ease;
|
|
|
|
|
|
|
|
&:not(.active),
|
|
|
|
&:not(:hover) {
|
|
|
|
opacity: 0.6;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active,
|
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
// background-color: var(--button-bg); // "--button-bg" does not exist
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
|
|
|
}
|
2018-07-28 22:17:06 +02:00
|
|
|
|
2018-10-17 00:29:55 +02:00
|
|
|
i.separator {
|
2018-10-17 19:14:24 +02:00
|
|
|
border: none;
|
2018-10-17 00:29:55 +02:00
|
|
|
}
|
2018-07-28 22:17:06 +02:00
|
|
|
}
|
|
|
|
|
2018-10-17 00:29:55 +02:00
|
|
|
.editor-preview {
|
|
|
|
background-color: rgba($lbry-gray-1, 0.5);
|
2018-10-17 19:14:24 +02:00
|
|
|
border: none;
|
|
|
|
font-size: calc(var(--font-size-subtext-multiple) * 1em);
|
2018-07-28 22:17:06 +02:00
|
|
|
}
|
|
|
|
|
2018-10-17 00:29:55 +02:00
|
|
|
.editor-statusbar {
|
|
|
|
color: rgba($lbry-black, 0.5);
|
2018-06-24 17:27:34 +02:00
|
|
|
}
|