lbry-desktop/src/renderer/scss/component/_markdown-editor.scss

89 lines
1.5 KiB
SCSS
Raw Normal View History

2017-08-26 22:47:37 +02:00
.CodeMirror {
2018-10-19 23:37:46 +02:00
border-top: none;
border-right: 1px solid $lbry-gray-1;
border-bottom: 1px solid $lbry-gray-1;
border-left: 1px solid $lbry-gray-1;
border-radius: 0;
background: $lbry-white;
color: $lbry-black;
2017-08-26 22:47:37 +02:00
.CodeMirror-cursor {
border-color: $lbry-teal-3;
}
.CodeMirror-placeholder {
opacity: 0.5;
}
2017-08-26 22:47:37 +02:00
.CodeMirror-selected {
// background-color: transparent;
}
.CodeMirror-selectedtext {
color: $lbry-white;
}
2017-08-26 22:47:37 +02:00
.cm-spell-error:not(.cm-url):not(.cm-comment):not(.cm-tag):not(.cm-word) {
text-decoration: underline;
text-decoration-color: $lbry-red-3;
text-decoration-style: dotted;
}
2017-08-26 22:47:37 +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
}
.editor-toolbar {
background-color: $lbry-gray-1;
2018-10-17 19:14:24 +02:00
border: none;
border-radius: 0;
2018-10-17 19:14:24 +02:00
opacity: 1; // ?
2017-08-26 22:47:37 +02:00
&:hover {
opacity: 1; // ?
}
2017-08-26 22:47:37 +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
&.fullscreen {
background-color: $lbry-gray-1;
2017-08-26 22:47:37 +02:00
&::before,
&::after {
display: none;
}
}
2018-07-28 22:17:06 +02:00
a {
color: $lbry-black;
transition: opacity 0.3s ease;
&:not(.active),
&:not(:hover) {
opacity: 0.6;
}
&.active,
&:hover {
border-color: transparent;
2018-10-17 21:42:05 +02:00
opacity: 1;
}
}
2018-07-28 22:17:06 +02:00
i.separator {
2018-10-17 19:14:24 +02:00
border: none;
}
2018-07-28 22:17:06 +02:00
}
.editor-statusbar {
color: rgba($lbry-black, 0.5);
}