blob: d1a0ebeedaf6aa77b8f1068fed6a10d8c9fd6f48 (
plain)
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
|
.ProseMirror-menubar {
border-top-left-radius: inherit;
border-top-right-radius: inherit;
color: #666;
padding: 1px 6px;
border-bottom: 1px solid silver;
background: white;
z-index: 10;
-moz-box-sizing: border-box;
box-sizing: border-box;
overflow: visible;
}
.ProseMirror-menubar.scrolling {
top: 47px;
}
.ProseMirror-menuitem {
display: inline-block;
font-size: 1.2em;
text-align: center;
min-width: 30px;
line-height: 30px;
box-sizing: border-box;
margin: 1px;
border-width: 1px;
border-style: solid;
border-color: white;
}
.ProseMirror-menuitem:hover {
border-radius: 5px;
background: #fcfcfc;
border-color: #95a5a6;
border-width: 1px;
border-style: solid;
box-sizing: border-box;
}
.ProseMirror-icon {
line-height: inherit;
vertical-align: middle;
}
.ProseMirror-menubar .fa-header-x:after {
font-family: Arial, Helvetica, sans-serif;
font-size: 65%;
vertical-align: text-bottom;
position: relative;
top: 2px;
}
.fa-header-1:after {
content: "1";
}
.fa-header-2:after {
content: "2";
}
.fa-header-3:after {
content: "3";
}
.forceHide {
display:none !important;
}
|