wikijs-fork/client/scss/components/_editor.scss

40 lines
471 B
SCSS
Raw Normal View History

2016-08-28 01:46:10 +00:00
.editor-toolbar {
z-index: 2;
background-color: #FFF;
border: none;
border-top-left-radius: 0;
border-top-right-radius: 0;
opacity: 0.9;
&:hover {
opacity: 1;
}
}
.CodeMirror {
border-left: none;
border-right: none;
}
2016-08-28 01:46:10 +00:00
.editor-toolbar i.separator {
margin-top: 5px;
}
.editor-toolbar .fa {
font-size: 14px;
}
.ace-container {
position: relative;
min-height: 95vh;
}
#source-display {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
2016-08-28 01:46:10 +00:00
}