File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ class BaseSequenceBarPlot extends Component {
4444 return (
4545 < div
4646 id = { div_id }
47+ className = "alignmentjs-container"
4748 style = { container_style }
4849 onWheel = { e => this . handleWheel ( e ) }
4950 >
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ class SiteAxis extends Component {
4646 return (
4747 < div
4848 id = "alignmentjs-axis-div"
49+ className = "alignmentjs-container"
4950 style = { {
5051 overflowY : "scroll" ,
5152 overflowX : "hidden" ,
Original file line number Diff line number Diff line change 11@import " ~bootstrap/scss/bootstrap.scss" ;
22@import " ~react-phylotree/styles/phylotree.css" ;
33
4+ // https://www.w3schools.com/howto/howto_css_hide_scrollbars.asp
5+ /* Hide scrollbar for IE, Edge and Firefox */
46div .alignmentjs-container {
57 float : left ;
68 padding : 0 ;
79 margin : 0 ;
10+ -ms-overflow-style : none ; /* IE and Edge */
11+ scrollbar-width : none ; /* Firefox */
12+ }
13+
14+ /* Hide scrollbar for Chrome, Safari and Opera */
15+ div .alignmentjs-container ::-webkit-scrollbar {
16+ display : none ;
817}
918
1019svg #alignmentjs-labels > text {
You can’t perform that action at this time.
0 commit comments