forked from y-scope/yscope-log-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
40 lines (33 loc) · 809 Bytes
/
index.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
.search-tab-container {
overflow-y: hidden;
display: flex;
flex-direction: column;
height: 100%;
}
.query-input-box-with-progress {
/* JoyUI has a rounding issue when calculating the Textarea width, causing it to overflow its
container. */
margin-right: 1px;
}
.query-input-box {
flex-direction: row !important;
border-radius: 0 !important;
}
.query-option-button {
font-family: Inter, sans-serif !important;
}
.query-input-box-textarea {
width: 0;
}
.query-input-box-end-decorator {
display: block !important;
margin-block-start: 0 !important;
}
.query-input-box-linear-progress {
/* stylelint-disable-next-line custom-property-pattern */
--LinearProgress-radius: 0 !important;
}
.query-results {
overflow-y: auto;
flex-grow: 1;
}