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
| .buttons {
| margin: 10px 0;
| display: flex;
| justify-content: space-between;
| align-items: center;
| }
|
| .skipped {
| color: var(--color-negative-content);
| min-width: 2em;
| }
|
| .annotationcard {
| display: flex;
| width: 100%;
| justify-content: space-between;
| align-items: center;
|
| & > div:first-child {
| flex-grow: 1;
| }
| }
|
| .annotation {
| padding: 1em !important;
| cursor: pointer;
|
| &_selected {
| background: rgb(0 0 0 / 5%);
| }
| }
|
| .title {
| display: flex;
| align-items: center;
| color: var(--primary_link);
| font-weight: bold;
|
| h3 {
| margin: 0;
| }
| }
|
| .titlespace {
| justify-content: space-between;
| }
|
| .itembtns {
| display: flex;
| justify-content: space-between;
| width: 100%;
| }
|
| .draftbtn {
| padding: 0;
| border: 0;
| vertical-align: -0.5px;
| height: auto;
| }
|
|