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

138 lines
1.9 KiB
SCSS
Raw Normal View History

2016-08-28 01:46:10 +00:00
.editor-toolbar {
z-index: 2;
2016-09-11 02:53:21 +00:00
background-color: rgba(0,0,0,0.65);
border: none;
border-top-left-radius: 0;
border-top-right-radius: 0;
2016-09-11 02:53:21 +00:00
opacity: 1;
position: fixed;
top: 52px;
left: 0;
width: 100%;
&:hover {
opacity: 1;
}
2016-09-11 02:53:21 +00:00
a {
color: #FFF !important;
&.active, &:hover {
background-color: rgba(0,0,0,0.5);
border-color: #888;
}
}
i.separator {
margin-top: 5px;
border-left-color: #000;
border-right-color: #AAA;
}
}
.editor-modal-load {
display: flex;
align-items: center;
opacity: 0;
transition: opacity .5s ease;
span {
font-size: 12px;
color: $blue;
}
i {
margin-left: 10px;
width: 32px;
height: 32px;
display: flex;
justify-content: center;
align-items: center;
&::before {
content: " ";
@include spinner($blue,0.5s,24px);
}
}
&.is-active {
opacity: 1;
}
}
.CodeMirror {
border-left: none;
border-right: none;
2016-09-11 02:53:21 +00:00
padding-top: 52px;
}
2016-09-11 02:53:21 +00:00
.CodeMirror .CodeMirror-code .cm-url {
color: #00ACC1;
}
.CodeMirror .CodeMirror-code .cm-header-1 {
color: #635c8c;
font-size: 2em;
font-weight: 400;
}
.CodeMirror .CodeMirror-code .cm-header-2 {
color: #222324;
font-size: 1.75em;
font-weight: 300;
}
.CodeMirror .CodeMirror-code .cm-header-3 {
color: #222324;
font-size: 1.5em;
font-weight: 300;
2016-08-28 01:46:10 +00:00
}
.editor-toolbar .fa {
font-size: 14px;
}
.ace-container {
position: relative;
2016-09-11 02:53:21 +00:00
}
#page-type-source .ace-container {
min-height: 95vh;
}
2016-09-11 02:53:21 +00:00
#modal-editor-codeblock .ace-container {
height: 400px;
}
#source-display, #codeblock-editor {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
2016-09-11 02:53:21 +00:00
}
.modallayer {
position: fixed;
top: 100px;
width: 100%;
background-color: rgba(255,255,255,0.95);
border-bottom: 1px solid $grey-light;
z-index: 6;
padding: 20px;
border-bottom: 1px solid #CCC;
box-shadow: 0 2px 3px rgba(17,17,17,.1);
display: none;
> h3, .column > h3 {
color: $grey-dark;
font-size: 24px;
font-weight: 300;
}
}
.modallayer-content {
2016-08-28 01:46:10 +00:00
}