91 lines
1.6 KiB
CSS
91 lines
1.6 KiB
CSS
.editor-toolbar a {
|
|
display: inline-block;
|
|
text-align: center;
|
|
text-decoration: none !important;
|
|
color: var(--pico-primary) !important;
|
|
width: 30px;
|
|
height: 30px;
|
|
margin: 0;
|
|
border: 1px solid transparent;
|
|
border-radius: 3px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
|
|
.editor-toolbar.fullscreen {
|
|
width: 100%;
|
|
height: 50px;
|
|
overflow-x: auto;
|
|
overflow-y: hidden;
|
|
white-space: nowrap;
|
|
padding-top: 10px;
|
|
padding-bottom: 10px;
|
|
box-sizing: border-box;
|
|
background: var(--pico-background-color);
|
|
border: 0;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
opacity: 1;
|
|
z-index: 9;
|
|
}
|
|
|
|
.CodeMirror {
|
|
background-color: var(--pico-background-color);
|
|
color: var(--pico-color) !important;
|
|
|
|
}
|
|
|
|
|
|
.editor-preview-active-side {
|
|
background: var(--pico-background-color);
|
|
color: var(--pico-color) !important;
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 50%;
|
|
top: 50px;
|
|
right: 0;
|
|
z-index: 9;
|
|
border: 1px solid #ddd;
|
|
}
|
|
|
|
|
|
.CodeMirror .CodeMirror-code .cm-tag {
|
|
color: #63a35c;
|
|
}
|
|
|
|
.CodeMirror .CodeMirror-code .cm-attribute {
|
|
color: #795da3;
|
|
}
|
|
|
|
.CodeMirror .CodeMirror-code .cm-string {
|
|
color: #183691;
|
|
}
|
|
|
|
.CodeMirror .CodeMirror-selected {
|
|
background: var(--pico-text-selection-color) !important;
|
|
}
|
|
|
|
|
|
.CodeMirror .CodeMirror-code .cm-link {
|
|
color: #7f8c8d;
|
|
}
|
|
|
|
.CodeMirror .CodeMirror-code .cm-url {
|
|
color: #aab2b3;
|
|
}
|
|
|
|
.CodeMirror-cursor {
|
|
border-left-color: var(--pico-primary);
|
|
}
|
|
|
|
.editor-statusbar .lines:before {
|
|
color: var(--pico-primary) !important;
|
|
content: 'lignes: '
|
|
}
|
|
|
|
.editor-statusbar .words:before {
|
|
color: var(--pico-primary) !important;
|
|
content: 'Mots: '
|
|
}
|