2
0
mirror of https://github.com/Ionaru/easy-markdown-editor synced 2025-07-19 07:54:28 -06:00

479 lines
7.0 KiB
CSS
Raw Normal View History

.CodeMirror {
height: auto;
min-height: 300px;
border: 1px solid #ddd;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
2015-06-22 21:41:24 -05:00
padding: 10px;
}
2015-06-22 21:41:24 -05:00
2015-06-22 17:34:47 -05:00
.CodeMirror-scroll {
2015-06-22 21:41:24 -05:00
min-height: 300px
2015-06-22 17:34:47 -05:00
}
2015-06-22 21:41:24 -05:00
:-webkit-full-screen {
background: #f9f9f5;
padding: .5em 1em;
width: 100%;
2015-06-22 21:41:24 -05:00
height: 100%;
2015-06-22 15:42:58 -05:00
}
2015-06-22 21:41:24 -05:00
:-moz-full-screen {
padding: .5em 1em;
background: #f9f9f5;
width: 100%;
2015-06-22 21:41:24 -05:00
height: 100%;
2015-06-22 15:42:58 -05:00
}
2015-06-22 21:41:24 -05:00
.editor-wrapper {
font: 16px/1.62 "Helvetica Neue", "Xin Gothic", "Hiragino Sans GB", "WenQuanYi Micro Hei", "Microsoft YaHei", sans-serif;
2015-06-22 21:41:24 -05:00
color: #2c3e50;
2015-06-22 16:50:52 -05:00
}
2015-06-22 21:41:24 -05:00
.editor-wrapper input.title {
font: 18px "Helvetica Neue", "Xin Gothic", "Hiragino Sans GB", "WenQuanYi Micro Hei", "Microsoft YaHei", sans-serif;
background: 0 0;
padding: 4px;
width: 100%;
border: none;
outline: 0;
2015-06-22 21:41:24 -05:00
opacity: .6;
}
2015-06-22 21:41:24 -05:00
.editor-toolbar {
position: relative;
opacity: .6;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
padding: 0 10px;
border-top: 1px solid #bbb;
border-left: 1px solid #bbb;
border-right: 1px solid #bbb;
border-top-left-radius: 4px;
2015-06-22 21:41:24 -05:00
border-top-right-radius: 4px;
}
2015-06-22 21:41:24 -05:00
.editor-toolbar:after, .editor-toolbar:before {
display: block;
content: ' ';
2015-06-22 21:41:24 -05:00
height: 1px;
2015-06-22 15:42:58 -05:00
}
2015-06-22 21:41:24 -05:00
.editor-toolbar:before {
margin-bottom: 8px
}
2015-06-22 21:41:24 -05:00
.editor-toolbar:after {
margin-top: 8px
}
2015-06-22 21:41:24 -05:00
.editor-toolbar:hover, .editor-wrapper input.title:focus, .editor-wrapper input.title:hover {
opacity: .8
2015-06-22 15:42:58 -05:00
}
2015-06-22 21:41:24 -05:00
.editor-toolbar a {
display: inline-block;
text-align: center;
text-decoration: none!important;
color: #2c3e50!important;
width: 30px;
height: 30px;
margin: 0;
border: 1px solid transparent;
border-radius: 3px;
2015-06-22 21:41:24 -05:00
cursor: pointer;
2015-06-22 15:42:58 -05:00
}
2015-06-22 21:41:24 -05:00
.editor-toolbar a.active, .editor-toolbar a:hover {
background: #fcfcfc;
2015-06-22 21:41:24 -05:00
border-color: #95a5a6;
2015-06-22 15:42:58 -05:00
}
2015-06-22 21:41:24 -05:00
.editor-toolbar a:before {
line-height: 30px
2015-06-22 15:42:58 -05:00
}
2015-06-22 21:41:24 -05:00
.editor-toolbar i.separator {
display: inline-block;
width: 0;
border-left: 1px solid #d9d9d9;
border-right: 1px solid #fff;
color: transparent;
text-indent: -10px;
2015-06-22 21:41:24 -05:00
margin: 0 6px;
}
2015-06-22 21:41:24 -05:00
.editor-toolbar a.icon-fullscreen {
position: absolute;
2015-06-22 21:41:24 -05:00
right: 10px;
}
2015-06-22 21:41:24 -05:00
.editor-toolbar.disabled-for-preview a:not(.fa-eye) {
pointer-events: none;
background: #fff;
border: none;
2015-06-22 20:18:07 -05:00
}
2015-06-22 21:41:24 -05:00
.editor-statusbar {
padding: 8px 10px;
font-size: 12px;
color: #959694;
2015-06-22 21:41:24 -05:00
text-align: right;
}
2015-06-22 21:41:24 -05:00
.editor-statusbar span {
display: inline-block;
min-width: 4em;
2015-06-22 21:41:24 -05:00
margin-left: 1em;
2015-06-19 15:09:28 -05:00
}
2015-06-22 21:41:24 -05:00
.editor-statusbar .lines:before {
content: 'lines: '
2015-06-19 15:09:28 -05:00
}
2015-06-22 21:41:24 -05:00
.editor-statusbar .words:before {
content: 'words: '
2015-06-19 15:09:28 -05:00
}
2015-06-22 21:41:24 -05:00
.editor-preview {
padding: 10px;
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
2015-06-22 20:18:07 -05:00
background: #fafafa;
z-index: 9999;
overflow: auto;
2015-06-22 21:41:24 -05:00
display: none;
2015-06-19 15:09:28 -05:00
}
2015-06-22 21:41:24 -05:00
.editor-preview-active {
display: block
2015-06-22 16:50:52 -05:00
}
2015-06-22 21:41:24 -05:00
.editor-preview>p {
margin-top: 0
2015-06-22 16:50:52 -05:00
}
2015-06-22 21:41:24 -05:00
.editor-preview pre {
background: #eee;
2015-06-22 21:41:24 -05:00
margin-bottom: 10px;
}
.editor-preview table td, table th {
border: 1px solid #ddd;
padding: 5px;
2015-06-22 16:50:52 -05:00
}
2015-06-22 21:41:24 -05:00
.CodeMirror-scroll {
overflow: auto
2015-06-22 16:50:52 -05:00
}
2015-06-22 21:41:24 -05:00
.CodeMirror-lines {
padding: 4px 0
2015-06-22 16:50:52 -05:00
}
2015-06-22 21:41:24 -05:00
.CodeMirror pre {
padding: 0 4px
2015-06-22 16:50:52 -05:00
}
2015-06-22 21:41:24 -05:00
.CodeMirror-scrollbar-filler {
background-color: #fff
2015-06-22 16:50:52 -05:00
}
2015-06-22 21:41:24 -05:00
.CodeMirror div.CodeMirror-cursor {
border-left: 1px solid #000;
2015-06-22 21:41:24 -05:00
z-index: 3;
}
2015-06-22 21:41:24 -05:00
.CodeMirror div.CodeMirror-secondarycursor {
border-left: 1px solid silver
}
2015-06-22 21:41:24 -05:00
.CodeMirror.cm-keymap-fat-cursor div.CodeMirror-cursor {
width: auto;
border: 0;
background: #7e7;
2015-06-22 21:41:24 -05:00
z-index: 1;
2015-06-22 16:50:52 -05:00
}
2015-06-22 21:41:24 -05:00
.cm-s-paper .cm-keyword {
color: #555
2015-06-22 16:50:52 -05:00
}
2015-06-22 21:41:24 -05:00
.cm-s-paper .cm-atom, .cm-s-paper .cm-number {
color: #7f8c8d
2015-06-22 16:50:52 -05:00
}
2015-06-22 21:41:24 -05:00
.cm-s-paper .cm-def {
color: #00f
2015-06-22 16:50:52 -05:00
}
2015-06-22 21:41:24 -05:00
.cm-s-paper .cm-variable {
color: #000
2015-06-22 16:50:52 -05:00
}
2015-06-22 21:41:24 -05:00
.cm-s-paper .cm-variable-2 {
color: #555
2015-06-22 16:50:52 -05:00
}
2015-06-22 21:41:24 -05:00
.cm-s-paper .cm-variable-3 {
color: #085
2015-06-22 16:50:52 -05:00
}
2015-06-22 21:41:24 -05:00
.cm-s-paper .cm-operator, .cm-s-paper .cm-property {
color: #000
2015-06-22 16:50:52 -05:00
}
2015-06-22 21:41:24 -05:00
.cm-s-paper .cm-comment {
color: #959595
2015-06-22 16:50:52 -05:00
}
2015-06-22 21:41:24 -05:00
.cm-s-paper .cm-string {
color: #7f8c8d
}
2015-06-22 21:41:24 -05:00
.cm-s-paper .cm-string-2 {
color: #f50
}
2015-06-22 21:41:24 -05:00
.cm-s-paper .cm-meta {
color: #555
}
2015-06-22 21:41:24 -05:00
.cm-s-paper .cm-error {
color: red
}
2015-06-22 21:41:24 -05:00
.cm-s-paper .cm-builtin, .cm-s-paper .cm-qualifier {
color: #555
}
2015-06-22 21:41:24 -05:00
.cm-s-paper .cm-bracket {
color: #997
}
2015-06-22 21:41:24 -05:00
.cm-s-paper .cm-attribute, .cm-s-paper .cm-tag {
color: #7f8c8d
}
2015-06-22 21:41:24 -05:00
.cm-s-paper .cm-header {
color: #000
}
2015-06-22 21:41:24 -05:00
.cm-s-paper .cm-quote {
color: #888
}
2015-06-22 21:41:24 -05:00
.cm-s-paper .cm-hr {
color: #999
}
2015-06-22 21:41:24 -05:00
.cm-s-paper .cm-link {
color: #7f8c8d
}
2015-06-22 21:41:24 -05:00
.cm-negative {
color: #d44
}
2015-06-22 21:41:24 -05:00
.cm-positive {
color: #292
}
2015-06-22 21:41:24 -05:00
.cm-header, .cm-strong {
font-weight: 700
}
2015-06-22 21:41:24 -05:00
.cm-em {
font-style: italic
}
2015-06-22 21:41:24 -05:00
.cm-link {
text-decoration: underline
}
2015-06-22 21:41:24 -05:00
.cm-invalidchar {
color: red
}
2015-06-22 21:41:24 -05:00
div.CodeMirror span.CodeMirror-matchingbracket {
color: #0f0
}
2015-06-22 21:41:24 -05:00
div.CodeMirror span.CodeMirror-nonmatchingbracket {
color: #f22
}
2015-06-22 21:41:24 -05:00
.CodeMirror {
position: relative;
2015-06-22 21:41:24 -05:00
overflow: hidden;
}
2015-06-22 21:41:24 -05:00
.CodeMirror-scroll {
margin-bottom: -30px;
margin-right: -30px;
padding-bottom: 30px;
padding-right: 30px;
height: 100%;
2015-06-22 17:34:47 -05:00
min-height: 300px;
outline: 0;
2015-06-22 21:41:24 -05:00
position: relative;
}
2015-06-22 21:41:24 -05:00
.CodeMirror-sizer {
position: relative
}
2015-06-22 21:41:24 -05:00
.CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-vscrollbar {
position: absolute;
z-index: 6;
2015-06-22 21:41:24 -05:00
display: none;
}
2015-06-22 21:41:24 -05:00
.CodeMirror-vscrollbar {
right: 0;
top: 0;
overflow-x: hidden;
2015-06-22 21:41:24 -05:00
overflow-y: scroll;
}
2015-06-22 21:41:24 -05:00
.CodeMirror-hscrollbar {
bottom: 0;
left: 0;
overflow-y: hidden;
2015-06-22 21:41:24 -05:00
overflow-x: scroll;
}
2015-06-22 21:41:24 -05:00
.CodeMirror-scrollbar-filler {
right: 0;
bottom: 0;
2015-06-22 21:41:24 -05:00
z-index: 6;
}
2015-06-22 21:41:24 -05:00
.CodeMirror-lines {
cursor: text
}
2015-06-22 21:41:24 -05:00
.CodeMirror pre {
-moz-border-radius: 0;
-webkit-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
border-width: 0;
background: 0 0;
font-family: inherit;
font-size: inherit;
margin: 0;
2015-06-26 14:07:31 -05:00
white-space: pre;
word-wrap: normal;
line-height: inherit;
color: inherit;
z-index: 2;
position: relative;
2015-06-22 21:41:24 -05:00
overflow: visible;
}
2015-06-22 21:41:24 -05:00
.CodeMirror-wrap pre {
word-wrap: break-word;
white-space: pre-wrap;
2015-06-22 21:41:24 -05:00
word-break: normal;
}
2015-06-22 21:41:24 -05:00
.CodeMirror-linebackground {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
2015-06-22 21:41:24 -05:00
z-index: 0;
}
2015-06-22 21:41:24 -05:00
.CodeMirror-linewidget {
position: relative;
z-index: 2;
2015-06-22 21:41:24 -05:00
overflow: auto;
}
2015-06-22 21:41:24 -05:00
.CodeMirror-widget {
display: inline-block
}
2015-06-22 21:41:24 -05:00
.CodeMirror-wrap .CodeMirror-scroll {
overflow-x: hidden
}
2015-06-22 21:41:24 -05:00
.CodeMirror-measure {
position: absolute;
2015-06-22 15:42:58 -05:00
width: 100%;
height: 0;
overflow: hidden;
2015-06-22 21:41:24 -05:00
visibility: hidden;
2015-06-19 15:09:28 -05:00
}
2015-06-22 21:41:24 -05:00
.CodeMirror-measure pre {
position: static
2015-06-19 15:09:28 -05:00
}
2015-06-22 21:41:24 -05:00
.CodeMirror div.CodeMirror-cursor {
position: absolute;
visibility: hidden;
border-right: none;
2015-06-22 21:41:24 -05:00
width: 0;
2015-06-19 15:09:28 -05:00
}
2015-06-22 21:41:24 -05:00
.CodeMirror-focused div.CodeMirror-cursor {
visibility: visible
2015-06-19 15:09:28 -05:00
}
2015-06-22 21:41:24 -05:00
.CodeMirror-selected {
background: #d9d9d9
2015-06-19 15:09:28 -05:00
}
2015-06-22 21:41:24 -05:00
.CodeMirror-focused .CodeMirror-selected {
background: #BDC3C7
2015-06-22 15:42:58 -05:00
}
2015-06-22 21:41:24 -05:00
.cm-searching {
background: #ffa;
2015-06-22 21:41:24 -05:00
background: rgba(255, 255, 0, .4);
2015-06-19 15:09:28 -05:00
}
2015-06-22 21:41:24 -05:00
@media print {
.CodeMirror div.CodeMirror-cursor {
visibility: hidden
2015-06-22 15:42:58 -05:00
}
}
2015-06-22 21:41:24 -05:00
.CodeMirror .CodeMirror-code .cm-header-1 {
font-size: 200%;
2015-06-22 21:41:24 -05:00
line-height: 200%;
2015-06-22 16:50:52 -05:00
}
2015-06-22 21:41:24 -05:00
.CodeMirror .CodeMirror-code .cm-header-2 {
font-size: 160%;
2015-06-22 21:41:24 -05:00
line-height: 160%;
}
2015-06-22 21:41:24 -05:00
.CodeMirror .CodeMirror-code .cm-header-3 {
font-size: 125%;
2015-06-22 21:41:24 -05:00
line-height: 125%;
}
2015-06-22 21:41:24 -05:00
.CodeMirror .CodeMirror-code .cm-header-4 {
font-size: 110%;
2015-06-22 21:41:24 -05:00
line-height: 110%;
}
2015-06-22 21:41:24 -05:00
.CodeMirror .CodeMirror-code .cm-comment {
2015-07-14 12:03:33 -05:00
background: rgba(0, 0, 0, .05);
2015-06-22 21:41:24 -05:00
border-radius: 2px;
2015-07-14 16:07:56 -05:00
}
.CodeMirror .CodeMirror-code .cm-strikethrough {
text-decoration: line-through;
2015-06-19 15:09:28 -05:00
}