generated from League-of-Foundry-Developers/FoundryVTT-Module-Template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyle.css
50 lines (49 loc) · 1.03 KB
/
style.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
fieldset.tagger {
margin: 5px 0;
flex: auto;
}
fieldset.tagger .tag-container {
display: flex;
flex-wrap: wrap;
}
fieldset.tagger .tag-container .tag {
padding: 5px 5px 5px 8px;
border: 1px solid rgb(155, 155, 155);
color: black;
margin: 3px 3px 3px 0;
display: flex;
align-items: center;
border-radius: 5px;
background: #eeede0;
}
fieldset.tagger .tag-container .tag.dropping {
background: #c6eaa7;
}
fieldset.tagger .tag-container .tag > * {
cursor: pointer;
}
fieldset.tagger .tag-container .tag span:hover {
color: #834100;
}
fieldset.tagger .tag-container .tag i {
font-size: 1rem;
padding: 0 5px;
}
fieldset.tagger .tag-container .tag i:hover {
color: #e30f0f;
}
fieldset.tagger .tag-container .tag:has(i:hover) {
background-color: #ffb6b6;
}
fieldset.tagger .tag-container .tag:has(span:hover) {
background-color: #fffdd4;
}
fieldset.tagger .form-group button {
flex: 0;
height: 28px;
width: 28px;
line-height: inherit;
font-size: 0.75rem;
margin-left: 10px;
}
/*# sourceMappingURL=style.css.map */