2018-02-28 23:51:33 +00:00
|
|
|
.codeMirrorContainer {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
overflow: hidden;
|
2018-03-04 19:07:01 +00:00
|
|
|
position: relative;
|
2018-03-04 23:09:06 +00:00
|
|
|
}
|
2018-02-28 23:51:33 +00:00
|
|
|
.CodeMirror {
|
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
|
box-sizing: border-box;
|
2018-03-04 23:09:06 +00:00
|
|
|
flex-grow: 1;
|
2018-02-28 23:51:33 +00:00
|
|
|
height: 100%;
|
|
|
|
|
width: 100%;
|
2018-03-04 23:09:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* For when panels are used */
|
|
|
|
|
.codeMirrorContainer > div:not(.CodeMirror) {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-05 16:25:45 +00:00
|
|
|
.cm-s-default .cm-comment { color: #777; }
|
|
|
|
|
.cm-staticext { color: #008; }
|
2018-03-05 18:05:26 +00:00
|
|
|
.cm-staticnetBlock { color: #800; }
|
|
|
|
|
.cm-staticnetAllow { color: #004f00; }
|
2018-03-06 20:47:40 +00:00
|
|
|
.cm-staticOpt { background-color: #ddd; font-weight: bold; }
|
2018-03-04 19:07:01 +00:00
|
|
|
|
|
|
|
|
.cm-search-widget {
|
|
|
|
|
align-items: center;
|
|
|
|
|
background-color: #eee;
|
|
|
|
|
display: flex;
|
2018-03-04 23:23:01 +00:00
|
|
|
flex-shrink: 0;
|
2018-03-04 19:07:01 +00:00
|
|
|
justify-content: center;
|
|
|
|
|
padding: 4px 8px;
|
|
|
|
|
/* position: absolute; */
|
|
|
|
|
right: 2em;
|
|
|
|
|
top: 0;
|
2018-03-04 22:13:27 +00:00
|
|
|
user-select: none;
|
|
|
|
|
-moz-user-select: none;
|
|
|
|
|
-webkit-user-select: none;
|
2018-03-04 19:07:01 +00:00
|
|
|
z-index: 1000;
|
|
|
|
|
}
|
2018-03-04 22:13:27 +00:00
|
|
|
.cm-search-widget .fa {
|
|
|
|
|
color: #888;
|
|
|
|
|
font-size: 140%;
|
|
|
|
|
}
|
2018-03-04 19:07:01 +00:00
|
|
|
.cm-search-widget > span {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
.cm-search-widget .cm-search-widget-count {
|
|
|
|
|
align-items: center;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
color: #888;
|
|
|
|
|
display: none;
|
|
|
|
|
margin-right: 4px;
|
2018-03-04 22:13:27 +00:00
|
|
|
pointer-events: none;
|
2018-03-04 19:07:01 +00:00
|
|
|
position: absolute;
|
|
|
|
|
right: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
}
|
|
|
|
|
.cm-search-widget[data-query] .cm-search-widget-count {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
2018-03-04 22:13:27 +00:00
|
|
|
.cm-search-widget .cm-search-widget-button:hover {
|
|
|
|
|
color: #000;
|
2018-03-04 19:07:01 +00:00
|
|
|
}
|