forked from facebook/react
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathshared.css
More file actions
105 lines (91 loc) · 1.96 KB
/
shared.css
File metadata and controls
105 lines (91 loc) · 1.96 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
.GitHubLinkRow {
flex: 0 0 auto;
display: flex;
align-items: center;
text-overflow: ellipsis;
white-space: nowrap;
overflow: auto;
padding: 0.25rem 0.5rem;
background: var(--color-console-warning-background);
color: var(--color-text);
border-bottom: 1px solid var(--color-console-warning-border);
border-top: 1px solid var(--color-console-warning-border);
}
.WorkplaceGroupRow {
flex: 0 0 auto;
display: flex;
align-items: center;
text-overflow: ellipsis;
white-space: nowrap;
overflow: auto;
padding: 0.25rem 0.5rem;
background: var(--color-background-hover);
border-bottom: 1px solid var(--color-border);
}
.ErrorBoundary {
height: 100%;
width: 100%;
background-color: var(--color-background);
display: flex;
flex-direction: column;
}
.ErrorInfo {
padding: 0.5rem;
overflow: auto;
}
.HeaderRow {
display: flex;
flex-direction: row;
font-size: var(--font-size-sans-large);
font-weight: bold;
color: var(--color-error-text);
}
.Header {
flex: 1 1 auto;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
min-width: 0;
}
.Stack {
margin-top: 0.5rem;
white-space: pre-wrap;
font-family: var(--font-family-monospace);
font-size: var(--font-size-monospace-normal);
-webkit-font-smoothing: initial;
background-color: var(--color-error-background);
border: 1px solid var(--color-error-border);
color: var(--color-error-text);
border-radius: 0.25rem;
padding: 0.5rem;
}
.LoadingIcon {
margin-right: 0.25rem;
}
.ReportIcon {
margin-right: 0.25rem;
}
.ReportLink {
color: var(--color-link);
}
.FacebookOnly {
margin-left: 0.25rem;
}
.ReproSteps {
margin-left: 0.25rem;
color: var(--color-console-warning-text);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
min-width: 0;
}
.UpdateExistingIssuePrompt {
margin-right: 0.25rem;
color: var(--color-console-warning-text);
}
.CloseButton {
font-weight: bold;
}
.CloseButtonIcon {
margin-left: 0.25rem;
}