2020-11-29 22:39:36 +01:00
.EasyMDEContainer .CodeMirror {
color: var(--color-input-text);
background-color: var(--color-input-background);
border-color: var(--color-secondary);
2020-10-19 22:01:06 +02:00
font: 14px var(--fonts-monospace);
2019-05-13 08:26:32 +02:00
2020-11-29 22:39:36 +01:00
.CodeMirror-cursor {
border-left: 1px solid var(--color-input-text);
}
2020-08-25 21:48:53 +02:00
&.cm-s-default {
border-radius: 3px;
padding: 0 !important;
}
2019-05-13 08:26:32 +02:00
2020-08-25 21:48:53 +02:00
.cm-comment {
background: inherit !important;
}
2017-03-10 01:33:35 +00:00
}
2019-05-13 08:26:32 +02:00
2017-03-10 01:33:35 +00:00
.repository.file.editor .tab[data-tab="write"] {
2020-08-25 21:48:53 +02:00
padding: 0 !important;
2017-03-10 01:33:35 +00:00
}
2019-05-13 08:26:32 +02:00
2017-03-10 01:33:35 +00:00
.repository.file.editor .tab[data-tab="write"] .editor-toolbar {
2020-08-25 21:48:53 +02:00
border: 0 !important;
2017-03-10 01:33:35 +00:00
}
2019-05-13 08:26:32 +02:00
2017-03-10 01:33:35 +00:00
.repository.file.editor .tab[data-tab="write"] .CodeMirror {
2020-08-25 21:48:53 +02:00
border-left: 0;
border-right: 0;
border-bottom: 0;
2017-03-10 01:33:35 +00:00
}
2020-02-23 05:32:15 +01:00
.editor-toolbar {
2020-08-25 21:48:53 +02:00
opacity: 1 !important;
2020-11-29 22:39:36 +01:00
border-color: var(--color-secondary);
2020-02-23 05:32:15 +01:00
}
2020-12-04 12:18:37 +01:00
.editor-toolbar button {
border: none !important;
color: var(--color-text-light);
}
2020-11-10 19:16:30 +00:00
.editor-toolbar button:not(:hover) {
2020-08-25 21:48:53 +02:00
background-color: transparent !important;
2020-05-23 13:59:40 +02:00
}
2020-02-23 05:32:15 +01:00
.editor-toolbar i.separator {
2020-08-25 21:48:53 +02:00
border-left: none;
2020-12-04 12:18:37 +01:00
border-right-color: var(--color-secondary);
}
.editor-toolbar button:hover {
background: var(--color-hover);
}
.editor-toolbar button.active {
background: var(--color-active);
2020-02-23 05:32:15 +01:00
}
2020-05-14 18:06:01 +02:00
.editor-loading {
2020-08-25 21:48:53 +02:00
padding: 1rem;
text-align: center;
2020-05-14 18:06:01 +02:00
}
.edit-diff {
2020-08-25 21:48:53 +02:00
padding: 0 !important;
2020-05-14 18:06:01 +02:00
}
.edit-diff > div > .ui.table {
2020-08-25 21:48:53 +02:00
border-top: none !important;
border-bottom: none !important;
2020-11-01 21:04:26 +01:00
border-left: 1px solid var(--color-secondary) !important;
border-right: 1px solid var(--color-secondary) !important;
2020-05-14 18:06:01 +02:00
}
.monaco-editor-container {
2020-08-25 21:48:53 +02:00
width: 100%;
min-height: 200px;
height: 90vh;
2020-05-14 18:06:01 +02:00
}
/* overwrite conflicting styles from fomantic */
.monaco-editor-container .inputarea {
2020-08-25 21:48:53 +02:00
min-height: 0 !important;
margin: 0 !important;
padding: 0 !important;
resize: none !important;
border: none !important;
color: transparent !important;
background-color: transparent !important;
2020-05-14 18:06:01 +02:00
}
2020-11-14 04:57:34 +01:00
.edit.githook .monaco-editor-container {
border: 1px solid var(--color-secondary);
height: 70vh;
}