-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathgrouping.css
More file actions
55 lines (48 loc) · 831 Bytes
/
grouping.css
File metadata and controls
55 lines (48 loc) · 831 Bytes
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
.grouping {
border-style: solid;
border-width: 2px;
box-sizing: border-box;
display: grid;
gap: inherit;
margin: 2px;
min-width: 0;
padding: 2px;
position: relative;
}
.grouping::after {
font-family: sans-serif;
font-size: smaller;
height: calc(1em + 2px);
padding: 2px 6px;
position: absolute;
top: 0;
}
.grouping--sender {
border-color: #e00;
}
.grouping--sender::after {
background-color: #e00;
color: white;
content: 'Sender';
right: -2px;
}
.grouping--status {
border-color: green;
}
.grouping--status::after {
background-color: green;
color: white;
content: 'Status';
left: -2px;
}
.grouping--part {
border-color: darkorange;
}
.grouping--part::after {
background-color: darkorange;
bottom: -2px;
color: white;
content: 'Part';
left: -2px;
top: unset;
}