Commit 4c0353d 1 parent 8dc8a07 commit 4c0353d Copy full SHA for 4c0353d
File tree 3 files changed +11
-0
lines changed
3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ class BaseSequenceBarPlot extends Component {
44
44
return (
45
45
< div
46
46
id = { div_id }
47
+ className = "alignmentjs-container"
47
48
style = { container_style }
48
49
onWheel = { e => this . handleWheel ( e ) }
49
50
>
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ class SiteAxis extends Component {
46
46
return (
47
47
< div
48
48
id = "alignmentjs-axis-div"
49
+ className = "alignmentjs-container"
49
50
style = { {
50
51
overflowY : "scroll" ,
51
52
overflowX : "hidden" ,
Original file line number Diff line number Diff line change 1
1
@import " ~bootstrap/scss/bootstrap.scss" ;
2
2
@import " ~react-phylotree/styles/phylotree.css" ;
3
3
4
+ // https://www.w3schools.com/howto/howto_css_hide_scrollbars.asp
5
+ /* Hide scrollbar for IE, Edge and Firefox */
4
6
div .alignmentjs-container {
5
7
float : left ;
6
8
padding : 0 ;
7
9
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 ;
8
17
}
9
18
10
19
svg #alignmentjs-labels > text {
You can’t perform that action at this time.
0 commit comments