forked from samwillis/pagedown-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Markdown.Editor.less
80 lines (65 loc) · 1.53 KB
/
Markdown.Editor.less
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
.wmd-panel {
width: 100%;
}
.wmd-input {
height: 300px;
width: 100%;
box-sizing: border-box;
-webkit-box-sizing:border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
}
.wmd-preview {
.well;
width: 100%;
box-sizing: border-box;
-webkit-box-sizing:border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
}
.wmd-panel .btn-toolbar {
margin-bottom: 0;
padding: 0;
width: 100%;
}
.icon-link,
.icon-blockquote,
.icon-code,
.icon-bullet-list,
.icon-list,
.icon-header,
.icon-hr-line,
.icon-undo {
background-image: url(Markdown.Editor.Icons.png);
}
.icon-link { background-position: 0 0; }
.icon-blockquote { background-position: -24px 0; }
.icon-code { background-position: -48px 0; }
.icon-bullet-list { background-position: -72px 0; }
.icon-list { background-position: -96px 0; }
.icon-header { background-position: -120px 0; }
.icon-hr-line { background-position: -144px 0; }
.icon-undo { background-position: -168px 0; }
.wmd-prompt-background
{
background-color: Black;
}
.wmd-prompt-dialog
{
border: 1px solid #999999;
background-color: #F5F5F5;
}
.wmd-prompt-dialog > div {
font-size: 0.8em;
font-family: arial, helvetica, sans-serif;
}
.wmd-prompt-dialog > form > input[type="text"] {
border: 1px solid #999999;
color: black;
}
.wmd-prompt-dialog > form > input[type="button"]{
border: 1px solid #888888;
font-family: trebuchet MS, helvetica, sans-serif;
font-size: 0.8em;
font-weight: bold;
}