blob: 7918a59755bf6fc88629ddcccb425b9b5a4d2d44 (
plain) (
blame)
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
|
body {
background-color: black;
color: white;
}
#document-add {
background-image: url('static/document-add.svg');
border: 0;
width: 30px;
height: 30px;
cursor: pointer;
}
.chit {
border: 1px solid black;
position: absolute;
}
.edit {
position: absolute;
background-image: url('static/edit.svg');
background-color: rgba(0, 0, 0, 0);
border: 0;
cursor: pointer;
height: 25px;
width: 25px;
}
.resize {
position: absolute;
background-image: url('static/resize.svg');
background-color: rgba(0, 0, 0, 0);
cursor: pointer;
height: 25px;
width: 25px;
bottom: 0;
right: 0;
}
.delete {
position: absolute;
background-image: url('static/x.svg');
background-color: rgba(0, 0, 0, 0);
cursor: pointer;
height: 25px;
width: 25px;
top: 0;
right: 0;
}
#tinymce {
display: none;
}
.tinymce-footer {
height: 40px;
}
#wysiwyg {
position: absolute;
top: 10%;
left: 17%;
width: 70vw;
height: 50vh;
}
#tfp {
height: 26px;
line-height: 26px;
}
#save {
background-image: url('static/save.svg');
border: 0;
width: 24px;
height: 24px;
cursor: pointer;
}
#cancel {
background-image: url('static/x.svg');
border: 0;
width: 24px;
height: 24px;
cursor: pointer;
}
|