-
Notifications
You must be signed in to change notification settings - Fork 37
/
MetaSection.css
64 lines (52 loc) · 1005 Bytes
/
MetaSection.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
.metaSectionRoot {
border-radius: var(--radius);
margin-bottom: 10px;
font-size: var(--font-size-small);
line-height: var(--line-height);
}
.metaSectionRootBGColor {
background-color: var(--color-fill);
}
.metaSectionContent {
margin-top: -0.5rem;
padding: 0.5rem 0 0.5rem 0.33rem;
color: var(--color-text);
}
.metaSectionContentBlock {
margin: 2px 0;
}
.metaSectionGroup {
margin-top: 10px;
}
.headerWrapper {
width: 100%;
display: flex;
align-items: center;
min-height: 24px;
}
.metaHeaderButton {
composes: interactionStyles from "../sharedStyles/interactionStyles.css";
flex-shrink: 0;
padding: 6px;
width: 100%;
background-color: transparent;
border: none;
}
.metaHeader {
display: flex;
justify-content: flex-start;
align-items: center;
width: 100%;
&:focus {
outline: none;
}
}
.metaHeaderLabel {
color: var(--color-text);
pointer-events: none;
user-select: none;
padding: 0 4px;
}
.metaSectionInline {
display: flex;
}