0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-04 23:22:42 +00:00

Stylelint the editor.less file.

This commit is contained in:
Gazook89
2023-09-27 22:56:20 -05:00
parent 2c130d1943
commit c6ef051232

View File

@@ -1,79 +1,73 @@
@import 'themes/codeMirror/customEditorStyles.less'; @import 'themes/codeMirror/customEditorStyles.less';
.editor{ .editor {
position : relative; position : relative;
width : 100%; width : 100%;
.codeEditor{ .codeEditor {
height : 100%; height : 100%;
.pageLine{ .pageLine {
background : #33333328; background : #33333328;
border-top : #339 solid 1px; border-top : #333399 solid 1px;
} }
.editor-page-count{ .editor-page-count {
color : grey;
float : right; float : right;
color : grey;
} }
.columnSplit{ .columnSplit {
font-style : italic; font-style : italic;
color : grey; color : grey;
background-color : fade(#299, 15%); background-color : fade(#229999, 15%);
border-bottom : #299 solid 1px; border-bottom : #229999 solid 1px;
} }
.define { .define {
&:not(.term):not(.definition){ &:not(.term):not(.definition) {
color: #949494; font-weight : bold;
font-weight: bold; color : #949494;
background: #e5e5e5; background : #E5E5E5;
border-radius: 3px; border-radius : 3px;
}
&.term {
color: rgb(96, 117, 143);
}
&.definition {
color: rgb(97, 57, 178);
} }
&.term { color : rgb(96, 117, 143); }
&.definition { color : rgb(97, 57, 178); }
} }
.block:not(.cm-comment){ .block:not(.cm-comment) {
color : purple;
font-weight : bold; font-weight : bold;
color : purple;
//font-style: italic; //font-style: italic;
} }
.inline-block:not(.cm-comment){ .inline-block:not(.cm-comment) {
color : red;
font-weight : bold; font-weight : bold;
color : red;
//font-style: italic; //font-style: italic;
} }
.injection:not(.cm-comment){ .injection:not(.cm-comment) {
font-weight : bold;
color : green; color : green;
font-weight : bold;
} }
} }
.brewJump{ .brewJump {
position : absolute; position : absolute;
background-color : @teal; right : 20px;
cursor : pointer; bottom : 20px;
width : 30px; z-index : 1000000;
height : 30px; display : flex;
display : flex; align-items : center;
align-items : center; justify-content : center;
bottom : 20px; width : 30px;
right : 20px; height : 30px;
z-index : 1000000; cursor : pointer;
justify-content : center; background-color : @teal;
.tooltipLeft("Jump to brew page"); .tooltipLeft('Jump to brew page');
} }
.editorToolbar{ .editorToolbar {
position: absolute; position : absolute;
top: 5px; top : 5px;
left: 50%; left : 50%;
color: black; z-index : 9;
font-size: 13px; font-size : 13px;
z-index: 9; color : black;
span { span { padding : 2px 5px; }
padding: 2px 5px;
}
} }
} }