blob: fa663c7bee6ada9e02c8f635f2771a0c9bd06146 (
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
|
/* Annotation form */
.annotationForm {
width: 401px;
padding: 0.5rem;
position: absolute;
left: 0.25rem;
background: #448;
box-shadow: 0 0 2px #000, 0 0 4px #000;
z-index: 10;
}
.annotationForm textarea {
width: 100%;
}
.annotationForm .row {
justify-content: space-between;
align-items: center;
}
.annotationForm .row > div {
display: flex;
align-items: center;
}
.annotationForm .buttons {
margin-bottom: 0.5rem;
}
.annotationForm .ts {
color: #fff;
}
.annotationForm .select.media_id {
width: 100%;
margin-right: 0;
}
.annotationForm div.textarea {
margin-bottom: 0.5rem;
}
.annotationForm img {
max-width: 100%;
max-height: 6rem;
}
.annotationForm .options label span:first-child {
display: inline-block;
width: 6rem;
}
.annotationForm .options .description {
font-size: 0.75rem;
margin-top: 0.25rem;
margin-bottom: 0.5rem;
}
.annotationForm .color input[type="text"].number {
width: 8rem;
}
.annotationForm .color input[type="text"] {
width: 8rem;
}
.annotationForm .color input[type="color"] {
background: transparent;
border: 0;
height: 1.7rem;
padding: 0;
margin: 0 0.5rem 0 0;
width: 1.4rem;
}
.annotationForm .checkbox {
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}
|