insomnia/app/ui/css/components/editor.less

283 lines
5.5 KiB
Plaintext
Raw Normal View History

2016-03-16 23:34:25 +00:00
@import '../constants/colors';
2016-03-23 05:58:16 +00:00
@import '../constants/dimensions';
2016-07-20 23:16:28 +00:00
@import '../constants/fonts';
2016-03-16 23:34:25 +00:00
2016-05-01 19:56:30 +00:00
.editor {
box-sizing: border-box;
height: 100% !important;
width: 100%;
2016-09-08 22:04:25 +00:00
display: grid;
2016-09-20 20:53:34 +00:00
grid-template-rows: minmax(0, 1fr) auto;
2016-09-09 00:32:36 +00:00
grid-template-columns: 100%;
2016-09-08 22:04:25 +00:00
2016-09-20 21:17:01 +00:00
.editor__container {
height: 100%;
width: 100%;
position: relative;
}
.CodeMirror {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
2016-09-13 17:29:09 +00:00
.editor__toolbar {
2016-09-08 22:04:25 +00:00
display: flex;
flex-direction: row;
align-items: center;
2016-09-13 17:29:09 +00:00
//justify-content: flex-end;
border-top: 1px solid @hl-md;
height: @line-height-xs;
2016-09-08 22:04:25 +00:00
2016-09-13 17:29:09 +00:00
input {
2016-09-13 21:18:22 +00:00
font-family: @font-monospace;
2016-09-08 22:04:25 +00:00
margin-right: 0;
width: 100%;
2016-09-13 17:29:09 +00:00
margin-left: @padding-md;
2016-09-08 22:04:25 +00:00
}
button {
color: @hl;
2016-09-13 17:29:09 +00:00
padding: @padding-xs @padding-md;
height: 100%;
2016-09-08 22:04:25 +00:00
}
}
2016-05-01 19:56:30 +00:00
.CodeMirror {
2016-04-10 06:59:05 +00:00
height: 100% !important;
2016-04-06 04:21:42 +00:00
width: 100%;
2016-05-01 19:56:30 +00:00
box-sizing: border-box;
2016-08-29 17:58:59 +00:00
padding-top: @padding-sm;
2016-05-01 19:56:30 +00:00
}
.CodeMirror * {
2016-08-29 17:58:59 +00:00
font-family: @font-monospace;
}
2016-05-01 19:56:30 +00:00
.CodeMirror,
.cm-s-seti.CodeMirror, // Hack because seti theme is dumb
.CodeMirror-gutters,
.CodeMirror-scrollbar-filler,
.CodeMirror-gutter-filler {
// Let the background behind show through
background-color: transparent !important;
2016-05-01 19:56:30 +00:00
border: 0;
}
.CodeMirror-linenumber, .CodeMirror-guttermarker-subtle {
2016-08-29 17:58:59 +00:00
color: @hl-xl !important;
2016-05-01 19:56:30 +00:00
}
2016-10-02 22:17:55 +00:00
.CodeMirror-gutter {
background-color: @bg-super-dark;
}
2016-10-05 04:43:48 +00:00
&.editor--light-theme .CodeMirror-gutter {
background-color: @bg-super-light;
}
2016-05-01 19:56:30 +00:00
.CodeMirror-scroll {
cursor: text; // Show text cursor everywhere (not just in .Codemirror-lines)
}
.CodeMirror-lines {
// Scroll past the end
2016-08-22 20:05:42 +00:00
padding-bottom: 30px;
2016-05-01 19:56:30 +00:00
}
.CodeMirror-placeholder {
2016-08-29 17:58:59 +00:00
color: @hl-xxl;
2016-05-01 19:56:30 +00:00
}
2016-03-16 23:34:25 +00:00
2016-06-18 22:57:23 +00:00
.CodeMirror-lint-marker-error {
width: 100%;
height: 1em;
display: flex;
background: none;
text-align: center;
&::after {
2016-08-29 17:58:59 +00:00
color: darken(@danger, 10);
2016-06-18 23:02:01 +00:00
text-align: center;
width: 100%;
2016-06-19 00:08:14 +00:00
font-size: 0.7em; // because the circle is so large
2016-06-18 23:02:01 +00:00
content: '⬤';
2016-06-18 22:57:23 +00:00
}
}
&.editor--readonly .CodeMirror-cursors,
&.editor--readonly .CodeMirror-activeline-background {
2016-05-01 19:56:30 +00:00
opacity: 0;
2016-03-24 05:26:04 +00:00
}
2016-03-16 23:34:25 +00:00
}
2016-06-18 22:57:23 +00:00
2016-09-13 17:35:49 +00:00
// Search dialog (and others)
.CodeMirror-dialog {
background: @bg-super-dark;
}
// Tooltip for errors
2016-06-18 22:57:23 +00:00
.CodeMirror-lint-tooltip {
2016-08-29 17:58:59 +00:00
background-color: @bg-light;
color: @font-light-bg;
2016-06-18 22:57:23 +00:00
border-radius: 0;
2016-08-29 17:58:59 +00:00
font-size: @font-size-md;
padding: @padding-xs @padding-sm;
z-index: 99999;
2016-06-18 22:57:23 +00:00
.CodeMirror-lint-message-error {
background-image: none;
padding-left: 0;
}
&::after {
display: none;
}
}
2016-06-20 06:43:35 +00:00
/* Based on Sublime Text's Monokai theme */
.editor:not(.editor--light-theme) {
.cm-s-default.CodeMirror {
color: #f8f8f2;
}
2016-06-20 06:43:35 +00:00
.cm-s-default div.CodeMirror-selected {
//background: #49483E;
2016-08-29 17:58:59 +00:00
background: @hl-xl;
}
.cm-s-default .CodeMirror-line::selection, .cm-s-default .CodeMirror-line > span::selection, .cm-s-default .CodeMirror-line > span > span::selection {
//background: rgba(73, 72, 62, .99);
}
.cm-s-default .CodeMirror-line::-moz-selection, .cm-s-default .CodeMirror-line > span::-moz-selection, .cm-s-default .CodeMirror-line > span > span::-moz-selection {
//background: rgba(73, 72, 62, .99);
}
.cm-s-default .CodeMirror-gutters {
//background: #272822;
2016-09-13 17:29:09 +00:00
border-right: 0;
}
.cm-s-default .CodeMirror-guttermarker {
color: white;
}
.cm-s-default .CodeMirror-guttermarker-subtle {
color: #d0d0d0;
}
.cm-s-default .CodeMirror-linenumber {
color: #d0d0d0;
}
.cm-s-default .CodeMirror-cursor {
border-left: 1px solid #f8f8f0;
}
2016-09-13 17:29:09 +00:00
.cm-s-default span.cm-comment,
.cm-s-default span.cm-qualifier {
color: @hl;
}
.cm-s-default span.cm-atom {
2016-08-29 17:58:59 +00:00
color: lighten(@surprise, 5);
}
.cm-s-default span.cm-number {
2016-08-29 17:58:59 +00:00
color: lighten(@surprise, 5);
}
.cm-s-default span.cm-property, .cm-s-default span.cm-attribute {
2016-08-29 17:58:59 +00:00
color: lighten(@success, 5);
}
.cm-s-default span.cm-keyword {
color: #f92672;
}
.cm-s-default span.cm-builtin {
color: #66d9ef;
}
.cm-s-default span.cm-string {
2016-08-29 17:58:59 +00:00
color: lighten(@notice, 5);
}
.cm-s-default span.cm-variable {
color: #f8f8f2;
}
.cm-s-default span.cm-variable-2 {
color: #9effff;
}
.cm-s-default span.cm-variable-3 {
color: #66d9ef;
}
.cm-s-default span.cm-def {
color: #fd971f;
}
.cm-s-default span.cm-bracket {
color: #f8f8f2;
}
.cm-s-default span.cm-tag {
2016-08-29 17:58:59 +00:00
color: darken(@danger, 3);
}
.cm-s-default span.cm-header {
2016-08-29 17:58:59 +00:00
color: lighten(@surprise, 5);
}
.cm-s-default span.cm-link {
2016-08-29 17:58:59 +00:00
color: lighten(@surprise, 5);
}
.cm-s-default span.cm-error {
2016-08-29 17:58:59 +00:00
background: @danger;
color: #f8f8f0;
}
.cm-s-default .CodeMirror-activeline-background {
2016-08-29 17:58:59 +00:00
background: @hl-md;
}
.cm-s-default .CodeMirror-matchingbracket {
text-decoration: underline;
2016-07-29 20:37:23 +00:00
color: inherit !important;
}
}
.editor--light-theme {
.cm-s-default span {
2016-08-29 17:58:59 +00:00
color: @font-light-bg;
}
.cm-s-default span.cm-string {
2016-08-29 17:58:59 +00:00
color: saturate(darken(@notice, 30), 100);
}
.cm-s-default span.cm-property, .cm-s-default span.cm-attribute {
2016-08-29 17:58:59 +00:00
color: saturate(darken(@success, 15), 100);
}
.cm-s-default span.cm-atom,
.cm-s-default span.cm-number {
2016-08-29 17:58:59 +00:00
color: saturate(darken(@surprise, 30), 100);
}
.cm-s-default .CodeMirror-activeline-background {
2016-08-29 17:58:59 +00:00
background: @hl-md;
}
.cm-s-default .CodeMirror-matchingbracket {
text-decoration: underline;
2016-07-29 20:37:23 +00:00
color: inherit !important;
}
2016-06-20 06:43:35 +00:00
}