forked from y-scope/yscope-log-viewer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
27 lines (23 loc) · 758 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
.log-level-select {
/* JoyUI has a rounding issue when calculating the listbox position, causing it to misjudge if
the listbox will fit on the right side. To mitigate this, we shift the select box 1px to the
left. */
margin-right: 1px;
}
.log-level-select-render-value-box {
display: flex;
gap: 2px;
}
.log-level-select-render-value-box-label {
/* Disable `Chip`'s background style. */
background-color: initial !important;
}
.log-level-select-listbox {
/* Disallow width auto-resizing with the `Select` button. */
max-width: 0;
}
.log-level-select-option-text-tooltip {
/* Disable pointer events to prevent tooltips from blocking interaction with underlying
elements. */
pointer-events: none;
}