-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyles.css
More file actions
71 lines (61 loc) · 1.63 KB
/
styles.css
File metadata and controls
71 lines (61 loc) · 1.63 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
div.editor_contenteditable {
background-color: white;
border: 1px solid #444;
}
div.editor_contenteditable_toolbar {
display: block;
}
div.editor_contenteditable_toolbar button {
padding: 1px;
padding: 3px;
}
div.editor_contenteditable_toolbar button img {
padding: 1px;
}
div.editor_contenteditable_toolbar button.contenteditable_strike_button,
div.editor_contenteditable_toolbar button.contenteditable_unorderedlist_button,
div.editor_contenteditable_toolbar button.contenteditable_clear_button,
div.editor_contenteditable_toolbar button.contenteditable_indent_button {
margin-right: 1em;
}
body.dir-rtl div.editor_contenteditable_toolbar button.contenteditable_strike_button,
body.dir-rtl div.editor_contenteditable_toolbar button.contenteditable_unorderedlist_button,
body.dir-rtl div.editor_contenteditable_toolbar button.contenteditable_clear_button,
body.dir-rtl div.editor_contenteditable_toolbar button.contenteditable_indent_button {
margin-right: 0px;
margin-left: 1em;
}
.contenteditable_hasmenu .icon {
width: 32px;
}
.editor_contenteditable img {
resize: both; overflow: auto;
}
.contenteditable_menuentry {
clear: left;
}
.contenteditable_menuentry img {
width: 16px;
height: 16px;
}
.contenteditable_menu {
min-width: 12em;
background: white;
padding: 1px;
}
.contenteditable_menu a {
color: black;
}
.contenteditable_menuentry {
border-bottom: 1px solid #eee;
padding: 2px;
}
.contenteditable_menuentry h1,
.contenteditable_menuentry h2,
.contenteditable_menuentry p {
margin: 4px;
}
.contenteditable_form label {
display: block;
margin: 5px;
}