blob: a940502d4e82513ce8b7c54aec93015941174903 (
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
68
69
70
71
72
|
.tagsView-container {
display: flex;
flex-wrap: wrap;
flex-direction: column;
width: 100%;
position: relative;
.tagsView-content {
width: 100%;
height: inherit;
position: absolute;
.tagsView-list {
display: flex;
flex-wrap: wrap;
height: 100%;
.iconButton-container {
min-height: unset !important;
}
}
.tagsView-editing-box {
pointer-events: all;
}
}
}
.tagItem {
padding: 1px 5px;
background-color: lightblue;
border: 1px solid black;
border-radius: 5px;
white-space: nowrap;
display: flex;
align-items: center;
}
.faceItem {
background-color: lightGreen;
}
.tagsView-suggestions-box {
display: flex;
flex-wrap: wrap;
margin: auto;
align-self: center;
width: 90%;
border: 1px solid black;
border-radius: 2px;
margin-top: 8px;
}
.tagsView-suggestion {
cursor: pointer;
padding: 1px 1px;
margin: 2px 2px;
background-color: lightblue;
border: 1px solid black;
border-radius: 5px;
white-space: nowrap;
display: flex;
align-items: center;
}
.tagsView-input-box {
margin: auto;
align-self: center;
width: 90%;
color: black;
}
.tagsView-buttons {
margin-left: auto;
width: 10%;
}
|