lbry-desktop/ui/scss/component/_markdown-editor.scss

151 lines
3.1 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-bottom-left-radius: var(--input-border-radius);
border-bottom-right-radius: var(--input-border-radius);
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
.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;
}
2019-06-29 00:21:21 +02:00
[data-mode='dark'] & {
border-left: 1px solid rgba($lbry-white, 0.2);
border-right: 1px solid rgba($lbry-white, 0.2);
border-bottom: 1px solid rgba($lbry-white, 0.2);
background-color: rgba($lbry-white, 0.1);
color: $lbry-white;
.CodeMirror-selectedtext {
color: $lbry-black;
}
.editor-preview.editor-preview-active {
background-color: $lbry-black;
color: $lbry-white;
}
}
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-top-left-radius: var(--input-border-radius);
border-top-right-radius: var(--input-border-radius);
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
2019-03-21 16:22:23 +01:00
button {
2019-03-21 19:35:28 +01:00
color: $lbry-black !important;
2019-03-21 16:22:23 +01:00
border-color: transparent;
transition: opacity 0.3s ease;
&:not(.active),
&:not(:hover) {
opacity: 0.6;
}
&.active,
&:hover {
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;
}
2019-06-29 00:21:21 +02:00
[data-mode='dark'] & {
background-color: rgba($lbry-white, 0.2);
2019-03-21 16:22:23 +01:00
button {
color: $lbry-white !important; // We need to use !important to override the CodeMirror styles
&.active {
background-color: rgba($lbry-black, 0.4);
}
&:hover {
color: $lbry-black !important;
}
}
&.disabled-for-preview {
2019-03-21 16:22:23 +01:00
button:not(.no-disable) {
background-color: transparent;
}
// The markdown preview button is highlighted during preview when the other buttons are disabled
2019-03-21 16:22:23 +01:00
button.no-disable {
background-color: rgba($lbry-white, 0.3);
}
}
}
2018-07-28 22:17:06 +02:00
}
.editor-statusbar {
color: rgba($lbry-black, 0.5);
2019-07-21 23:31:22 +02:00
font-size: var(--font-label);
// padding: var(--spacing-medium) 0; // overriding styles from elsewhere
2019-06-29 00:21:21 +02:00
[data-mode='dark'] & {
color: inherit;
}
}
2019-02-13 17:27:20 +01:00
.form-field--SimpleMDE {
2019-06-11 20:10:58 +02:00
margin-top: var(--spacing-large);
2019-03-21 16:22:23 +01:00
// Overriding the lbry/components form styling
.editor-toolbar {
button:not(.button) {
padding-right: 0;
padding-left: 0;
background-color: transparent !important;
border: transparent;
&:hover {
background-color: $lbry-white !important;
}
}
}
2019-02-13 17:27:20 +01:00
}