-
Notifications
You must be signed in to change notification settings - Fork 137
Expand file tree
/
Copy pathConsoleRoot.module.css
More file actions
91 lines (81 loc) · 1.62 KB
/
ConsoleRoot.module.css
File metadata and controls
91 lines (81 loc) · 1.62 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
.ConsoleRoot {
flex: 1 1 auto;
overflow: hidden;
border-bottom-left-radius: var(--radius-lg, 0.625rem);
border-bottom-right-radius: var(--radius-lg, 0.625rem);
background-color: var(--body-bgcolor);
word-break: break-all;
font-size: var(--font-size-regular);
}
.ConsoleRoot:focus {
outline: none;
}
.LeftPanel,
.RightPanel {
display: flex;
flex-direction: column;
}
.FilterPanel {
flex: 1;
display: flex;
flex-direction: row;
}
.FilterColumn {
flex: 1 1 auto;
overflow: auto;
height: 100%;
border-top: 1px solid var(--theme-splitter-color);
background-color: var(--tab-bgcolor-alt-subtle);
}
.PanelResizeHandleContainer {
height: 100%;
width: 1px;
overflow: visible;
position: relative;
}
/**
* The resize target for this component is too small!
* This CSS overflows to give it a larger hit area than the visible 1px wide border.
*/
.PanelResizeHandle {
position: absolute;
top: 0;
bottom: 0;
left: -0.125rem;
right: -0.125rem;
display: flex;
align-items: center;
justify-content: center;
z-index: 10;
}
.PanelResizeHandle::after {
content: " ";
display: block;
height: 100%;
width: 1px;
background-color: var(--theme-splitter-color);
}
.RightColumnActionsRow {
display: flex;
}
.MessageColumn {
flex: 1 1 auto;
overflow: hidden;
display: flex;
flex-direction: column;
border-top: 1px solid var(--theme-splitter-color);
background-color: var(--body-bgcolor);
}
.ConsoleSearchRow {
display: flex;
flex-direction: row;
align-items: center;
min-height: 1.75rem;
flex: 0 0 auto;
}
.Loader {
flex: 1;
padding: 0.5rem;
}
.ErrorBoundaryFallback {
}