-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstyles.scss
49 lines (41 loc) · 868 Bytes
/
styles.scss
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
.filter-bar {
display: inline-flex;
align-items: center;
gap: 4px;
flex-wrap: wrap;
border-radius: 4px;
.filter-block {
display: inline-flex;
align-items: center;
border-radius: 4px;
background-color: #e1edff;
color: #074382;
.filter-token, .del-btn {
padding: 4px;
position: relative;
&:first-of-type {
border-radius: 4px 0 0 4px;
}
&:last-of-type {
border-radius: 0 4px 4px 0;
}
&:not(:first-child) {
cursor: pointer;
}
&:not(:first-child):hover, &.is-editing {
background-color: #a4d1fc;
}
}
}
.filter-conjunction {
padding: 3px;
cursor: pointer;
position: relative;
background-color: transparent;
border: 1px solid #cdd3d5;
border-radius: 4px;
}
.filter-entry {
position: relative;
}
}