forked from codemirror/codemirror5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcminit.css
executable file
·92 lines (92 loc) · 2.4 KB
/
cminit.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
.cm-s-tomorrow-night-eighties .CodeMirror-cursor {
border-left: 0.15em solid #888 !important;
}
.cm-s-tomorrow-night-eighties .CodeMirror-overwrite div.CodeMirror-cursor {
border-bottom: 0.15em solid #888;
width: 0.7em;
border-left: 0 !important;
}
.cm-s-tomorrow-night-eighties .CodeMirror-selectedtext,
.cm-s-tomorrow-night-eighties .CodeMirror-activeline .CodeMirror-linenumber {
background: rgb(60,60,60);
}
.cm-s-tomorrow-night-eighties .CodeMirror-activeline-background {
background: transparent !important;
}
.cm-s-tomorrow-night-eighties .CodeMirror-linenumber {
color: #7c7c7c;
}
.cm-s-tomorrow-night-eighties .CodeMirror-gutters {
background: transparent !important;
}
.cm-s-tomorrow-night-eighties.CodeMirror {
background: rgb(25,25,25);
display: flex;
flex-direction: column;
letter-spacing: 0.015em;
}
.cm-s-tomorrow-night-eighties span.cm-searching {
background: #fbc862;
color: rgb(25,25,25);
}
.cm-s-tomorrow-night-eighties .CodeMirror-selectedtext.cm-searching {
background: #ccc;
}
.cm-s-tomorrow-night-eighties span.cm-error {
background: rgb(105,0,0);
color: inherit;
}
.cm-s-tomorrow-night-eighties .CodeMirror-dialog.CodeMirror-dialog-top {
background: black;
color: #ccc;
padding: 0.5em !important;
border-color: #ffcc66;
z-index: 10;
}
.cm-s-tomorrow-night-eighties .CodeMirror-dialog.CodeMirror-dialog-top * {
font-family: inherit !important;
font-size: inherit !important;
padding: 0.2em 0.5em;
}
.cm-s-tomorrow-night-eighties .CodeMirror-dialog.CodeMirror-dialog-top button{
color: black !important;
}
ul.codemirror-user-controll {
list-style: none;
margin: 0;
padding: 0;
background-color: rgb(73, 73, 73);
max-width: 100%;
/* margin-bottom: 0.5em; */
display: flex;
align-items: center;
flex-wrap: wrap;
z-index: 10;
position: relative;
}
ul.codemirror-user-controll li {
display: inline-block;
margin: 0;
}
ul.codemirror-user-controll li button,
ul.codemirror-user-controll li a[href] {
padding: 0.5em 0.8em;
background-color: transparent;
border: 0;
cursor: pointer;
font-family: inherit;
color: #CCC;
font-size: 1rem;
}
ul.codemirror-user-controll:after {
content: "";
display: table;
clear: both;
}
ul.codemirror-user-controll li:nth-child(3) {
flex-grow: 2;
}
ul.codemirror-user-controll li button:hover,
ul.codemirror-user-controll li a:hover {
background-color: #616161;
}