-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmdeditor.css
More file actions
97 lines (88 loc) · 1.8 KB
/
mdeditor.css
File metadata and controls
97 lines (88 loc) · 1.8 KB
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
93
94
95
96
97
.md-editor-container {
width: 1024px;
height: 100%;
min-height: 768px;
position: relative;
}
.md-editor-container .col {
display: inline-block;
margin: 0;
padding: 10px 0 10px 0;
width: 492px;
position: relative;
vertical-align: top;
height: 100%;
min-height: 768px;
}
.md-editor-container .md, .md-editor-container .html {
height: 100%;
min-height: 768px;
}
.md-editor-container .md {
border: 1px solid #222;
}
.md-editor-container .md textarea {
min-height: 756px;
width: 482px;
border: 0;
}
.md-editor-container .md textarea:active, .md-editor-container .md textarea:focus {
border: 0;
outline: 0;
}
.md-editor-container .html {
overflow: auto;
border: 0;
border: 1px solid #222;
border-left: 0px solid;
z-index: 1;
}
.md-editor-container .html > * { margin-top: 0; }
.md-editor-container .collapse {
position: absolute;
height: 32px;
width: 32px;
top: 10px;
left: 950px;
z-index: 2;
text-align: center;
line-height: 32px;
vertical-align: middle;
border: 1px solid .md-editor-container .ddd;
background-color: rgba(256,256,256,0.7);
}
.md-editor-container .collapse:hover {
cursor: pointer;
border: 1px solid #222;
background-color: white;
}
.md-editor-container .controls {
position: absolute;
top: 10px;
right: 0;
width: 297px;
border: 1px solid #222;
border-radius: 3px;
height: 32px;
display: none;
background-color: white;
}
.md-editor-container .controls:hover {
display: block;
}
.md-editor-container .controls a.control {
display: inline-block;
width: 32px;
height: 32px;
line-height: 32px;
border-right: 1px solid #222;
margin: 0;
padding: 0;
text-align: center;
color: black;
text-decoration: none;
vertical-align: middle;
}
.md-editor-container .controls a.control:hover {
text-decoration: none;
}