forked from xdan/jodit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
57 lines (56 loc) · 1.14 KB
/
app.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
html {
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
body {
font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 16px;
-webkit-font-smoothing: antialiased;
text-rendering: optimizelegibility;
line-height: 1.5;
height: 100%;
margin: 0;
}
.jodit_wysiwyg{
color: #000;
padding: 10px;
overflow-x: auto;
color: #000;
padding: 10px;
min-height: 40px;
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.table, .p {
margin: 0 0 16px 0;
}
table {
margin-top: 10px;
margin-bottom: 10px;
}
. table tr {
user-select: none;
-o-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
}
. table td, . table th {
user-select: text;
-o-user-select: text;
-moz-user-select: text;
-khtml-user-select: text;
-webkit-user-select: text;
-ms-user-select: text;
}
. table th,. table td {
box-sizeing: border-box;
padding: 6px 5px;
vertical-align: top;
}
.table td, . table th {
border: 1px solid #ddd;
}