insomnia/app/ui/css/components/markdown-editor.less
Gregory Schier 0e57b40ba3 Dedicated tab for request descriptions (#317)
* Added tab for mardown descriptions

* Some fixes

* Fix dropdown menu theme

* Track description editing
2017-06-16 13:29:22 -07:00

39 lines
746 B
Plaintext

@import '../constants/dimensions';
@import '../constants/colors';
@import '../constants/fonts';
.markdown-editor {
border: 1px solid var(--hl-md);
box-sizing: border-box;
.markdown-editor__edit {
padding: @padding-xs @padding-sm;
}
&.markdown-editor--dynamic-height {
.CodeMirror-scroll {
// Not sure why this style doesn't work on .CodeMirror...
max-height: 30vh;
}
.input {
height: auto !important;
}
}
&:not(.markdown-editor--dynamic-height) .markdown-editor__edit {
height: 100%;
display: grid;
grid-template-rows: 1fr auto;
.input {
height: 100%;
}
}
.markdown-editor__preview {
max-height: 35vh;
padding: @padding-sm;
overflow: auto;
}
}