Skip to content

Commit 2119260

Browse files
hextrazaSebastian Benjaminbbimber
authored
Overflow fix (#324)
* MUI Paper overflow fix * Remove seperate overflow control from ExtendedVariantWidget * Consistent formatting --------- Co-authored-by: Sebastian Benjamin <sebastiancbenjamin@gmail.com> Co-authored-by: bbimber <bbimber@gmail.com>
1 parent b5a425e commit 2119260

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

jbrowse/src/client/JBrowse/Browser/plugins/ExtendedVariantPlugin/ExtendedVariantWidget/ExtendedVariantWidget.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ export default jbrowse => {
407407
feat["INFO"] = null
408408

409409
return (
410-
<Paper data-testid="extended-variant-widget" style={{height: '100vh', overflowY: 'scroll'}}>
410+
<Paper data-testid="extended-variant-widget">
411411
{message}
412412
<FeatureDetails
413413
feature={feat}
Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
/* This corrects a border that placed a small vertical line to the top-left of the search field */
22
fieldset.MuiOutlinedInput-notchedOutline > legend {
3-
border-style: none;
3+
border-style: none;
44
}
55

66
html {
7-
font-size: 16px !important;
7+
font-size: 16px !important;
88
}
99

1010
/* Increase font size for tooltips: */
1111
div[class^="makeStyles-tooltip-"] {
12-
font-size: 12px;
12+
font-size: 12px;
13+
}
14+
15+
.MuiDialog-paperScrollPaper {
16+
max-height: 95vh;
17+
overflow-y: scroll;
1318
}

0 commit comments

Comments
 (0)