-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
80 lines (67 loc) · 1.22 KB
/
index.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#text-editor img{
max-width: 30vw;
max-height: 30vh;
}
.tse-text-editor {
min-height: 400px;
border: 1px solid black;
padding: 24px;
}
.tse-editor-toolbar {
display: flex;
flex-wrap: wrap;
padding: 5px;
}
.tse-toolbar-item {
background: #ffffff;
border: 0;
border-radius: 3px;
cursor: pointer;
margin-right: 7px;
min-width: 30px;
padding: 5px;
}
.tse-toolbar-item:hover,
.tse-toolbar-item.active {
background: #f0f0f0;
}
.tse-toolbar-separator {
border-left: solid 1px #e0e0e0;
margin-right: 7px;
}
.tse-toolbar-separator:last-child {
display: none;
}
.hidden {
visibility: hidden;
height: 0px;
width: 0px;
transform: 0.3s ease-in-out;
}
.tse-image-upload-popup {
position: absolute;
top: 50px;
left: 300px;
display: flex;
flex-direction: column;
border: 1px solid black;
border-radius: 4px;;
}
.tse-image-upload-popup button {
color: black;
background-color: white;
margin: 4px 0px;
border: none;
padding: 2px 0px;
border: 1px solid black;
border-radius: 4px;
}
.tse-image-upload-popup button:hover {
color: white;
background-color: black;
transition: all 0.2s ease-in-out;
}
.tse-image-upload-popup input {
color: black;
background-color: white;
}