higlass 1.11.11 → 1.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -10
- package/app/scripts/{AddTrackDialog.js → AddTrackDialog.jsx} +27 -26
- package/app/scripts/{AddTrackPositionMenu.js → AddTrackPositionMenu.jsx} +18 -15
- package/app/scripts/{Autocomplete.js → Autocomplete.jsx} +1 -0
- package/app/scripts/{Button.js → Button.jsx} +7 -6
- package/app/scripts/CenterTiledPlot.jsx +7 -0
- package/app/scripts/{CenterTrack.js → CenterTrack.jsx} +42 -41
- package/app/scripts/ChromosomeGrid.js +8 -16
- package/app/scripts/CloseTrackMenu.jsx +27 -0
- package/app/scripts/CombinedTrack.js +16 -1
- package/app/scripts/{ConfigTrackMenu.js → ConfigTrackMenu.jsx} +12 -12
- package/app/scripts/{ConfigViewMenu.js → ConfigViewMenu.jsx} +35 -36
- package/app/scripts/{ConfigureSeriesMenu.js → ConfigureSeriesMenu.jsx} +2 -2
- package/app/scripts/{ContextMenuContainer.js → ContextMenuContainer.jsx} +5 -7
- package/app/scripts/ContextMenuItem.jsx +37 -0
- package/app/scripts/Cross.jsx +9 -0
- package/app/scripts/CustomTrackDialog.jsx +38 -0
- package/app/scripts/DataFetcher.js +6 -6
- package/app/scripts/{Dialog.js → Dialog.jsx} +40 -31
- package/app/scripts/{DragListeningDiv.js → DragListeningDiv.jsx} +10 -12
- package/app/scripts/{DraggableDiv.js → DraggableDiv.jsx} +25 -24
- package/app/scripts/{ExportLinkDialog.js → ExportLinkDialog.jsx} +2 -2
- package/app/scripts/{GalleryTracks.js → GalleryTracks.jsx} +10 -9
- package/app/scripts/{GenomePositionSearchBox.js → GenomePositionSearchBox.jsx} +23 -21
- package/app/scripts/HeatmapTiledPixiTrack.js +18 -30
- package/app/scripts/{HiGlassComponent.js → HiGlassComponent.jsx} +213 -86
- package/app/scripts/HorizontalChromosomeLabels.js +3 -6
- package/app/scripts/HorizontalHeatmapTrack.js +2 -6
- package/app/scripts/HorizontalRule.js +2 -0
- package/app/scripts/{HorizontalTiledPlot.js → HorizontalTiledPlot.jsx} +20 -19
- package/app/scripts/LeftTrackModifier.js +8 -0
- package/app/scripts/{Modal.js → Modal.jsx} +14 -9
- package/app/scripts/{NestedContextMenu.js → NestedContextMenu.jsx} +6 -7
- package/app/scripts/OSMTilesTrack.js +2 -6
- package/app/scripts/OverlayTrack.js +2 -0
- package/app/scripts/{PopupMenu.js → PopupMenu.jsx} +1 -1
- package/app/scripts/SearchField.js +5 -3
- package/app/scripts/{SeriesListItems.js → SeriesListItems.jsx} +6 -6
- package/app/scripts/{SeriesListMenu.js → SeriesListMenu.jsx} +29 -32
- package/app/scripts/Tiled1DPixiTrack.js +2 -5
- package/app/scripts/TiledPixiTrack.js +3 -1
- package/app/scripts/{TiledPlot.js → TiledPlot.jsx} +45 -17
- package/app/scripts/{TilesetFinder.js → TilesetFinder.jsx} +7 -7
- package/app/scripts/Track.js +17 -1
- package/app/scripts/{TrackControl.js → TrackControl.jsx} +44 -50
- package/app/scripts/{TrackRenderer.js → TrackRenderer.jsx} +44 -38
- package/app/scripts/VerticalRule.js +1 -0
- package/app/scripts/{VerticalTiledPlot.js → VerticalTiledPlot.jsx} +27 -18
- package/app/scripts/{ViewConfigEditor.js → ViewConfigEditor.jsx} +66 -58
- package/app/scripts/{ViewContextMenu.js → ViewContextMenu.jsx} +13 -13
- package/app/scripts/{ViewHeader.js → ViewHeader.jsx} +24 -23
- package/app/scripts/ViewportTracker2D.js +1 -2
- package/app/scripts/ViewportTrackerHorizontal.js +1 -2
- package/app/scripts/ViewportTrackerVertical.js +1 -2
- package/app/scripts/api.js +17 -10
- package/app/scripts/configs/available-for-plugins.js +4 -3
- package/app/scripts/configs/index.js +1 -47
- package/app/scripts/configs/positions-by-datatype.js +2 -0
- package/app/scripts/configs/primitives.js +47 -0
- package/app/scripts/configs/tracks-info.js +2 -2
- package/app/scripts/d3-context-menu.js +1 -0
- package/app/scripts/data-fetchers/get-data-fetcher.js +7 -2
- package/app/scripts/{hglib.js → hglib.jsx} +1 -1
- package/app/scripts/{icons.js → icons.jsx} +24 -13
- package/app/scripts/mixwith.js +2 -0
- package/app/scripts/services/tile-proxy.js +1 -5
- package/app/scripts/utils/abs-to-chr.js +1 -1
- package/app/scripts/utils/dec-to-hex-str.js +1 -1
- package/app/scripts/utils/dict-items.js +0 -1
- package/app/scripts/utils/dict-keys.js +0 -1
- package/app/scripts/utils/dict-values.js +0 -1
- package/app/scripts/utils/index.js +1 -0
- package/app/scripts/utils/range-query-2d.js +4 -1
- package/app/scripts/utils/selected-items-to-size.js +2 -3
- package/app/scripts/utils/{test-helpers.js → test-helpers.jsx} +32 -10
- package/app/scripts/utils/timeout.js +4 -1
- package/app/scripts/utils/value-to-color.js +14 -17
- package/app/scripts/worker.js +8 -4
- package/app/styles/GenomePositionSearchBox.module.scss +13 -15
- package/app/styles/HiGlass.scss +5 -5
- package/app/styles/TilesetFinder.css +94 -74
- package/app/styles/TrackControl.module.scss +17 -20
- package/app/styles/TrackOptions.css +23 -24
- package/app/styles/ViewHeader.module.scss +18 -18
- package/dist/hglib.css +1724 -1
- package/dist/hglib.js +80473 -154092
- package/dist/hglib.min.js +382 -2
- package/dist/index.html +251 -250
- package/package.json +57 -117
- package/CHANGELOG.md +0 -1415
- package/app/index.html +0 -273
- package/app/scripts/CenterTiledPlot.js +0 -5
- package/app/scripts/CloseTrackMenu.js +0 -25
- package/app/scripts/ContextMenuItem.js +0 -35
- package/app/scripts/Cross.js +0 -7
- package/app/scripts/factories/index.js +0 -1
- /package/app/scripts/{FixedTrack.js → FixedTrack.jsx} +0 -0
- /package/app/scripts/{HeatmapOptions.js → HeatmapOptions.jsx} +0 -0
- /package/app/scripts/{HiGlassTrackComponent.js → HiGlassTrackComponent.jsx} +0 -0
- /package/app/scripts/{HorizontalItem.js → HorizontalItem.jsx} +0 -0
- /package/app/scripts/{HorizontalTrack.js → HorizontalTrack.jsx} +0 -0
- /package/app/scripts/{ListWrapper.js → ListWrapper.jsx} +0 -0
- /package/app/scripts/{MoveableTrack.js → MoveableTrack.jsx} +0 -0
- /package/app/scripts/{PlotTypeChooser.js → PlotTypeChooser.jsx} +0 -0
- /package/app/scripts/{SeriesListSubmenuMixin.js → SeriesListSubmenuMixin.jsx} +0 -0
- /package/app/scripts/{SketchInlinePicker.js → SketchInlinePicker.jsx} +0 -0
- /package/app/scripts/{SortableList.js → SortableList.jsx} +0 -0
- /package/app/scripts/{TrackArea.js → TrackArea.jsx} +0 -0
- /package/app/scripts/{VerticalItem.js → VerticalItem.jsx} +0 -0
- /package/app/scripts/{VerticalTrack.js → VerticalTrack.jsx} +0 -0
- /package/app/scripts/hocs/{with-modal.js → with-modal.jsx} +0 -0
- /package/app/scripts/hocs/{with-pub-sub.js → with-pub-sub.jsx} +0 -0
- /package/app/scripts/hocs/{with-theme.js → with-theme.jsx} +0 -0
package/dist/hglib.css
CHANGED
|
@@ -1 +1,1724 @@
|
|
|
1
|
-
.Button-module_button-3YXsQ{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-webkit-box-sizing:border-box;box-sizing:border-box;padding:.5em;color:#000;font-size:1em;line-height:1em;border:0;border-radius:2.5px;background:#fff;-webkit-box-shadow:0 0 0 1px #ccc;box-shadow:0 0 0 1px #ccc;-webkit-transition:background .15s ease,-webkit-transform .15s ease,-webkit-box-shadow .15s ease;transition:background .15s ease,-webkit-transform .15s ease,-webkit-box-shadow .15s ease;-o-transition:transform .15s ease,box-shadow .15s ease,background .15s ease;transition:transform .15s ease,box-shadow .15s ease,background .15s ease;transition:transform .15s ease,box-shadow .15s ease,background .15s ease,-webkit-transform .15s ease,-webkit-box-shadow .15s ease;-webkit-appearance:none}.Button-module_button-3YXsQ:hover{background:#f2f2f2;-webkit-box-shadow:0 0 0 1px #ccc;box-shadow:0 0 0 1px #ccc}.Button-module_button-3YXsQ:focus{-webkit-box-shadow:0 0 0 2px #0089ff;box-shadow:0 0 0 2px #0089ff}.Button-module_button-3YXsQ:active{-webkit-transform:scale(.9);-ms-transform:scale(.9);transform:scale(.9)}.Button-module_button-3YXsQ:active,.Button-module_button-3YXsQ:focus,.Button-module_button-3YXsQ:hover{cursor:pointer;outline:none}.Button-module_button-shortcut-1zMAn{padding:.1em 5px;color:#999;font-size:.8em;-webkit-transition:color .15s ease;-o-transition:color .15s ease;transition:color .15s ease}.Cross-module_cross-3WYME{position:relative;width:1em;height:1em}.Cross-module_cross-3WYME:after,.Cross-module_cross-3WYME:before{content:"";display:block;position:absolute;top:50%;left:0;width:1em;height:1px;background:#000;-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center}.Cross-module_cross-3WYME:before{-webkit-transform:translateY(-50%) rotate(45deg);-ms-transform:translateY(-50%) rotate(45deg);transform:translateY(-50%) rotate(45deg)}.Cross-module_cross-3WYME:after{-webkit-transform:translateY(-50%) rotate(-45deg);-ms-transform:translateY(-50%) rotate(-45deg);transform:translateY(-50%) rotate(-45deg)}.Modal-module_modal-background-3vDy1{position:absolute;z-index:1000;top:0;right:0;bottom:0;left:0;background:rgba(0,0,0,.666);-webkit-animation:Modal-module_fade-in-3Nm-O .2s ease 1;animation:Modal-module_fade-in-3Nm-O .2s ease 1;-webkit-transition:opacity .2s ease;-o-transition:opacity .2s ease;transition:opacity .2s ease}.Modal-module_modal-hide-3huBg{opacity:0}.Modal-module_modal-wrap-1HWNn{position:absolute;top:20px;right:20px;bottom:20px;left:20px}.Modal-module_modal-window-1XZAq{position:relative;width:100%;max-width:640px;max-height:100%;margin-left:auto;margin-right:auto;color:#000;border-radius:5px;background:#fff;-webkit-animation:Modal-module_fade-scale-in-11Dkx .2s ease 1;animation:Modal-module_fade-scale-in-11Dkx .2s ease 1}.Modal-module_modal-window-max-height-CZYCl{height:100%}.Modal-module_modal-content-2xb_x{padding:10px}@-webkit-keyframes Modal-module_fade-in-3Nm-O{0%{opacity:0}to{opacity:1}}@keyframes Modal-module_fade-in-3Nm-O{0%{opacity:0}to{opacity:1}}@-webkit-keyframes Modal-module_fade-scale-in-11Dkx{0%{opacity:0;-webkit-transform:scale(.5);transform:scale(.5)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes Modal-module_fade-scale-in-11Dkx{0%{opacity:0;-webkit-transform:scale(.5);transform:scale(.5)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.Dialog-module_dialog-header-2mk2M{position:relative;z-index:2;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;margin:0 -10px 10px;padding:0 10px 10px;border-bottom:1px solid #ccc}.Dialog-module_dialog-header-2mk2M h3{margin:0;padding:0;font-size:20px;line-height:1em}.Dialog-module_dialog-header-2mk2M button{font-size:10px}.Dialog-module_dialog-main-max-height-1EAb2{position:absolute;z-index:1;top:40px;right:0;bottom:50px;left:0;padding:10px;overflow:auto}.Dialog-module_dialog-footer-1BnEv,.Dialog-module_dialog-footer-max-height-KjDek{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;margin:10px -10px 0;padding:10px 10px 0;border-top:1px solid #ccc}.Dialog-module_dialog-footer-1BnEv button,.Dialog-module_dialog-footer-max-height-KjDek button{font-size:14px}.Dialog-module_dialog-footer-max-height-KjDek{position:absolute;z-index:2;left:10px;right:10px;bottom:10px}.ContextMenu-module_context-menu-2OwvL{position:fixed;background-color:hsla(0,0%,100%,.95);border:1px solid rgba(0,0,0,.1);border-radius:3px;font-size:12px;cursor:default;padding:3px;-webkit-box-shadow:0 0 3px 0 rgba(0,0,0,.1),0 1px 5px 0 rgba(0,0,0,.05);box-shadow:0 0 3px 0 rgba(0,0,0,.1),0 1px 5px 0 rgba(0,0,0,.05)}.ContextMenu-module_context-menu-dark-2PO31{color:#ccc;background-color:rgba(68,68,68,.97)}.ContextMenu-module_context-menu-icon-I4kiw{display:inline-block;margin-right:3px;vertical-align:middle}.ContextMenu-module_context-menu-icon-I4kiw>svg{width:30px;height:20px}.ContextMenu-module_context-menu-item-1HeVv{padding:2px;white-space:nowrap;border-radius:2px;-webkit-transition:background .15s ease,color .15s ease;-o-transition:background .15s ease,color .15s ease;transition:background .15s ease,color .15s ease}.ContextMenu-module_context-menu-item-1HeVv:hover{background:#337ab7;color:#fff}.ContextMenu-module_context-menu-hr-3yapb{margin-top:5px;margin-bottom:5px;border:0;border-top:1px solid rgba(0,0,0,.1)}.ContextMenu-module_play-icon-R4pIO{width:12px;height:12px;position:absolute;right:5px}.ContextMenu-module_context-menu-span-8EUfZ{margin-right:20px;vertical-align:middle;display:inline-block;line-height:normal;white-space:nowrap}.ContextMenu-module_context-menu-thumbnail-2vHLD{margin-right:10px;border:1px solid #888}.ContextMenu-module_context-menu-thumbnail-inline-1iOcg{display:inline-block;margin-right:10px;vertical-align:middle}.TrackControl-module_track-control-2zDf3,.TrackControl-module_track-control-vertical-2McB_{position:absolute;z-index:1;display:-ms-flexbox;display:flex;background:hsla(0,0%,100%,.75);right:2px;top:2px;border-radius:2.5px;-webkit-box-shadow:0 0 0 1px rgba(0,0,0,.05),0 0 3px 0 rgba(0,0,0,.1);box-shadow:0 0 0 1px rgba(0,0,0,.05),0 0 3px 0 rgba(0,0,0,.1);opacity:0;-webkit-transition:opacity .15s ease,background .15s ease,-webkit-box-shadow .15s ease;transition:opacity .15s ease,background .15s ease,-webkit-box-shadow .15s ease;-o-transition:opacity .15s ease,background .15s ease,box-shadow .15s ease;transition:opacity .15s ease,background .15s ease,box-shadow .15s ease;transition:opacity .15s ease,background .15s ease,box-shadow .15s ease,-webkit-box-shadow .15s ease}.TrackControl-module_track-control-dark-fP2uZ,.TrackControl-module_track-control-dark-fP2uZ .TrackControl-module_track-control-active-2JD9i{background:rgba(40,40,40,.85)}.TrackControl-module_track-control-vertical-2McB_{-ms-flex-direction:column-reverse;flex-direction:column-reverse}.TrackControl-module_track-control-left-zHd9W{left:2px;right:auto}.TrackControl-module_track-control-active-2JD9i,.TrackControl-module_track-control-vertical-active-1QCKn{opacity:1;z-index:1}.TrackControl-module_track-control-active-2JD9i:hover,.TrackControl-module_track-control-vertical-active-1QCKn:hover{background:#fff;-webkit-box-shadow:0 0 0 1px rgba(0,0,0,.1),0 0 3px 0 rgba(0,0,0,.2);box-shadow:0 0 0 1px rgba(0,0,0,.1),0 0 3px 0 rgba(0,0,0,.2)}.TrackControl-module_track-control-dark-fP2uZ.TrackControl-module_track-control-active-2JD9i:hover{background:rgba(34,34,34,.95)}.TrackControl-module_track-control-padding-right-2p6Lp{right:80px}.TrackControl-module_track-control-button-2fdIb{width:20px;height:20px;padding:4px;cursor:pointer;opacity:.66;-webkit-transition:background .15s ease,color .15s ease,opacity .15s ease;-o-transition:background .15s ease,color .15s ease,opacity .15s ease;transition:background .15s ease,color .15s ease,opacity .15s ease}.TrackControl-module_track-control-button-2fdIb:hover{color:#fff;background:#337ab7;opacity:1}.TrackControl-module_track-control-button-2fdIb:first-child{border-radius:2.5px 0 0 2.5px}.TrackControl-module_track-control-button-2fdIb:last-child{border-radius:0 2.5px 2.5px 0}.TrackControl-module_track-control-dark-fP2uZ .TrackControl-module_track-control-button-2fdIb{color:#ccc}.TrackControl-module_track-control-dark-fP2uZ .TrackControl-module_track-control-button-2fdIb:hover{color:#fff;background:#337ab7;opacity:1}.TrackControl-module_track-control-button-vertical-1s22z:first-child{border-radius:0 0 2.5px 2.5px}.TrackControl-module_track-control-button-vertical-1s22z:last-child{border-radius:2.5px 2.5px 0 0}.CenterTrack-module_center-track-3ptRW{position:relative;background:transparent}.CenterTrack-module_center-track-container-2ELhp{position:absolute;z-index:1}.Track-module_track-range-selection-1yrDf{position:absolute;z-index:-1;opacity:0;-webkit-transition:opacity .15s ease;-o-transition:opacity .15s ease;transition:opacity .15s ease}.Track-module_track-range-selection-active-1oljJ{z-index:1;opacity:1}.Track-module_track-range-selection-group-inactive-YNRM4{display:none}.Track-module_track-range-selection-group-brush-selection-2VYDl{outline:2px solid rgba(0,0,0,.33);fill:#000;fill-opacity:.1}.DragListeningDiv-module_drag-listening-div-active-3wpRk{z-index:10;-webkit-box-shadow:inset 0 0 3px 0 red;box-shadow:inset 0 0 3px 0 red}.GalleryTracks-module_gallery-tracks-3tsUO{position:relative;top:0;left:0;width:100%;height:100%}.GalleryTracks-module_gallery-track-eGKoq{position:absolute;-webkit-box-sizing:border-box;box-sizing:border-box;top:0;right:0;bottom:0;left:0}.GalleryTracks-module_gallery-invisible-track-1hMJp,.GalleryTracks-module_gallery-sub-track-z1HEh{position:absolute}.TiledPlot-module_tiled-plot-uFHiB{position:relative;-ms-flex:1 1;flex:1 1;overflow:hidden}.TiledPlot-module_horizontalList-1c1P8{display:-ms-flexbox;display:flex;width:600px;height:300px;white-space:nowrap}.TiledPlot-module_list-24zgV{width:400px;height:600px;overflow:hidden;-webkit-overflow-scrolling:touch}.TiledPlot-module_stylizedList-Mt4JL{position:relative;z-index:0;background-color:#f3f3f3;outline:none}.TiledPlot-module_stylizedItem-2bQBK{position:relative;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;width:100%;background-color:transparent;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:#333;font-weight:400}.TiledPlot-module_stylizedHelper-3IVEu{-webkit-box-shadow:0 5px 5px -5px rgba(0,0,0,.2),0 -5px 5px -5px rgba(0,0,0,.2);box-shadow:0 5px 5px -5px rgba(0,0,0,.2),0 -5px 5px -5px rgba(0,0,0,.2);background-color:hsla(0,0%,100%,.8);cursor:row-resize}.TiledPlot-module_stylizedHelper-3IVEu.TiledPlot-module_horizontalItem-2-ZjU{cursor:col-resize}.TiledPlot-module_horizontalItem-2-ZjU{display:-ms-flexbox;display:flex;-ms-flex-negative:0;flex-shrink:0;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.TiledPlot-module_resizable-track-2oLT9{width:100%;height:100%}path.TiledPlot-module_domain-qYw6K{stroke-width:0px}.TrackRenderer-module_track-renderer-3TM7n{position:relative}.TrackRenderer-module_track-renderer-element-2i16D,.TrackRenderer-module_track-renderer-events-3tVM2{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1}.TrackRenderer-module_track-renderer-events-3tVM2{z-index:1}.tileset-finder-label{font-weight:700}.tileset-finder-search-box{margin-left:10px}.tileset-finder-search-bar{display:-ms-flexbox;display:flex;margin-left:5px;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center}.tileset-finder-checkbox-tree{margin:5px;padding:3px;border:1px solid #aaa;border-radius:5px}.react-checkbox-tree{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;font-size:14px}.react-checkbox-tree>ol{-ms-flex:1 1 auto;flex:1 1 auto}.react-checkbox-tree ol{margin:0;padding-left:0;list-style-type:none}.react-checkbox-tree ol ol{padding-left:24px}.react-checkbox-tree button{line-height:normal;color:inherit}.react-checkbox-tree button:focus{outline:none}.react-checkbox-tree button:disabled{cursor:not-allowed}.react-checkbox-tree .rct-bare-label{cursor:default}.react-checkbox-tree label{margin-bottom:0;cursor:pointer;font-weight:400}.react-checkbox-tree label:hover{background:rgba(51,51,204,.1)}.react-checkbox-tree label:active{background:rgba(51,51,204,.15)}.react-checkbox-tree:not(.rct-native-display) input{display:none}.react-checkbox-tree.rct-native-display input{margin:0 5px}.react-checkbox-tree .rct-icon{font-family:FontAwesome;font-style:normal}.rct-disabled>.rct-text>label{opacity:.75;cursor:not-allowed}.rct-disabled>.rct-text>label:active,.rct-disabled>.rct-text>label:hover{background:transparent}.rct-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.rct-options{-ms-flex:0 0 auto;flex:0 0 auto;margin-left:.5rem;text-align:right}.rct-option{opacity:.75;border:0;background:none;cursor:pointer;padding:0 4px;font-size:18px}.rct-option:hover{opacity:1}.rct-option+.rct-option{margin-left:2px}.rct-checkbox,.rct-collapse,.rct-node-icon{padding:0 5px}.rct-checkbox *,.rct-collapse *,.rct-node-icon *{display:inline-block;margin:0;width:14px}.rct-collapse{border:0;background:none;line-height:normal;color:inherit;font-size:12px}.rct-collapse.rct-collapse-btn{cursor:pointer}.rct-collapse>.rct-icon-expand-close{opacity:.5}.rct-collapse>.rct-icon-expand-close:hover{opacity:1}.rct-native-display .rct-checkbox{display:none}.rct-node-clickable{cursor:pointer}.rct-node-clickable:hover{background:rgba(51,51,204,.1)}.rct-node-clickable:focus{outline:0;background:rgba(51,51,204,.2)}.rct-node-icon{color:#33c}.rct-title{padding:0 5px}.rct-icon-expand-close:before{content:"\f054"}.rct-icon-expand-open:before{content:"\f078"}.rct-icon-uncheck:before{content:"\f096"}.rct-icon-check:before{content:"\f046"}.rct-icon-half-check:before{opacity:.5;content:"\f046"}.rct-icon-leaf:before{content:"\f016"}.rct-icon-parent-open:before{content:"\f115"}.rct-icon-parent-close:before{content:"\f114"}.rct-icon-expand-all:before{content:"\f0fe"}.rct-icon-collapse-all:before{content:"\f146"}.plot-type-selected{background-color:rgba(0,0,255,.3)}.plot-type-container{overflow-y:scroll;padding:3px;max-height:15vh}.plot-type-container,.plot-type-container-empty{margin:5px;border:1px solid #aaa;border-radius:5px}.plot-type-container-empty{padding:3px 8px;background-color:#e8e8e8}.plot-type-item{cursor:pointer}.plot-type-item:not(.plot-type-selected):hover{background-color:rgba(51,51,204,.1)}.track-thumbnail{width:30px;height:20px;display:inline-block;margin-right:10;vertical-align:middle}.track-thumbnail>svg{width:20px;height:20px}.AddTrackDialog-module_collapse-toggle-icon-1Of5_:before{font-family:Glyphicons Halflings;content:"\E159";float:left;padding-right:3px}.AddTrackDialog-module_collapse-toggle-icon-1Of5_.AddTrackDialog-module_collapsed-1ifB1:before{content:"\E158"}.AddTrackDialog-module_modal-title-1Atka{font-family:Roboto;font-weight:700}.AddTrackDialog-module_modal-container-14d_4{position:relative}.AddTrackDialog-module_modal-container-14d_4 .AddTrackDialog-module_modal-backdrop-ZrVQg,.AddTrackDialog-module_modal-container-14d_4 .AddTrackDialog-module_modal-bZqLI{position:absolute}.AddTrackDialog-module_modal-dialog-3bKDk{position:relative;display:table;overflow-y:auto;overflow-x:auto;width:600px;min-width:300px;margin:auto}.DraggableDiv-module_bottom-right-handle-o7UYG,.DraggableDiv-module_top-right-handle-oUk0R{border-right:solid #000;border-top:solid #000}.DraggableDiv-module_bottom-left-handle-FO7d4,.DraggableDiv-module_top-left-handle-R5Zui{border-left:solid #000;border-top:solid #000}.DraggableDiv-module_bottom-draggable-handle-3olLp,.DraggableDiv-module_left-draggable-handle-2gpow,.DraggableDiv-module_right-draggable-handle-2Sriq,.DraggableDiv-module_top-draggable-handle-3W5bP{position:absolute;opacity:0;-webkit-transition:opacity .15s ease,-webkit-transform .15s ease;transition:opacity .15s ease,-webkit-transform .15s ease;-o-transition:transform .15s ease,opacity .15s ease;transition:transform .15s ease,opacity .15s ease;transition:transform .15s ease,opacity .15s ease,-webkit-transform .15s ease}.DraggableDiv-module_draggable-div-2eWml{background-color:transparent;-webkit-box-sizing:border-box;box-sizing:border-box}.DraggableDiv-module_bottom-draggable-handle-grabber-GN1_k,.DraggableDiv-module_top-draggable-handle-grabber-2mVDE{width:10px;height:4px;border-top:1px solid #000;border-bottom:1px solid #000}.DraggableDiv-module_bottom-draggable-handle-grabber-GN1_k,.DraggableDiv-module_top-draggable-handle-grabber-2mVDE{margin:4px 7px}.DraggableDiv-module_left-draggable-handle-grabber-1Pqhc,.DraggableDiv-module_right-draggable-handle-grabber-1mtC0{width:4px;height:10px;border-left:1px solid #000;border-right:1px solid #000}.DraggableDiv-module_left-draggable-handle-grabber-1Pqhc,.DraggableDiv-module_right-draggable-handle-grabber-1mtC0{margin:7px 4px}.DraggableDiv-module_draggable-div-2eWml:hover .DraggableDiv-module_bottom-draggable-handle-3olLp,.DraggableDiv-module_draggable-div-2eWml:hover .DraggableDiv-module_left-draggable-handle-2gpow,.DraggableDiv-module_draggable-div-2eWml:hover .DraggableDiv-module_right-draggable-handle-2Sriq,.DraggableDiv-module_draggable-div-2eWml:hover .DraggableDiv-module_top-draggable-handle-3W5bP{opacity:.5;background:hsla(0,0%,100%,.75);-webkit-box-shadow:0 0 3px 1px hsla(0,0%,100%,.75);box-shadow:0 0 3px 1px hsla(0,0%,100%,.75);border-radius:3px}.DraggableDiv-module_bottom-draggable-handle-3olLp:active,.DraggableDiv-module_bottom-draggable-handle-3olLp:hover,.DraggableDiv-module_left-draggable-handle-2gpow:active,.DraggableDiv-module_left-draggable-handle-2gpow:hover,.DraggableDiv-module_right-draggable-handle-2Sriq:active,.DraggableDiv-module_right-draggable-handle-2Sriq:hover,.DraggableDiv-module_top-draggable-handle-3W5bP:active,.DraggableDiv-module_top-draggable-handle-3W5bP:hover{opacity:1!important;-webkit-transform:scale(2);-ms-transform:scale(2);transform:scale(2)}.DraggableDiv-module_bottom-draggable-handle-3olLp:active .DraggableDiv-module_bottom-draggable-handle-grabber-GN1_k,.DraggableDiv-module_bottom-draggable-handle-3olLp:active .DraggableDiv-module_left-draggable-handle-grabber-1Pqhc,.DraggableDiv-module_bottom-draggable-handle-3olLp:active .DraggableDiv-module_right-draggable-handle-grabber-1mtC0,.DraggableDiv-module_bottom-draggable-handle-3olLp:active .DraggableDiv-module_top-draggable-handle-grabber-2mVDE,.DraggableDiv-module_bottom-draggable-handle-3olLp:hover .DraggableDiv-module_bottom-draggable-handle-grabber-GN1_k,.DraggableDiv-module_bottom-draggable-handle-3olLp:hover .DraggableDiv-module_left-draggable-handle-grabber-1Pqhc,.DraggableDiv-module_bottom-draggable-handle-3olLp:hover .DraggableDiv-module_right-draggable-handle-grabber-1mtC0,.DraggableDiv-module_bottom-draggable-handle-3olLp:hover .DraggableDiv-module_top-draggable-handle-grabber-2mVDE,.DraggableDiv-module_left-draggable-handle-2gpow:active .DraggableDiv-module_bottom-draggable-handle-grabber-GN1_k,.DraggableDiv-module_left-draggable-handle-2gpow:active .DraggableDiv-module_left-draggable-handle-grabber-1Pqhc,.DraggableDiv-module_left-draggable-handle-2gpow:active .DraggableDiv-module_right-draggable-handle-grabber-1mtC0,.DraggableDiv-module_left-draggable-handle-2gpow:active .DraggableDiv-module_top-draggable-handle-grabber-2mVDE,.DraggableDiv-module_left-draggable-handle-2gpow:hover .DraggableDiv-module_bottom-draggable-handle-grabber-GN1_k,.DraggableDiv-module_left-draggable-handle-2gpow:hover .DraggableDiv-module_left-draggable-handle-grabber-1Pqhc,.DraggableDiv-module_left-draggable-handle-2gpow:hover .DraggableDiv-module_right-draggable-handle-grabber-1mtC0,.DraggableDiv-module_left-draggable-handle-2gpow:hover .DraggableDiv-module_top-draggable-handle-grabber-2mVDE,.DraggableDiv-module_right-draggable-handle-2Sriq:active .DraggableDiv-module_bottom-draggable-handle-grabber-GN1_k,.DraggableDiv-module_right-draggable-handle-2Sriq:active .DraggableDiv-module_left-draggable-handle-grabber-1Pqhc,.DraggableDiv-module_right-draggable-handle-2Sriq:active .DraggableDiv-module_right-draggable-handle-grabber-1mtC0,.DraggableDiv-module_right-draggable-handle-2Sriq:active .DraggableDiv-module_top-draggable-handle-grabber-2mVDE,.DraggableDiv-module_right-draggable-handle-2Sriq:hover .DraggableDiv-module_bottom-draggable-handle-grabber-GN1_k,.DraggableDiv-module_right-draggable-handle-2Sriq:hover .DraggableDiv-module_left-draggable-handle-grabber-1Pqhc,.DraggableDiv-module_right-draggable-handle-2Sriq:hover .DraggableDiv-module_right-draggable-handle-grabber-1mtC0,.DraggableDiv-module_right-draggable-handle-2Sriq:hover .DraggableDiv-module_top-draggable-handle-grabber-2mVDE,.DraggableDiv-module_top-draggable-handle-3W5bP:active .DraggableDiv-module_bottom-draggable-handle-grabber-GN1_k,.DraggableDiv-module_top-draggable-handle-3W5bP:active .DraggableDiv-module_left-draggable-handle-grabber-1Pqhc,.DraggableDiv-module_top-draggable-handle-3W5bP:active .DraggableDiv-module_right-draggable-handle-grabber-1mtC0,.DraggableDiv-module_top-draggable-handle-3W5bP:active .DraggableDiv-module_top-draggable-handle-grabber-2mVDE,.DraggableDiv-module_top-draggable-handle-3W5bP:hover .DraggableDiv-module_bottom-draggable-handle-grabber-GN1_k,.DraggableDiv-module_top-draggable-handle-3W5bP:hover .DraggableDiv-module_left-draggable-handle-grabber-1Pqhc,.DraggableDiv-module_top-draggable-handle-3W5bP:hover .DraggableDiv-module_right-draggable-handle-grabber-1mtC0,.DraggableDiv-module_top-draggable-handle-3W5bP:hover .DraggableDiv-module_top-draggable-handle-grabber-2mVDE{-webkit-box-shadow:0 0 3px 1px #0089ff;box-shadow:0 0 3px 1px #0089ff;background:#0089ff}.DraggableDiv-module_bottom-draggable-handle-3olLp,.DraggableDiv-module_top-draggable-handle-3W5bP{height:12px;cursor:row-resize}.DraggableDiv-module_left-draggable-handle-2gpow,.DraggableDiv-module_right-draggable-handle-2Sriq{width:12px;cursor:col-resize}.HorizontalTiledPlot-module_horizontal-tiled-plot-3EK65,.VerticalTiledPlot-module_vertical-tiled-plot-R3sb7{position:relative}.ViewHeader-module_multitrack-header-3XnZx,.ViewHeader-module_multitrack-header-focus-3akkN,.ViewHeader-module_multitrack-header-squeazed-GHIVd{position:relative;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;height:24px;margin-top:4px;margin-bottom:4px;color:#999;font-size:12px;line-height:24px;vertical-align:middle;border:0;border-radius:3px;background:#e5e5e5;-webkit-transition:height .15s ease,margin .15s ease;-o-transition:height .15s ease,margin .15s ease;transition:height .15s ease,margin .15s ease}.ViewHeader-module_multitrack-header-dark-97tZt{background:#222}.ViewHeader-module_multitrack-header-focus-3akkN{height:32px;margin-top:0;margin-bottom:0}.ViewHeader-module_multitrack-header-id-3YURk{padding-left:3px}.ViewHeader-module_multitrack-header-id-3YURk:before{content:"ID:";font-weight:700;padding-right:5px}.ViewHeader-module_multitrack-header-left-Qj9Sm{display:-ms-flexbox;display:flex;-ms-flex-positive:1;flex-grow:1}.ViewHeader-module_multitrack-header-grabber-3jrIz,.ViewHeader-module_multitrack-header-grabber-squeazed-dU45Z{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:24px;height:100%;cursor:move;border-radius:3px 0 0 3px;-webkit-transition:background .15s ease;-o-transition:background .15s ease;transition:background .15s ease}.ViewHeader-module_multitrack-header-grabber-3jrIz:hover,.ViewHeader-module_multitrack-header-grabber-squeazed-dU45Z:hover{background:#999}.ViewHeader-module_multitrack-header-grabber-3jrIz:hover div,.ViewHeader-module_multitrack-header-grabber-squeazed-dU45Z:hover div{background:#fff}.ViewHeader-module_multitrack-header-grabber-3jrIz div,.ViewHeader-module_multitrack-header-grabber-squeazed-dU45Z div{width:1px;height:50%;margin:1px;background:#999;-webkit-transition:background .15s ease;-o-transition:background .15s ease;transition:background .15s ease}.ViewHeader-module_multitrack-header-dark-97tZt .ViewHeader-module_multitrack-header-grabber-3jrIz div{background:#666}.ViewHeader-module_multitrack-header-grabber-squeazed-dU45Z{width:19.2px}.ViewHeader-module_multitrack-header-search-1X_3_{position:relative;-ms-flex-positive:1;flex-grow:1;height:100%;margin-right:12px}.ViewHeader-module_multitrack-header-search-1X_3_:after{position:absolute;top:3px;bottom:3px;right:-12px;display:block;content:"";width:1px;margin:0 6px;background:#ccc}.ViewHeader-module_multitrack-header-dark-97tZt .ViewHeader-module_multitrack-header-search-1X_3_:after{background:#666}.ViewHeader-module_multitrack-header-3XnZx>nav,.ViewHeader-module_multitrack-header-nav-list-2nvcu{display:-ms-flexbox;display:flex}.ViewHeader-module_multitrack-header-icon-16QKZ,.ViewHeader-module_multitrack-header-icon-squeazed-25lkF{width:24px;height:100%;padding:6px;-webkit-transition:background .15s ease,color .15s ease;-o-transition:background .15s ease,color .15s ease;transition:background .15s ease,color .15s ease}.ViewHeader-module_multitrack-header-icon-16QKZ g,.ViewHeader-module_multitrack-header-icon-squeazed-25lkF g{stroke:#999}.ViewHeader-module_multitrack-header-icon-16QKZ:active,.ViewHeader-module_multitrack-header-icon-16QKZ:focus,.ViewHeader-module_multitrack-header-icon-16QKZ:hover,.ViewHeader-module_multitrack-header-icon-squeazed-25lkF:active,.ViewHeader-module_multitrack-header-icon-squeazed-25lkF:focus,.ViewHeader-module_multitrack-header-icon-squeazed-25lkF:hover{color:#fff;background:#337ab7}.ViewHeader-module_multitrack-header-icon-16QKZ:active g,.ViewHeader-module_multitrack-header-icon-16QKZ:focus g,.ViewHeader-module_multitrack-header-icon-16QKZ:hover g,.ViewHeader-module_multitrack-header-icon-squeazed-25lkF:active g,.ViewHeader-module_multitrack-header-icon-squeazed-25lkF:focus g,.ViewHeader-module_multitrack-header-icon-squeazed-25lkF:hover g{stroke:#fff}.ViewHeader-module_multitrack-header-icon-16QKZ:last-child,.ViewHeader-module_multitrack-header-icon-squeazed-25lkF:last-child{border-radius:0 3px 3px 0}.ViewHeader-module_mouse-tool-selection-1pg2m{color:#fff;border-radius:3px 0 0 3px;background:#337ab7}.ViewHeader-module_multitrack-header-icon-squeazed-25lkF{width:20px 5;padding-left:3px;padding-right:3px}.GenomePositionSearchBox-module_genome-position-search-focus-23by2,.GenomePositionSearchBox-module_genome-position-search-SYccr{position:relative;display:-ms-flexbox;display:flex;-ms-flex-align:stretch;align-items:stretch;height:100%;margin-bottom:0;font-size:13.71429px;-webkit-transition:font-size .15s ease,-webkit-box-shadow .15s ease;transition:font-size .15s ease,-webkit-box-shadow .15s ease;-o-transition:box-shadow .15s ease,font-size .15s ease;transition:box-shadow .15s ease,font-size .15s ease;transition:box-shadow .15s ease,font-size .15s ease,-webkit-box-shadow .15s ease}.GenomePositionSearchBox-module_genome-position-search-focus-23by2{-webkit-box-shadow:0 0 0 1px #337ab7,0 0 3px 1px #337ab7;box-shadow:0 0 0 1px #337ab7,0 0 3px 1px #337ab7}.GenomePositionSearchBox-module_genome-position-search-bar-1_0ZU{position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;height:100%;padding:3px;color:#666;font-size:inherit;line-height:24px;border:0;border-radius:3px 0 0 3px;background:transparent}.GenomePositionSearchBox-module_genome-position-search-bar-1_0ZU:focus{outline:none;color:#000}.GenomePositionSearchBox-module_genome-position-search-dark-EML2e .GenomePositionSearchBox-module_genome-position-search-bar-1_0ZU:focus{color:#e5e5e5}.GenomePositionSearchBox-module_genome-position-search-bar-button-33SWJ,.GenomePositionSearchBox-module_genome-position-search-bar-button-focus-1IhAk{display:block;height:100%;padding:0 8px!important;color:#999;border:0!important;border-radius:0!important;background:transparent;-webkit-transition:background .15s ease,color .15s ease;-o-transition:background .15s ease,color .15s ease;transition:background .15s ease,color .15s ease}.GenomePositionSearchBox-module_genome-position-search-bar-button-33SWJ:active,.GenomePositionSearchBox-module_genome-position-search-bar-button-33SWJ:focus,.GenomePositionSearchBox-module_genome-position-search-bar-button-33SWJ:hover,.GenomePositionSearchBox-module_genome-position-search-bar-button-focus-1IhAk,.GenomePositionSearchBox-module_genome-position-search-bar-button-focus-1IhAk:active,.GenomePositionSearchBox-module_genome-position-search-bar-button-focus-1IhAk:focus,.GenomePositionSearchBox-module_genome-position-search-bar-button-focus-1IhAk:hover{color:#fff;background:#337ab7}.GenomePositionSearchBox-module_genome-position-search-bar-icon-14AEk,.GenomePositionSearchBox-module_genome-position-search-bar-icon-focus-1Ay7Z{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-webkit-transition:color .15s ease;-o-transition:color .15s ease;transition:color .15s ease}.GenomePositionSearchBox-module_genome-position-search-bar-icon-14AEk:first-child,.GenomePositionSearchBox-module_genome-position-search-bar-icon-focus-1Ay7Z:first-child{margin-left:6px;margin-right:2px}.GenomePositionSearchBox-module_genome-position-search-bar-icon-14AEk span,.GenomePositionSearchBox-module_genome-position-search-bar-icon-focus-1Ay7Z span{display:block;margin-top:-2px}.GenomePositionSearchBox-module_genome-position-search-bar-icon-focus-1Ay7Z{color:#337ab7}.GenomePositionSearchBox-module_genome-position-search-bar-suggestions-SrIoU{position:fixed;border-radius:3px;-webkit-box-shadow:0 0 3px 0 rgba(0,0,0,.1),0 1px 5px 0 rgba(0,0,0,.05);box-shadow:0 0 3px 0 rgba(0,0,0,.1),0 1px 5px 0 rgba(0,0,0,.05);background-color:hsla(0,0%,100%,.95);border:1px solid rgba(0,0,0,.1);padding:2px 0;font-size:90%;overflow:auto;max-height:50%}.GenomePositionSearchBox-module_btn-2bTUd{display:inline-block;margin-bottom:0;font-size:13.71429px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.GenomePositionSearchBox-module_btn-sm-2Ltms{font-size:12px;line-height:1.5;border-radius:3px}.GenomePositionSearchBox-module_btn-default-2pap4{color:#666;background-color:#fff;border-color:#ccc}.GenomePositionSearchBox-module_btn-default-2pap4:hover{color:#000;background:#ccc}.GenomePositionSearchBox-module_btn-default-2pap4:active,.GenomePositionSearchBox-module_btn-default-2pap4:focus{color:#fff;border-color:#000;background:#000}.GenomePositionSearchBox-module_genome-position-search-SYccr .GenomePositionSearchBox-module_btn-2bTUd{border-radius:0 3px 3px 0}.ExportLinkDialog-module_export-link-dialog-wrapper-ldYlL{display:-ms-flexbox;display:flex}.ExportLinkDialog-module_export-link-dialog-wrapper-ldYlL input{-ms-flex-positive:1;flex-grow:1}.AddTrackPositionMenu-module_add-track-position-table-RHODc{border-collapse:collapse;margin:5px;color:#666}.AddTrackPositionMenu-module_add-track-position-table-dark-_B9fu{color:#ccc}.AddTrackPositionMenu-module_add-track-position-other-lIGbb{outline:none}.AddTrackPositionMenu-module_add-track-position-top-center-2Dw4e{min-width:80px;min-height:20px;text-align:center;outline:none;border-top:1px solid #999;border-left:1px solid #999;border-right:1px solid #999;border-radius:2px 2px 0 0}.AddTrackPositionMenu-module_add-track-position-top-center-2Dw4e:hover{color:#fff;background-color:#337ab7}.AddTrackPositionMenu-module_add-track-position-middle-left-2ycaN{min-width:40px;text-align:center;outline:none;border-top:1px solid #999;border-left:1px solid #999;border-bottom:1px solid #999;border-radius:2px 0 0 2px}.AddTrackPositionMenu-module_add-track-position-middle-left-2ycaN:hover{background-color:#337ab7;color:#fff}.AddTrackPositionMenu-module_add-track-position-middle-right-Qqjnn{min-width:40px;text-align:center;outline:none;border-top:1px solid #999;border-right:1px solid #999;border-bottom:1px solid #999;border-radius:0 2px 2px 0}.AddTrackPositionMenu-module_add-track-position-middle-right-Qqjnn:hover{background-color:#337ab7;color:#fff}.AddTrackPositionMenu-module_add-track-position-middle-middle-2YFZd{text-align:center;outline:none;border:1px solid #999}.AddTrackPositionMenu-module_add-track-position-middle-middle-2YFZd:hover{background-color:#337ab7;color:#fff}.AddTrackPositionMenu-module_add-track-position-bottom-middle-3ityE{min-height:20px;text-align:center;outline:none;border-left:1px solid #999;border-right:1px solid #999;border-bottom:1px solid #999;border-radius:0 0 2px 2px}.AddTrackPositionMenu-module_add-track-position-bottom-middle-3ityE:hover{background-color:#337ab7;color:#fff}.AddTrackPositionMenu-module_add-track-position-span-2hbwE{margin:5px}.ViewConfigEditor-module_view-config-editor-header-2nTtX{margin:-10px -10px 0;padding:10px;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;background:#f2f2f2}.ViewConfigEditor-module_view-config-editor-header-2nTtX button{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;font-size:14px;background:#f2f2f2}.ViewConfigEditor-module_view-config-editor-header-2nTtX button:hover{background:#e5e5e5}.ViewConfigEditor-module_view-config-editor-header-2nTtX button:hover span{color:#666}.ViewConfigEditor-module_view-config-editor-2HAFN{position:absolute;top:50px;right:0;bottom:0;left:0;margin:1px 0 0;padding:0;overflow:auto;font-size:12.5px;height:calc(100% - 80px)}.ViewConfigEditor-module_view-config-log-1mYmL{position:absolute;right:0;bottom:0;left:0;margin:1px 0 0;padding:0;min-height:30px;background:#f2f2f2;-webkit-transition:height .15s ease;-o-transition:height .15s ease;transition:height .15s ease}.ViewConfigEditor-module_view-config-log-header-3EbEM{background:#f2f2f2;border-top:1px solid #ccc;border-bottom:1px solid #ccc;padding-left:10px;height:30px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;cursor:pointer;position:sticky;position:-webkit-sticky;top:0}.ViewConfigEditor-module_view-config-log-msg-2-CJZ{background:#f2f2f2;overflow:auto;height:calc(100% - 30px)}.ViewConfigEditor-module_view-config-log-msg-2-CJZ td,.ViewConfigEditor-module_view-config-log-msg-2-CJZ tr{outline:none;vertical-align:top}.ViewConfigEditor-module_view-config-log-msg-2-CJZ .ViewConfigEditor-module_title-3nLH_{font-weight:700;padding-left:8px;padding-top:8px;width:100px}.ViewConfigEditor-module_view-config-log-msg-2-CJZ .ViewConfigEditor-module_Warning-_sgiB{color:orange}.ViewConfigEditor-module_view-config-log-msg-2-CJZ .ViewConfigEditor-module_Success-nclFo{color:green}.ViewConfigEditor-module_view-config-log-msg-2-CJZ .ViewConfigEditor-module_Error-3enaC{color:red}.ViewConfigEditor-module_view-config-log-msg-2-CJZ pre{background:#fff;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word}.HiGlass-module_higlass-1NHR2{position:relative}.HiGlass-module_higlass-dark-theme-2visd{background:#000}.HiGlass-module_higlass-container-overflow-zNXnY,.HiGlass-module_higlass-scroll-container-overflow-2FS0w,.HiGlass-module_higlass-scroll-container-scroll-2lAU4{position:absolute;top:0;right:0;bottom:0;left:0}.HiGlass-module_higlass-scroll-container-overflow-2FS0w{overflow:hidden}.HiGlass-module_higlass-scroll-container-scroll-2lAU4{overflow-x:hidden;overflow-y:auto}.HiGlass-module_higlass-canvas-_mP9r{position:absolute;width:100%;height:100%}.HiGlass-module_higlass-drawing-surface-3aQQo{position:relative}.HiGlass-module_higlass-svg-JJZbf{position:absolute;width:100%;height:100%;left:0;top:0;pointer-events:none}.HiGlass-module_tiled-area-22H1L{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.HiGlass-module_track-mouseover-menu-1AoaP{position:fixed;z-index:1;margin:17px 0 0 9px;padding:0 .25rem;max-width:50vw;word-wrap:break-word;font-size:.8em;pointer-events:none;background:#fff;border-radius:.25rem;-webkit-box-shadow:0 0 0 1px rgba(0,0,0,.1),0 0 3px 0 rgba(0,0,0,.075),0 0 7px 0 rgba(0,0,0,.05);box-shadow:0 0 0 1px rgba(0,0,0,.1),0 0 3px 0 rgba(0,0,0,.075),0 0 7px 0 rgba(0,0,0,.05)}.higlass .react-grid-layout{position:relative;-webkit-transition:height .2s ease;-o-transition:height .2s ease;transition:height .2s ease}.higlass .react-grid-item{-webkit-transition:all .2s ease;-o-transition:all .2s ease;transition:all .2s ease;-webkit-transition-property:left,top;-o-transition-property:left,top;transition-property:left,top}.higlass .react-grid-item.cssTransforms{-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;-o-transition-property:transform;transition-property:transform;transition-property:transform,-webkit-transform}.higlass .react-grid-item.resizing{z-index:1;will-change:width,height}.higlass .react-grid-item.react-draggable-dragging{-webkit-transition:none;-o-transition:none;transition:none;z-index:3;will-change:transform}.higlass .react-grid-item.react-grid-placeholder{background:red;opacity:.2;-webkit-transition-duration:.1s;-o-transition-duration:.1s;transition-duration:.1s;z-index:2;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.higlass .react-grid-item>.react-resizable-handle{position:absolute;width:20px;height:20px;bottom:0;right:0;cursor:se-resize}.higlass .react-grid-item>.react-resizable-handle:after{content:"";position:absolute;right:3px;bottom:3px;width:5px;height:5px;border-right:2px solid rgba(0,0,0,.4);border-bottom:2px solid rgba(0,0,0,.4)}.higlass .react-resizable{position:relative}.higlass .react-resizable-handle{position:absolute;width:20px;height:20px;background-repeat:no-repeat;background-origin:content-box;-webkit-box-sizing:border-box;box-sizing:border-box;background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiNmZmZmZmYwMCIgd2lkdGg9IjYiIGhlaWdodD0iNiI+PHBhdGggZD0iTTYgNkgwVjQuMmg0LjJWMEg2djZ6IiBvcGFjaXR5PSIuMzAyIi8+PC9zdmc+");background-position:100% 100%;padding:0 3px 3px 0}.higlass .react-resizable-handle-sw{bottom:0;left:0;cursor:sw-resize;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.higlass .react-resizable-handle-se{bottom:0;right:0;cursor:se-resize}.higlass .react-resizable-handle-nw{top:0;left:0;cursor:nw-resize;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.higlass .react-resizable-handle-ne{top:0;right:0;cursor:ne-resize;-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.higlass .react-resizable-handle-e,.higlass .react-resizable-handle-w{top:50%;margin-top:-10px;cursor:ew-resize}.higlass .react-resizable-handle-w{left:0;-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg)}.higlass .react-resizable-handle-e{right:0;-webkit-transform:rotate(315deg);-ms-transform:rotate(315deg);transform:rotate(315deg)}.higlass .react-resizable-handle-n,.higlass .react-resizable-handle-s{left:50%;margin-left:-10px;cursor:ns-resize}.higlass .react-resizable-handle-n{top:0;-webkit-transform:rotate(225deg);-ms-transform:rotate(225deg);transform:rotate(225deg)}.higlass .react-resizable-handle-s{bottom:0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.higlass code[class*=language-],.higlass pre[class*=language-]{color:#393a34;font-family:Consolas,Bitstream Vera Sans Mono,Courier New,Courier,monospace;direction:ltr;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;font-size:.95em;line-height:1.2em;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}.higlass code[class*=language-]::-moz-selection,.higlass code[class*=language-] ::-moz-selection,.higlass pre[class*=language-]::-moz-selection,.higlass pre[class*=language-] ::-moz-selection{background:#b3d4fc}.higlass code[class*=language-]::selection,.higlass code[class*=language-] ::selection,.higlass pre[class*=language-]::selection,.higlass pre[class*=language-] ::selection{background:#b3d4fc}.higlass pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto;border:1px solid #ddd;background-color:#fff}.higlass :not(pre)>code[class*=language-]{padding:1px .2em;background:#f8f8f8;border:1px solid #ddd}.higlass .token.cdata,.higlass .token.comment,.higlass .token.doctype,.higlass .token.prolog{color:#998;font-style:italic}.higlass .token.namespace{opacity:.7}.higlass .token.attr-value,.higlass .token.string{color:#e3116c}.higlass .token.operator,.higlass .token.punctuation{color:#393a34}.higlass .token.boolean,.higlass .token.constant,.higlass .token.entity,.higlass .token.inserted,.higlass .token.number,.higlass .token.property,.higlass .token.regex,.higlass .token.symbol,.higlass .token.url,.higlass .token.variable{color:#36acaa}.higlass .language-autohotkey .token.selector,.higlass .token.atrule,.higlass .token.attr-name,.higlass .token.keyword{color:#00a4db}.higlass .language-autohotkey .token.tag,.higlass .token.deleted,.higlass .token.function{color:#9a050f}.higlass .language-autohotkey .token.keyword,.higlass .token.selector,.higlass .token.tag{color:#00009f}.higlass .token.bold,.higlass .token.function,.higlass .token.important{font-weight:700}.higlass .token.italic{font-style:italic}.higlass *{-webkit-box-sizing:border-box;box-sizing:border-box}.higlass .react-resizable-handle{z-index:1}table.table-track-options{border-collapse:collapse;margin-left:auto;margin-right:auto}td.td-track-options{border:1px solid #fff;outline:none;padding:3px;position:relative;font-family:Roboto,sans-serif;font-size:14px;color:#666}.cell-label{position:absolute;left:0;top:0;margin-left:5px;color:#777}.modal-dialog{position:relative;display:table;overflow-y:auto;overflow-x:auto;width:auto;min-width:300px;margin:auto}
|
|
1
|
+
._context-menu_18ock_1 {
|
|
2
|
+
position: fixed;
|
|
3
|
+
background-color: rgba(255, 255, 255, 0.95);
|
|
4
|
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
5
|
+
border-radius: 3px;
|
|
6
|
+
font-size: 12px;
|
|
7
|
+
cursor: default;
|
|
8
|
+
padding: 3px;
|
|
9
|
+
box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1), 0 1px 5px 0 rgba(0, 0, 0, 0.05);
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
._context-menu-dark_18ock_12 {
|
|
13
|
+
color: #cccccc;
|
|
14
|
+
background-color: rgba(68, 68, 68, 0.97);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
._context-menu-icon_18ock_17 {
|
|
18
|
+
display: inline-block;
|
|
19
|
+
margin-right: 3px;
|
|
20
|
+
vertical-align: middle;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
._context-menu-icon_18ock_17 > svg {
|
|
24
|
+
width: 30px;
|
|
25
|
+
height: 20px;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
._context-menu-item_18ock_27 {
|
|
29
|
+
padding: 2px;
|
|
30
|
+
white-space: nowrap;
|
|
31
|
+
border-radius: 2px;
|
|
32
|
+
transition: background 0.15s cubic-bezier(0.25, 0.1, 0.25, 1), color 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
._context-menu-item_18ock_27:hover {
|
|
36
|
+
background: #337ab7;
|
|
37
|
+
color: #fff;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
._context-menu-hr_18ock_38 {
|
|
41
|
+
margin-top: 5px;
|
|
42
|
+
margin-bottom: 5px;
|
|
43
|
+
border: 0;
|
|
44
|
+
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
._play-icon_18ock_45 {
|
|
48
|
+
width: 12px;
|
|
49
|
+
height: 12px;
|
|
50
|
+
position: absolute;
|
|
51
|
+
right: 5px;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
._context-menu-span_18ock_52 {
|
|
55
|
+
margin-right: 20px;
|
|
56
|
+
vertical-align: middle;
|
|
57
|
+
display: inline-block;
|
|
58
|
+
line-height: normal;
|
|
59
|
+
white-space: nowrap;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
._context-menu-thumbnail_18ock_60 {
|
|
63
|
+
margin-right: 10px;
|
|
64
|
+
border: 1px solid #888888;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
._context-menu-thumbnail-inline_18ock_65 {
|
|
68
|
+
display: inline-block;
|
|
69
|
+
margin-right: 10px;
|
|
70
|
+
vertical-align: middle;
|
|
71
|
+
}._button_1wnjn_1 {
|
|
72
|
+
display: flex;
|
|
73
|
+
align-items: center;
|
|
74
|
+
box-sizing: border-box;
|
|
75
|
+
padding: 0.5em 0.5em;
|
|
76
|
+
color: #000;
|
|
77
|
+
font-size: 1em;
|
|
78
|
+
line-height: 1em;
|
|
79
|
+
border: 0;
|
|
80
|
+
border-radius: 2.5px;
|
|
81
|
+
background: #fff;
|
|
82
|
+
box-shadow: 0 0 0 1px #cccccc;
|
|
83
|
+
transition: transform 0.15s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.15s cubic-bezier(0.25, 0.1, 0.25, 1), background 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
84
|
+
-webkit-appearance: none;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
._button_1wnjn_1:hover {
|
|
88
|
+
background: #f2f2f2;
|
|
89
|
+
box-shadow: 0 0 0 1px #cccccc;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
._button_1wnjn_1:focus {
|
|
93
|
+
box-shadow: 0 0 0 2px #0089ff;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
._button_1wnjn_1:active {
|
|
97
|
+
transform: scale(0.9);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
._button_1wnjn_1:hover, ._button_1wnjn_1:focus, ._button_1wnjn_1:active {
|
|
101
|
+
cursor: pointer;
|
|
102
|
+
outline: none;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
._button-shortcut_1wnjn_35 {
|
|
106
|
+
padding: 0.1em 5px;
|
|
107
|
+
color: #999;
|
|
108
|
+
font-size: 0.8em;
|
|
109
|
+
transition: color 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
110
|
+
}._cross_2ke8w_1 {
|
|
111
|
+
position: relative;
|
|
112
|
+
width: 1em;
|
|
113
|
+
height: 1em;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
._cross_2ke8w_1:before, ._cross_2ke8w_1:after {
|
|
117
|
+
content: "";
|
|
118
|
+
display: block;
|
|
119
|
+
position: absolute;
|
|
120
|
+
top: 50%;
|
|
121
|
+
left: 0;
|
|
122
|
+
width: 1em;
|
|
123
|
+
height: 1px;
|
|
124
|
+
background: black;
|
|
125
|
+
transform-origin: center;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
._cross_2ke8w_1:before {
|
|
129
|
+
-webkit-transform: translate(0, -50%) rotate(45deg);
|
|
130
|
+
-moz-transform: translate(0, -50%) rotate(45deg);
|
|
131
|
+
transform: translate(0, -50%) rotate(45deg);
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
._cross_2ke8w_1:after {
|
|
135
|
+
-webkit-transform: translate(0, -50%) rotate(-45deg);
|
|
136
|
+
-moz-transform: translate(0, -50%) rotate(-45deg);
|
|
137
|
+
transform: translate(0, -50%) rotate(-45deg);
|
|
138
|
+
}._modal-background_zzhoe_1 {
|
|
139
|
+
position: absolute;
|
|
140
|
+
z-index: 1000;
|
|
141
|
+
top: 0;
|
|
142
|
+
right: 0;
|
|
143
|
+
bottom: 0;
|
|
144
|
+
left: 0;
|
|
145
|
+
background: rgba(0, 0, 0, 0.666);
|
|
146
|
+
animation: _fade-in_zzhoe_1 0.2s cubic-bezier(0.25, 0.1, 0.25, 1) 1;
|
|
147
|
+
transition: opacity 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
._modal-hide_zzhoe_13 {
|
|
151
|
+
opacity: 0;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
._modal-wrap_zzhoe_17 {
|
|
155
|
+
position: absolute;
|
|
156
|
+
top: 20px;
|
|
157
|
+
right: 20px;
|
|
158
|
+
bottom: 20px;
|
|
159
|
+
left: 20px;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
._modal-window_zzhoe_25 {
|
|
163
|
+
position: relative;
|
|
164
|
+
width: 100%;
|
|
165
|
+
max-width: 640px;
|
|
166
|
+
max-height: 100%;
|
|
167
|
+
margin-left: auto;
|
|
168
|
+
margin-right: auto;
|
|
169
|
+
color: #000;
|
|
170
|
+
border-radius: 5px;
|
|
171
|
+
background: #fff;
|
|
172
|
+
animation: _fade-scale-in_zzhoe_1 0.2s cubic-bezier(0.25, 0.1, 0.25, 1) 1;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
._modal-window-max-height_zzhoe_38 {
|
|
176
|
+
height: 100%;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
._modal-content_zzhoe_42 {
|
|
180
|
+
padding: 10px;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
@keyframes _fade-in_zzhoe_1 {
|
|
184
|
+
from {
|
|
185
|
+
opacity: 0;
|
|
186
|
+
}
|
|
187
|
+
to {
|
|
188
|
+
opacity: 1;
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
@keyframes _fade-scale-in_zzhoe_1 {
|
|
193
|
+
from {
|
|
194
|
+
opacity: 0;
|
|
195
|
+
transform: scale(0.5);
|
|
196
|
+
}
|
|
197
|
+
to {
|
|
198
|
+
opacity: 1;
|
|
199
|
+
transform: scale(1);
|
|
200
|
+
}
|
|
201
|
+
}._dialog-header_wp50s_1 {
|
|
202
|
+
position: relative;
|
|
203
|
+
z-index: 2;
|
|
204
|
+
display: flex;
|
|
205
|
+
justify-content: space-between;
|
|
206
|
+
margin: 0 -10px 10px -10px;
|
|
207
|
+
padding: 0 10px 10px 10px;
|
|
208
|
+
border-bottom: 1px solid #cccccc;
|
|
209
|
+
}
|
|
210
|
+
._dialog-header_wp50s_1 h3 {
|
|
211
|
+
margin: 0;
|
|
212
|
+
padding: 0;
|
|
213
|
+
font-size: 20px;
|
|
214
|
+
line-height: 1em;
|
|
215
|
+
}
|
|
216
|
+
._dialog-header_wp50s_1 button {
|
|
217
|
+
font-size: 10px;
|
|
218
|
+
}
|
|
219
|
+
._dialog-main-max-height_wp50s_20 {
|
|
220
|
+
position: absolute;
|
|
221
|
+
z-index: 1;
|
|
222
|
+
top: 40px;
|
|
223
|
+
right: 0;
|
|
224
|
+
bottom: 50px;
|
|
225
|
+
left: 0;
|
|
226
|
+
padding: 10px;
|
|
227
|
+
overflow: auto;
|
|
228
|
+
}
|
|
229
|
+
._dialog-footer_wp50s_31, ._dialog-footer-max-height_wp50s_31 {
|
|
230
|
+
display: flex;
|
|
231
|
+
justify-content: space-between;
|
|
232
|
+
margin: 10px -10px 0 -10px;
|
|
233
|
+
padding: 10px 10px 0 10px;
|
|
234
|
+
border-top: 1px solid #cccccc;
|
|
235
|
+
}
|
|
236
|
+
._dialog-footer_wp50s_31 button, ._dialog-footer-max-height_wp50s_31 button {
|
|
237
|
+
font-size: 14px;
|
|
238
|
+
}
|
|
239
|
+
._dialog-footer-max-height_wp50s_31 {
|
|
240
|
+
position: absolute;
|
|
241
|
+
z-index: 2;
|
|
242
|
+
left: 10px;
|
|
243
|
+
right: 10px;
|
|
244
|
+
bottom: 10px;
|
|
245
|
+
}/*
|
|
246
|
+
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700');
|
|
247
|
+
*/
|
|
248
|
+
|
|
249
|
+
table.table-track-options {
|
|
250
|
+
border-collapse: collapse;
|
|
251
|
+
margin-left: auto;
|
|
252
|
+
margin-right: auto;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
td.td-track-options {
|
|
256
|
+
border: 1px solid #fff;
|
|
257
|
+
outline: none;
|
|
258
|
+
padding: 3px;
|
|
259
|
+
position: relative;
|
|
260
|
+
font-family: 'Roboto', sans-serif;
|
|
261
|
+
font-size: 14px;
|
|
262
|
+
color: #666;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.cell-label {
|
|
266
|
+
position: absolute;
|
|
267
|
+
left: 0px;
|
|
268
|
+
top: 0px;
|
|
269
|
+
margin-left: 5px;
|
|
270
|
+
color: #777;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.modal-dialog {
|
|
274
|
+
position: relative;
|
|
275
|
+
display: table;
|
|
276
|
+
overflow-y: auto;
|
|
277
|
+
overflow-x: auto;
|
|
278
|
+
width: auto;
|
|
279
|
+
min-width: 300px;
|
|
280
|
+
margin: auto;
|
|
281
|
+
}
|
|
282
|
+
._multitrack-header_1yz7l_1,
|
|
283
|
+
._multitrack-header-focus_1yz7l_2,
|
|
284
|
+
._multitrack-header-squeazed_1yz7l_3 {
|
|
285
|
+
position: relative;
|
|
286
|
+
display: flex;
|
|
287
|
+
justify-content: space-between;
|
|
288
|
+
height: 24px;
|
|
289
|
+
margin-top: 4px;
|
|
290
|
+
margin-bottom: 4px;
|
|
291
|
+
color: #999;
|
|
292
|
+
font-size: 12px;
|
|
293
|
+
line-height: 24px;
|
|
294
|
+
vertical-align: middle;
|
|
295
|
+
border: 0;
|
|
296
|
+
border-radius: 3px;
|
|
297
|
+
background: #e5e5e5;
|
|
298
|
+
transition: height 0.15s cubic-bezier(0.25, 0.1, 0.25, 1), margin 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
._multitrack-header-dark_1yz7l_20 {
|
|
302
|
+
background: #222;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
._multitrack-header-focus_1yz7l_2 {
|
|
306
|
+
height: 32px;
|
|
307
|
+
margin-top: 0;
|
|
308
|
+
margin-bottom: 0;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
._multitrack-header-id_1yz7l_30 {
|
|
312
|
+
padding-left: 3px;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
._multitrack-header-id_1yz7l_30:before {
|
|
316
|
+
content: "ID:";
|
|
317
|
+
font-weight: bold;
|
|
318
|
+
padding-right: 5px;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
._multitrack-header-left_1yz7l_39 {
|
|
322
|
+
display: flex;
|
|
323
|
+
flex-grow: 1;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
._multitrack-header-grabber_1yz7l_44,
|
|
327
|
+
._multitrack-header-grabber-squeazed_1yz7l_45 {
|
|
328
|
+
display: flex;
|
|
329
|
+
align-items: center;
|
|
330
|
+
justify-content: center;
|
|
331
|
+
width: 24px;
|
|
332
|
+
height: 100%;
|
|
333
|
+
cursor: move;
|
|
334
|
+
border-radius: 3px 0 0 3px;
|
|
335
|
+
transition: background 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
._multitrack-header-grabber_1yz7l_44:hover,
|
|
339
|
+
._multitrack-header-grabber-squeazed_1yz7l_45:hover {
|
|
340
|
+
background: #999;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
._multitrack-header-grabber_1yz7l_44:hover div,
|
|
344
|
+
._multitrack-header-grabber-squeazed_1yz7l_45:hover div {
|
|
345
|
+
background: #fff;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
._multitrack-header-grabber_1yz7l_44 div,
|
|
349
|
+
._multitrack-header-grabber-squeazed_1yz7l_45 div {
|
|
350
|
+
width: 1px;
|
|
351
|
+
height: 50%;
|
|
352
|
+
margin: 1px;
|
|
353
|
+
background: #999;
|
|
354
|
+
transition: background 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
._multitrack-header-dark_1yz7l_20 ._multitrack-header-grabber_1yz7l_44 div {
|
|
358
|
+
background: #666;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
._multitrack-header-grabber-squeazed_1yz7l_45 {
|
|
362
|
+
width: 19.2px;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
._multitrack-header-search_1yz7l_80 {
|
|
366
|
+
position: relative;
|
|
367
|
+
flex-grow: 1;
|
|
368
|
+
height: 100%;
|
|
369
|
+
margin-right: 12px;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
._multitrack-header-search_1yz7l_80:after {
|
|
373
|
+
position: absolute;
|
|
374
|
+
top: 3px;
|
|
375
|
+
bottom: 3px;
|
|
376
|
+
right: -12px;
|
|
377
|
+
display: block;
|
|
378
|
+
content: "";
|
|
379
|
+
width: 1px;
|
|
380
|
+
margin: 0 6px;
|
|
381
|
+
background: #cccccc;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
._multitrack-header-dark_1yz7l_20 ._multitrack-header-search_1yz7l_80:after {
|
|
385
|
+
background: #666;
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
._multitrack-header-nav-list_1yz7l_102,
|
|
389
|
+
._multitrack-header_1yz7l_1 > nav {
|
|
390
|
+
display: flex;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
._multitrack-header-icon_1yz7l_107,
|
|
394
|
+
._multitrack-header-icon-squeazed_1yz7l_108 {
|
|
395
|
+
width: 24px;
|
|
396
|
+
height: 100%;
|
|
397
|
+
padding: 6px;
|
|
398
|
+
transition: background 0.15s cubic-bezier(0.25, 0.1, 0.25, 1), color 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
._multitrack-header-icon_1yz7l_107 g,
|
|
402
|
+
._multitrack-header-icon-squeazed_1yz7l_108 g {
|
|
403
|
+
stroke: #999;
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
._multitrack-header-icon_1yz7l_107:hover, ._multitrack-header-icon_1yz7l_107:active, ._multitrack-header-icon_1yz7l_107:focus,
|
|
407
|
+
._multitrack-header-icon-squeazed_1yz7l_108:hover,
|
|
408
|
+
._multitrack-header-icon-squeazed_1yz7l_108:active,
|
|
409
|
+
._multitrack-header-icon-squeazed_1yz7l_108:focus {
|
|
410
|
+
color: #fff;
|
|
411
|
+
background: #337ab7;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
._multitrack-header-icon_1yz7l_107:hover g, ._multitrack-header-icon_1yz7l_107:active g, ._multitrack-header-icon_1yz7l_107:focus g,
|
|
415
|
+
._multitrack-header-icon-squeazed_1yz7l_108:hover g,
|
|
416
|
+
._multitrack-header-icon-squeazed_1yz7l_108:active g,
|
|
417
|
+
._multitrack-header-icon-squeazed_1yz7l_108:focus g {
|
|
418
|
+
stroke: #fff;
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
._multitrack-header-icon_1yz7l_107:last-child,
|
|
422
|
+
._multitrack-header-icon-squeazed_1yz7l_108:last-child {
|
|
423
|
+
border-radius: 0 3px 3px 0;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
._mouse-tool-selection_1yz7l_136 {
|
|
427
|
+
color: white;
|
|
428
|
+
border-radius: 3px 0 0 3px;
|
|
429
|
+
background: #337ab7;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
._multitrack-header-icon-squeazed_1yz7l_108 {
|
|
433
|
+
width: 20px 5;
|
|
434
|
+
padding-left: 3px;
|
|
435
|
+
padding-right: 3px;
|
|
436
|
+
}._top-right-handle_cizw2_1,
|
|
437
|
+
._bottom-right-handle_cizw2_2 {
|
|
438
|
+
border-right: black solid;
|
|
439
|
+
border-top: black solid;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
._top-left-handle_cizw2_7,
|
|
443
|
+
._bottom-left-handle_cizw2_8 {
|
|
444
|
+
border-left: black solid;
|
|
445
|
+
border-top: black solid;
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
._top-draggable-handle_cizw2_13,
|
|
449
|
+
._bottom-draggable-handle_cizw2_14,
|
|
450
|
+
._left-draggable-handle_cizw2_15,
|
|
451
|
+
._right-draggable-handle_cizw2_16 {
|
|
452
|
+
position: absolute;
|
|
453
|
+
opacity: 0;
|
|
454
|
+
transition: transform 0.15s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
._draggable-div_cizw2_22 {
|
|
458
|
+
background-color: transparent;
|
|
459
|
+
box-sizing: border-box;
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
._top-draggable-handle-grabber_cizw2_27,
|
|
463
|
+
._bottom-draggable-handle-grabber_cizw2_28 {
|
|
464
|
+
width: 10px;
|
|
465
|
+
height: 4px;
|
|
466
|
+
border-top: 1px solid black;
|
|
467
|
+
border-bottom: 1px solid black;
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
._top-draggable-handle-grabber_cizw2_27 {
|
|
471
|
+
margin: 4px 7px 4px 7px;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
._bottom-draggable-handle-grabber_cizw2_28 {
|
|
475
|
+
margin: 4px 7px 4px 7px;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
._left-draggable-handle-grabber_cizw2_43,
|
|
479
|
+
._right-draggable-handle-grabber_cizw2_44 {
|
|
480
|
+
width: 4px;
|
|
481
|
+
height: 10px;
|
|
482
|
+
border-left: 1px solid black;
|
|
483
|
+
border-right: 1px solid black;
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
._left-draggable-handle-grabber_cizw2_43 {
|
|
487
|
+
margin: 7px 4px 7px 4px;
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
._right-draggable-handle-grabber_cizw2_44 {
|
|
491
|
+
margin: 7px 4px 7px 4px;
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
._draggable-div_cizw2_22:hover ._top-draggable-handle_cizw2_13,
|
|
495
|
+
._draggable-div_cizw2_22:hover ._bottom-draggable-handle_cizw2_14,
|
|
496
|
+
._draggable-div_cizw2_22:hover ._left-draggable-handle_cizw2_15,
|
|
497
|
+
._draggable-div_cizw2_22:hover ._right-draggable-handle_cizw2_16 {
|
|
498
|
+
opacity: 0.5;
|
|
499
|
+
background: rgba(255, 255, 255, 0.75);
|
|
500
|
+
box-shadow: 0 0 3px 1px rgba(255, 255, 255, 0.75);
|
|
501
|
+
border-radius: 3px;
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
._top-draggable-handle_cizw2_13:hover, ._top-draggable-handle_cizw2_13:active,
|
|
505
|
+
._bottom-draggable-handle_cizw2_14:hover, ._bottom-draggable-handle_cizw2_14:active,
|
|
506
|
+
._left-draggable-handle_cizw2_15:hover, ._left-draggable-handle_cizw2_15:active,
|
|
507
|
+
._right-draggable-handle_cizw2_16:hover, ._right-draggable-handle_cizw2_16:active {
|
|
508
|
+
opacity: 1 !important;
|
|
509
|
+
transform: scale(2);
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
._top-draggable-handle_cizw2_13:hover ._top-draggable-handle-grabber_cizw2_27,
|
|
513
|
+
._top-draggable-handle_cizw2_13:hover ._bottom-draggable-handle-grabber_cizw2_28,
|
|
514
|
+
._top-draggable-handle_cizw2_13:hover ._left-draggable-handle-grabber_cizw2_43,
|
|
515
|
+
._top-draggable-handle_cizw2_13:hover ._right-draggable-handle-grabber_cizw2_44, ._top-draggable-handle_cizw2_13:active ._top-draggable-handle-grabber_cizw2_27,
|
|
516
|
+
._top-draggable-handle_cizw2_13:active ._bottom-draggable-handle-grabber_cizw2_28,
|
|
517
|
+
._top-draggable-handle_cizw2_13:active ._left-draggable-handle-grabber_cizw2_43,
|
|
518
|
+
._top-draggable-handle_cizw2_13:active ._right-draggable-handle-grabber_cizw2_44,
|
|
519
|
+
._bottom-draggable-handle_cizw2_14:hover ._top-draggable-handle-grabber_cizw2_27,
|
|
520
|
+
._bottom-draggable-handle_cizw2_14:hover ._bottom-draggable-handle-grabber_cizw2_28,
|
|
521
|
+
._bottom-draggable-handle_cizw2_14:hover ._left-draggable-handle-grabber_cizw2_43,
|
|
522
|
+
._bottom-draggable-handle_cizw2_14:hover ._right-draggable-handle-grabber_cizw2_44, ._bottom-draggable-handle_cizw2_14:active ._top-draggable-handle-grabber_cizw2_27,
|
|
523
|
+
._bottom-draggable-handle_cizw2_14:active ._bottom-draggable-handle-grabber_cizw2_28,
|
|
524
|
+
._bottom-draggable-handle_cizw2_14:active ._left-draggable-handle-grabber_cizw2_43,
|
|
525
|
+
._bottom-draggable-handle_cizw2_14:active ._right-draggable-handle-grabber_cizw2_44,
|
|
526
|
+
._left-draggable-handle_cizw2_15:hover ._top-draggable-handle-grabber_cizw2_27,
|
|
527
|
+
._left-draggable-handle_cizw2_15:hover ._bottom-draggable-handle-grabber_cizw2_28,
|
|
528
|
+
._left-draggable-handle_cizw2_15:hover ._left-draggable-handle-grabber_cizw2_43,
|
|
529
|
+
._left-draggable-handle_cizw2_15:hover ._right-draggable-handle-grabber_cizw2_44, ._left-draggable-handle_cizw2_15:active ._top-draggable-handle-grabber_cizw2_27,
|
|
530
|
+
._left-draggable-handle_cizw2_15:active ._bottom-draggable-handle-grabber_cizw2_28,
|
|
531
|
+
._left-draggable-handle_cizw2_15:active ._left-draggable-handle-grabber_cizw2_43,
|
|
532
|
+
._left-draggable-handle_cizw2_15:active ._right-draggable-handle-grabber_cizw2_44,
|
|
533
|
+
._right-draggable-handle_cizw2_16:hover ._top-draggable-handle-grabber_cizw2_27,
|
|
534
|
+
._right-draggable-handle_cizw2_16:hover ._bottom-draggable-handle-grabber_cizw2_28,
|
|
535
|
+
._right-draggable-handle_cizw2_16:hover ._left-draggable-handle-grabber_cizw2_43,
|
|
536
|
+
._right-draggable-handle_cizw2_16:hover ._right-draggable-handle-grabber_cizw2_44, ._right-draggable-handle_cizw2_16:active ._top-draggable-handle-grabber_cizw2_27,
|
|
537
|
+
._right-draggable-handle_cizw2_16:active ._bottom-draggable-handle-grabber_cizw2_28,
|
|
538
|
+
._right-draggable-handle_cizw2_16:active ._left-draggable-handle-grabber_cizw2_43,
|
|
539
|
+
._right-draggable-handle_cizw2_16:active ._right-draggable-handle-grabber_cizw2_44 {
|
|
540
|
+
box-shadow: 0 0 3px 1px #0089ff;
|
|
541
|
+
background: #0089ff;
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
._top-draggable-handle_cizw2_13,
|
|
545
|
+
._bottom-draggable-handle_cizw2_14 {
|
|
546
|
+
height: 12px;
|
|
547
|
+
cursor: row-resize;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
._left-draggable-handle_cizw2_15,
|
|
551
|
+
._right-draggable-handle_cizw2_16 {
|
|
552
|
+
width: 12px;
|
|
553
|
+
cursor: col-resize;
|
|
554
|
+
}._horizontal-tiled-plot_1bqkg_1 {
|
|
555
|
+
position: relative;
|
|
556
|
+
}._tiled-plot_1y7td_1 {
|
|
557
|
+
position: relative;
|
|
558
|
+
flex: 1;
|
|
559
|
+
overflow: hidden;
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
._horizontalList_1y7td_7 {
|
|
563
|
+
display: flex;
|
|
564
|
+
width: 600px;
|
|
565
|
+
height: 300px;
|
|
566
|
+
white-space: nowrap;
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
._list_1y7td_14 {
|
|
570
|
+
width: 400px;
|
|
571
|
+
height: 600px;
|
|
572
|
+
overflow: hidden;
|
|
573
|
+
-webkit-overflow-scrolling: touch;
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
._stylizedList_1y7td_21 {
|
|
577
|
+
position: relative;
|
|
578
|
+
z-index: 0;
|
|
579
|
+
background-color: #f3f3f3;
|
|
580
|
+
outline: none;
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
._stylizedItem_1y7td_28 {
|
|
584
|
+
position: relative;
|
|
585
|
+
display: flex;
|
|
586
|
+
align-items: center;
|
|
587
|
+
width: 100%;
|
|
588
|
+
background-color: transparent;
|
|
589
|
+
user-select: none;
|
|
590
|
+
color: #333;
|
|
591
|
+
font-weight: 400;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
._stylizedHelper_1y7td_39 {
|
|
595
|
+
box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.2), 0 -5px 5px -5px rgba(0, 0, 0, 0.2);
|
|
596
|
+
background-color: rgba(255, 255, 255, 0.8);
|
|
597
|
+
cursor: row-resize;
|
|
598
|
+
}
|
|
599
|
+
._stylizedHelper_1y7td_39._horizontalItem_1y7td_44 {
|
|
600
|
+
cursor: col-resize;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
._horizontalItem_1y7td_44 {
|
|
604
|
+
display: flex;
|
|
605
|
+
flex-shrink: 0;
|
|
606
|
+
align-items: center;
|
|
607
|
+
justify-content: center;
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
._resizable-track_1y7td_55 {
|
|
611
|
+
width: 100%;
|
|
612
|
+
height: 100%;
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
path._domain_1y7td_60 {
|
|
616
|
+
stroke-width: 0px;
|
|
617
|
+
}._track-range-selection_5bcsr_1 {
|
|
618
|
+
position: absolute;
|
|
619
|
+
z-index: -1;
|
|
620
|
+
opacity: 0;
|
|
621
|
+
transition: opacity 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
._track-range-selection-active_5bcsr_8 {
|
|
625
|
+
z-index: 1;
|
|
626
|
+
opacity: 1;
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
._track-range-selection-active-primary_5bcsr_14 {
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
._track-range-selection-active-secondary_5bcsr_18 {
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
._track-range-selection-group-inactive_5bcsr_22 {
|
|
636
|
+
display: none;
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
._track-range-selection-group-brush-selection_5bcsr_26 {
|
|
640
|
+
outline: 2px solid rgba(0, 0, 0, 0.33);
|
|
641
|
+
fill: black;
|
|
642
|
+
fill-opacity: 0.1;
|
|
643
|
+
}._track-control_w7hx2_1,
|
|
644
|
+
._track-control-vertical_w7hx2_2 {
|
|
645
|
+
position: absolute;
|
|
646
|
+
z-index: 1;
|
|
647
|
+
display: flex;
|
|
648
|
+
background: rgba(255, 255, 255, 0.75);
|
|
649
|
+
right: 2px;
|
|
650
|
+
top: 2px;
|
|
651
|
+
border-radius: 2.5px;
|
|
652
|
+
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 0 3px 0 rgba(0, 0, 0, 0.1);
|
|
653
|
+
opacity: 0;
|
|
654
|
+
transition: opacity 0.15s cubic-bezier(0.25, 0.1, 0.25, 1), background 0.15s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
._track-control-dark_w7hx2_15,
|
|
658
|
+
._track-control-dark_w7hx2_15 ._track-control-active_w7hx2_16 {
|
|
659
|
+
background: rgba(40, 40, 40, 0.85);
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
._track-control-vertical_w7hx2_2 {
|
|
663
|
+
flex-direction: column-reverse;
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
._track-control-left_w7hx2_24 {
|
|
667
|
+
left: 2px;
|
|
668
|
+
right: auto;
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
._track-control-active_w7hx2_16,
|
|
672
|
+
._track-control-vertical-active_w7hx2_30 {
|
|
673
|
+
opacity: 1;
|
|
674
|
+
z-index: 1;
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
._track-control-active_w7hx2_16:hover,
|
|
678
|
+
._track-control-vertical-active_w7hx2_30:hover {
|
|
679
|
+
background: rgb(255, 255, 255);
|
|
680
|
+
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 0 3px 0 rgba(0, 0, 0, 0.2);
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
._track-control-dark_w7hx2_15._track-control-active_w7hx2_16:hover {
|
|
684
|
+
background: rgba(34, 34, 34, 0.95);
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
._track-control-active_w7hx2_16 {
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
._track-control-padding-right_w7hx2_48 {
|
|
691
|
+
right: 80px;
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
._track-control-button_w7hx2_52 {
|
|
695
|
+
width: 20px;
|
|
696
|
+
height: 20px;
|
|
697
|
+
padding: 4px;
|
|
698
|
+
cursor: pointer;
|
|
699
|
+
opacity: 0.66;
|
|
700
|
+
transition: background 0.15s cubic-bezier(0.25, 0.1, 0.25, 1), color 0.15s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
._track-control-button_w7hx2_52:hover {
|
|
704
|
+
color: #fff;
|
|
705
|
+
background: #337ab7;
|
|
706
|
+
opacity: 1;
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
._track-control-button_w7hx2_52:first-child {
|
|
710
|
+
border-radius: 2.5px 0 0 2.5px;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
._track-control-button_w7hx2_52:last-child {
|
|
714
|
+
border-radius: 0 2.5px 2.5px 0;
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
._track-control-dark_w7hx2_15 ._track-control-button_w7hx2_52 {
|
|
718
|
+
color: #cccccc;
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
._track-control-dark_w7hx2_15 ._track-control-button_w7hx2_52:hover {
|
|
722
|
+
color: #fff;
|
|
723
|
+
background: #337ab7;
|
|
724
|
+
opacity: 1;
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
._track-control-button-vertical_w7hx2_81:first-child {
|
|
728
|
+
border-radius: 0 0 2.5px 2.5px;
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
._track-control-button-vertical_w7hx2_81:last-child {
|
|
732
|
+
border-radius: 2.5px 2.5px 0 0;
|
|
733
|
+
}._center-track_fiu64_1 {
|
|
734
|
+
position: relative;
|
|
735
|
+
background: transparent;
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
._center-track-container_fiu64_6 {
|
|
739
|
+
position: absolute;
|
|
740
|
+
z-index: 1;
|
|
741
|
+
}._drag-listening-div-active_19gkt_1 {
|
|
742
|
+
z-index: 10;
|
|
743
|
+
box-shadow: inset 0 0 3px 0 red;
|
|
744
|
+
}._gallery-tracks_fbxxi_1 {
|
|
745
|
+
position: relative;
|
|
746
|
+
top: 0;
|
|
747
|
+
left: 0;
|
|
748
|
+
width: 100%;
|
|
749
|
+
height: 100%;
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
._gallery-track_fbxxi_1 {
|
|
753
|
+
position: absolute;
|
|
754
|
+
box-sizing: border-box;
|
|
755
|
+
top: 0;
|
|
756
|
+
right: 0;
|
|
757
|
+
bottom: 0;
|
|
758
|
+
left: 0;
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
._gallery-sub-track_fbxxi_18,
|
|
762
|
+
._gallery-invisible-track_fbxxi_19 {
|
|
763
|
+
position: absolute;
|
|
764
|
+
}._track-renderer_11dwb_1 {
|
|
765
|
+
position: relative;
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
._track-renderer-element_11dwb_5,
|
|
769
|
+
._track-renderer-events_11dwb_6 {
|
|
770
|
+
position: absolute;
|
|
771
|
+
top: 0;
|
|
772
|
+
right: 0;
|
|
773
|
+
bottom: 0;
|
|
774
|
+
left: 0;
|
|
775
|
+
z-index: -1;
|
|
776
|
+
}
|
|
777
|
+
|
|
778
|
+
._track-renderer-events_11dwb_6 {
|
|
779
|
+
z-index: 1;
|
|
780
|
+
}.tileset-finder-label {
|
|
781
|
+
font-weight: 700;
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
.tileset-finder-search-box {
|
|
785
|
+
margin-left: 10px;
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
.tileset-finder-search-bar {
|
|
789
|
+
display: flex;
|
|
790
|
+
margin-left: 5px;
|
|
791
|
+
justify-content: space-between;
|
|
792
|
+
align-items: center;
|
|
793
|
+
}
|
|
794
|
+
.tileset-finder-checkbox-tree {
|
|
795
|
+
margin: 5px;
|
|
796
|
+
padding: 3px;
|
|
797
|
+
border: 1px solid #aaaaaa;
|
|
798
|
+
border-radius: 5px;
|
|
799
|
+
}
|
|
800
|
+
|
|
801
|
+
.react-checkbox-tree {
|
|
802
|
+
display: -webkit-box;
|
|
803
|
+
display: -ms-flexbox;
|
|
804
|
+
display: flex;
|
|
805
|
+
-webkit-box-orient: horizontal;
|
|
806
|
+
-webkit-box-direction: reverse;
|
|
807
|
+
-ms-flex-direction: row-reverse;
|
|
808
|
+
flex-direction: row-reverse;
|
|
809
|
+
font-size: 16px;
|
|
810
|
+
}
|
|
811
|
+
.react-checkbox-tree > ol {
|
|
812
|
+
-webkit-box-flex: 1;
|
|
813
|
+
-ms-flex: 1 1 auto;
|
|
814
|
+
flex: 1 1 auto;
|
|
815
|
+
}
|
|
816
|
+
.react-checkbox-tree ol {
|
|
817
|
+
margin: 0;
|
|
818
|
+
padding-left: 0;
|
|
819
|
+
list-style-type: none;
|
|
820
|
+
}
|
|
821
|
+
.react-checkbox-tree ol ol {
|
|
822
|
+
padding-left: 24px;
|
|
823
|
+
}
|
|
824
|
+
.react-checkbox-tree button {
|
|
825
|
+
line-height: normal;
|
|
826
|
+
color: inherit;
|
|
827
|
+
}
|
|
828
|
+
.react-checkbox-tree button:disabled {
|
|
829
|
+
cursor: not-allowed;
|
|
830
|
+
}
|
|
831
|
+
.react-checkbox-tree .rct-bare-label {
|
|
832
|
+
cursor: default;
|
|
833
|
+
}
|
|
834
|
+
.react-checkbox-tree label {
|
|
835
|
+
margin-bottom: 0;
|
|
836
|
+
cursor: pointer;
|
|
837
|
+
}
|
|
838
|
+
.react-checkbox-tree label:hover {
|
|
839
|
+
background: rgba(51, 51, 204, 0.1);
|
|
840
|
+
}
|
|
841
|
+
.react-checkbox-tree label:active,
|
|
842
|
+
.react-checkbox-tree label:focus {
|
|
843
|
+
background: rgba(51, 51, 204, 0.15);
|
|
844
|
+
}
|
|
845
|
+
.react-checkbox-tree:not(.rct-native-display) input {
|
|
846
|
+
display: none;
|
|
847
|
+
}
|
|
848
|
+
.react-checkbox-tree.rct-native-display input {
|
|
849
|
+
margin: 0 5px;
|
|
850
|
+
}
|
|
851
|
+
.react-checkbox-tree .rct-icon {
|
|
852
|
+
display: inline-block;
|
|
853
|
+
text-align: center;
|
|
854
|
+
text-rendering: auto;
|
|
855
|
+
font-family: 'Font Awesome 5 Free', 'FontAwesome', sans-serif;
|
|
856
|
+
font-weight: normal;
|
|
857
|
+
font-variant: normal;
|
|
858
|
+
font-style: normal;
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
.rct-disabled > .rct-text > label {
|
|
862
|
+
opacity: 0.75;
|
|
863
|
+
cursor: not-allowed;
|
|
864
|
+
}
|
|
865
|
+
.rct-disabled > .rct-text > label:hover {
|
|
866
|
+
background: transparent;
|
|
867
|
+
}
|
|
868
|
+
.rct-disabled > .rct-text > label:active {
|
|
869
|
+
background: transparent;
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
.rct-text {
|
|
873
|
+
display: -webkit-box;
|
|
874
|
+
display: -ms-flexbox;
|
|
875
|
+
display: flex;
|
|
876
|
+
-webkit-box-align: center;
|
|
877
|
+
-ms-flex-align: center;
|
|
878
|
+
align-items: center;
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
.rct-options {
|
|
882
|
+
-webkit-box-flex: 0;
|
|
883
|
+
-ms-flex: 0 0 auto;
|
|
884
|
+
flex: 0 0 auto;
|
|
885
|
+
margin-left: 0.5rem;
|
|
886
|
+
text-align: right;
|
|
887
|
+
}
|
|
888
|
+
|
|
889
|
+
.rct-option {
|
|
890
|
+
opacity: 0.75;
|
|
891
|
+
border: 0;
|
|
892
|
+
background: none;
|
|
893
|
+
cursor: pointer;
|
|
894
|
+
padding: 0 4px;
|
|
895
|
+
font-size: 18px;
|
|
896
|
+
}
|
|
897
|
+
.rct-option:hover {
|
|
898
|
+
opacity: 1;
|
|
899
|
+
}
|
|
900
|
+
.rct-option + .rct-option {
|
|
901
|
+
margin-left: 2px;
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
.rct-collapse,
|
|
905
|
+
.rct-checkbox,
|
|
906
|
+
.rct-node-icon {
|
|
907
|
+
padding: 0 5px;
|
|
908
|
+
}
|
|
909
|
+
.rct-collapse *,
|
|
910
|
+
.rct-checkbox *,
|
|
911
|
+
.rct-node-icon * {
|
|
912
|
+
display: inline-block;
|
|
913
|
+
margin: 0;
|
|
914
|
+
width: 14px;
|
|
915
|
+
}
|
|
916
|
+
|
|
917
|
+
.rct-collapse {
|
|
918
|
+
-ms-flex-item-align: stretch;
|
|
919
|
+
align-self: stretch;
|
|
920
|
+
border: 0;
|
|
921
|
+
background: none;
|
|
922
|
+
line-height: normal;
|
|
923
|
+
color: inherit;
|
|
924
|
+
font-size: 12px;
|
|
925
|
+
}
|
|
926
|
+
.rct-collapse.rct-collapse-btn {
|
|
927
|
+
cursor: pointer;
|
|
928
|
+
}
|
|
929
|
+
.rct-collapse > .rct-icon-expand-close {
|
|
930
|
+
opacity: 0.5;
|
|
931
|
+
}
|
|
932
|
+
.rct-collapse > .rct-icon-expand-close:hover {
|
|
933
|
+
opacity: 1;
|
|
934
|
+
}
|
|
935
|
+
|
|
936
|
+
.rct-native-display .rct-checkbox {
|
|
937
|
+
display: none;
|
|
938
|
+
}
|
|
939
|
+
|
|
940
|
+
.rct-node-clickable {
|
|
941
|
+
cursor: pointer;
|
|
942
|
+
}
|
|
943
|
+
.rct-node-clickable:hover {
|
|
944
|
+
background: rgba(51, 51, 204, 0.1);
|
|
945
|
+
}
|
|
946
|
+
.rct-node-clickable:focus {
|
|
947
|
+
outline: 0;
|
|
948
|
+
background: rgba(51, 51, 204, 0.2);
|
|
949
|
+
}
|
|
950
|
+
|
|
951
|
+
.rct-node-icon {
|
|
952
|
+
color: #33c;
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
.rct-title {
|
|
956
|
+
padding: 0 5px;
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
.rct-icons-fa4 .rct-icon-expand-close::before {
|
|
960
|
+
content: '\f054';
|
|
961
|
+
}
|
|
962
|
+
.rct-icons-fa4 .rct-icon-expand-open::before {
|
|
963
|
+
content: '\f078';
|
|
964
|
+
}
|
|
965
|
+
.rct-icons-fa4 .rct-icon-uncheck::before {
|
|
966
|
+
content: '\f096';
|
|
967
|
+
}
|
|
968
|
+
.rct-icons-fa4 .rct-icon-check::before {
|
|
969
|
+
content: '\f046';
|
|
970
|
+
}
|
|
971
|
+
.rct-icons-fa4 .rct-icon-half-check::before {
|
|
972
|
+
opacity: 0.5;
|
|
973
|
+
content: '\f046';
|
|
974
|
+
}
|
|
975
|
+
.rct-icons-fa4 .rct-icon-leaf::before {
|
|
976
|
+
content: '\f016';
|
|
977
|
+
}
|
|
978
|
+
.rct-icons-fa4 .rct-icon-parent-open::before {
|
|
979
|
+
content: '\f115';
|
|
980
|
+
}
|
|
981
|
+
.rct-icons-fa4 .rct-icon-parent-close::before {
|
|
982
|
+
content: '\f114';
|
|
983
|
+
}
|
|
984
|
+
.rct-icons-fa4 .rct-icon-expand-all::before {
|
|
985
|
+
content: '\f0fe';
|
|
986
|
+
}
|
|
987
|
+
.rct-icons-fa4 .rct-icon-collapse-all::before {
|
|
988
|
+
content: '\f146';
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
.rct-icons-fa5 .rct-icon-expand-close::before {
|
|
992
|
+
font-weight: 900;
|
|
993
|
+
content: '\f054';
|
|
994
|
+
}
|
|
995
|
+
.rct-icons-fa5 .rct-icon-expand-open::before {
|
|
996
|
+
font-weight: 900;
|
|
997
|
+
content: '\f078';
|
|
998
|
+
}
|
|
999
|
+
.rct-icons-fa5 .rct-icon-uncheck::before {
|
|
1000
|
+
content: '\f0c8';
|
|
1001
|
+
}
|
|
1002
|
+
.rct-icons-fa5 .rct-icon-check::before {
|
|
1003
|
+
content: '\f14a';
|
|
1004
|
+
}
|
|
1005
|
+
.rct-icons-fa5 .rct-icon-half-check::before {
|
|
1006
|
+
opacity: 0.5;
|
|
1007
|
+
content: '\f14a';
|
|
1008
|
+
}
|
|
1009
|
+
.rct-icons-fa5 .rct-icon-leaf::before {
|
|
1010
|
+
content: '\f15b';
|
|
1011
|
+
}
|
|
1012
|
+
.rct-icons-fa5 .rct-icon-parent-open::before {
|
|
1013
|
+
content: '\f07c';
|
|
1014
|
+
}
|
|
1015
|
+
.rct-icons-fa5 .rct-icon-parent-close::before {
|
|
1016
|
+
content: '\f07b';
|
|
1017
|
+
}
|
|
1018
|
+
.rct-icons-fa5 .rct-icon-expand-all::before {
|
|
1019
|
+
content: '\f0fe';
|
|
1020
|
+
}
|
|
1021
|
+
.rct-icons-fa5 .rct-icon-collapse-all::before {
|
|
1022
|
+
content: '\f146';
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
.rct-direction-rtl {
|
|
1026
|
+
direction: rtl;
|
|
1027
|
+
}
|
|
1028
|
+
.rct-direction-rtl ol ol {
|
|
1029
|
+
padding-right: 24px;
|
|
1030
|
+
padding-left: 0;
|
|
1031
|
+
}
|
|
1032
|
+
.rct-direction-rtl.rct-icons-fa4 .rct-icon-expand-close::before {
|
|
1033
|
+
content: '\f105';
|
|
1034
|
+
}
|
|
1035
|
+
.rct-direction-rtl.rct-icons-fa5 .rct-icon-expand-close::before {
|
|
1036
|
+
content: '\f053';
|
|
1037
|
+
}
|
|
1038
|
+
.plot-type-selected {
|
|
1039
|
+
background-color: rgba(0, 0, 255, 0.3);
|
|
1040
|
+
}
|
|
1041
|
+
|
|
1042
|
+
.plot-type-container {
|
|
1043
|
+
overflow-y: scroll;
|
|
1044
|
+
margin: 5px;
|
|
1045
|
+
padding: 3px;
|
|
1046
|
+
border: 1px solid #aaaaaa;
|
|
1047
|
+
border-radius: 5px;
|
|
1048
|
+
max-height: 15vh;
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
.plot-type-container-empty {
|
|
1052
|
+
margin: 5px;
|
|
1053
|
+
padding: 3px 8px;
|
|
1054
|
+
border: 1px solid #aaaaaa;
|
|
1055
|
+
background-color: #e8e8e8;
|
|
1056
|
+
border-radius: 5px;
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
.plot-type-item {
|
|
1060
|
+
cursor: pointer;
|
|
1061
|
+
}
|
|
1062
|
+
.plot-type-item:not(.plot-type-selected):hover {
|
|
1063
|
+
background-color: rgba(51, 51, 204, 0.1);
|
|
1064
|
+
}
|
|
1065
|
+
|
|
1066
|
+
.track-thumbnail {
|
|
1067
|
+
width: 30px;
|
|
1068
|
+
height: 20px;
|
|
1069
|
+
display: inline-block;
|
|
1070
|
+
margin-right: 10;
|
|
1071
|
+
vertical-align: middle;
|
|
1072
|
+
}
|
|
1073
|
+
.track-thumbnail > svg {
|
|
1074
|
+
width: 20px;
|
|
1075
|
+
height: 20px;
|
|
1076
|
+
}
|
|
1077
|
+
._collapse-toggle-icon_ub7s6_1:before {
|
|
1078
|
+
/* symbol for "opening" panels */
|
|
1079
|
+
font-family: "Glyphicons Halflings"; /* essential for enabling glyphicon */
|
|
1080
|
+
content: "\e159"; /* glyphicon glyphicon-expand, taken from bootstrap.css */
|
|
1081
|
+
float: left; /* adjust as needed */
|
|
1082
|
+
padding-right: 3px;
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
._collapse-toggle-icon_ub7s6_1._collapsed_ub7s6_9:before {
|
|
1086
|
+
/* symbol for "collapsed" panels */
|
|
1087
|
+
content: "\e158"; /* glyphicon glyphicon-collapse-down, taken from bootstrap.css */
|
|
1088
|
+
}
|
|
1089
|
+
|
|
1090
|
+
._modal-title_ub7s6_14 {
|
|
1091
|
+
font-family: "Roboto";
|
|
1092
|
+
font-weight: 700;
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
._modal-container_ub7s6_19 {
|
|
1096
|
+
position: relative;
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
._modal-container_ub7s6_19 ._modal_ub7s6_14, ._modal-container_ub7s6_19 ._modal-backdrop_ub7s6_23 {
|
|
1100
|
+
position: absolute;
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1103
|
+
._modal-dialog_ub7s6_27 {
|
|
1104
|
+
position: relative;
|
|
1105
|
+
display: table;
|
|
1106
|
+
overflow-y: auto;
|
|
1107
|
+
overflow-x: auto;
|
|
1108
|
+
width: 600px;
|
|
1109
|
+
min-width: 300px;
|
|
1110
|
+
margin: auto;
|
|
1111
|
+
}._vertical-tiled-plot_f3ho8_1 {
|
|
1112
|
+
position: relative;
|
|
1113
|
+
}._genome-position-search_1l2sx_1,
|
|
1114
|
+
._genome-position-search-focus_1l2sx_2 {
|
|
1115
|
+
position: relative;
|
|
1116
|
+
display: flex;
|
|
1117
|
+
align-items: stretch;
|
|
1118
|
+
height: 100%;
|
|
1119
|
+
margin-bottom: 0px;
|
|
1120
|
+
font-size: 13.7142857143px;
|
|
1121
|
+
transition: box-shadow 0.15s cubic-bezier(0.25, 0.1, 0.25, 1), font-size 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
._genome-position-search-focus_1l2sx_2 {
|
|
1125
|
+
box-shadow: 0 0 0 1px #337ab7, 0 0 3px 1px #337ab7;
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1128
|
+
._genome-position-search-bar_1l2sx_16 {
|
|
1129
|
+
position: relative;
|
|
1130
|
+
box-sizing: border-box;
|
|
1131
|
+
width: 100%;
|
|
1132
|
+
height: 100%;
|
|
1133
|
+
padding: 3px;
|
|
1134
|
+
color: #666;
|
|
1135
|
+
font-size: inherit;
|
|
1136
|
+
line-height: 24px;
|
|
1137
|
+
border: 0;
|
|
1138
|
+
border-radius: 3px 0 0 3px;
|
|
1139
|
+
background: transparent;
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1142
|
+
._genome-position-search-bar_1l2sx_16:focus {
|
|
1143
|
+
outline: none;
|
|
1144
|
+
color: #000;
|
|
1145
|
+
}
|
|
1146
|
+
|
|
1147
|
+
._genome-position-search-dark_1l2sx_34 ._genome-position-search-bar_1l2sx_16:focus {
|
|
1148
|
+
color: #e5e5e5;
|
|
1149
|
+
}
|
|
1150
|
+
|
|
1151
|
+
._genome-position-search-bar-button_1l2sx_38,
|
|
1152
|
+
._genome-position-search-bar-button-focus_1l2sx_39 {
|
|
1153
|
+
display: block;
|
|
1154
|
+
height: 100%;
|
|
1155
|
+
padding: 0 8px !important;
|
|
1156
|
+
color: #999;
|
|
1157
|
+
border: 0 !important;
|
|
1158
|
+
border-radius: 0 !important;
|
|
1159
|
+
background: transparent;
|
|
1160
|
+
transition: background 0.15s cubic-bezier(0.25, 0.1, 0.25, 1), color 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
._genome-position-search-bar-button_1l2sx_38:active, ._genome-position-search-bar-button_1l2sx_38:focus, ._genome-position-search-bar-button_1l2sx_38:hover,
|
|
1164
|
+
._genome-position-search-bar-button-focus_1l2sx_39:active,
|
|
1165
|
+
._genome-position-search-bar-button-focus_1l2sx_39:focus,
|
|
1166
|
+
._genome-position-search-bar-button-focus_1l2sx_39:hover {
|
|
1167
|
+
color: #fff;
|
|
1168
|
+
background: #337ab7;
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
._genome-position-search-bar-button-focus_1l2sx_39 {
|
|
1172
|
+
color: #fff;
|
|
1173
|
+
background: #337ab7;
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1176
|
+
._genome-position-search-bar-icon_1l2sx_62,
|
|
1177
|
+
._genome-position-search-bar-icon-focus_1l2sx_63 {
|
|
1178
|
+
display: flex;
|
|
1179
|
+
align-items: center;
|
|
1180
|
+
transition: color 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
1181
|
+
}
|
|
1182
|
+
|
|
1183
|
+
._genome-position-search-bar-icon_1l2sx_62:first-child,
|
|
1184
|
+
._genome-position-search-bar-icon-focus_1l2sx_63:first-child {
|
|
1185
|
+
margin-left: 6px;
|
|
1186
|
+
margin-right: 2px;
|
|
1187
|
+
}
|
|
1188
|
+
|
|
1189
|
+
._genome-position-search-bar-icon_1l2sx_62 span,
|
|
1190
|
+
._genome-position-search-bar-icon-focus_1l2sx_63 span {
|
|
1191
|
+
display: block;
|
|
1192
|
+
margin-top: -2px;
|
|
1193
|
+
}
|
|
1194
|
+
|
|
1195
|
+
._genome-position-search-bar-icon-focus_1l2sx_63 {
|
|
1196
|
+
color: #337ab7;
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1199
|
+
._genome-position-search-bar-suggestions_1l2sx_83 {
|
|
1200
|
+
position: fixed;
|
|
1201
|
+
border-radius: 3px;
|
|
1202
|
+
box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1), 0 1px 5px 0 rgba(0, 0, 0, 0.05);
|
|
1203
|
+
background-color: rgba(255, 255, 255, 0.95);
|
|
1204
|
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
1205
|
+
padding: 2px 0;
|
|
1206
|
+
font-size: 90%;
|
|
1207
|
+
overflow: auto;
|
|
1208
|
+
max-height: 50%;
|
|
1209
|
+
}
|
|
1210
|
+
|
|
1211
|
+
._btn_1l2sx_95 {
|
|
1212
|
+
display: inline-block;
|
|
1213
|
+
margin-bottom: 0;
|
|
1214
|
+
font-size: 13.7142857143px;
|
|
1215
|
+
font-weight: 400;
|
|
1216
|
+
line-height: 1.42857143;
|
|
1217
|
+
text-align: center;
|
|
1218
|
+
white-space: nowrap;
|
|
1219
|
+
vertical-align: middle;
|
|
1220
|
+
-ms-touch-action: manipulation;
|
|
1221
|
+
touch-action: manipulation;
|
|
1222
|
+
cursor: pointer;
|
|
1223
|
+
-webkit-user-select: none;
|
|
1224
|
+
-moz-user-select: none;
|
|
1225
|
+
-ms-user-select: none;
|
|
1226
|
+
user-select: none;
|
|
1227
|
+
background-image: none;
|
|
1228
|
+
border: 1px solid transparent;
|
|
1229
|
+
border-radius: 4px;
|
|
1230
|
+
}
|
|
1231
|
+
|
|
1232
|
+
._btn-sm_1l2sx_116 {
|
|
1233
|
+
font-size: 12px;
|
|
1234
|
+
line-height: 1.5;
|
|
1235
|
+
border-radius: 3px;
|
|
1236
|
+
}
|
|
1237
|
+
|
|
1238
|
+
._btn-default_1l2sx_122 {
|
|
1239
|
+
color: #666;
|
|
1240
|
+
background-color: #fff;
|
|
1241
|
+
border-color: #ccc;
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1244
|
+
._btn-default_1l2sx_122:hover {
|
|
1245
|
+
color: #000;
|
|
1246
|
+
background: #ccc;
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
._btn-default_1l2sx_122:active,
|
|
1250
|
+
._btn-default_1l2sx_122:focus {
|
|
1251
|
+
color: #fff;
|
|
1252
|
+
border-color: #000;
|
|
1253
|
+
background: #000;
|
|
1254
|
+
}
|
|
1255
|
+
|
|
1256
|
+
._genome-position-search_1l2sx_1 ._btn_1l2sx_95 {
|
|
1257
|
+
border-radius: 0 3px 3px 0;
|
|
1258
|
+
}._export-link-dialog-wrapper_p9gxw_1 {
|
|
1259
|
+
display: flex;
|
|
1260
|
+
}
|
|
1261
|
+
._export-link-dialog-wrapper_p9gxw_1 input {
|
|
1262
|
+
flex-grow: 1;
|
|
1263
|
+
}._add-track-position-table_wdy5w_1 {
|
|
1264
|
+
border-collapse: collapse;
|
|
1265
|
+
margin: 5px;
|
|
1266
|
+
color: #666;
|
|
1267
|
+
}
|
|
1268
|
+
|
|
1269
|
+
._add-track-position-table-dark_wdy5w_7 {
|
|
1270
|
+
color: #cccccc;
|
|
1271
|
+
}
|
|
1272
|
+
|
|
1273
|
+
._add-track-position-other_wdy5w_11 {
|
|
1274
|
+
outline: none;
|
|
1275
|
+
}
|
|
1276
|
+
|
|
1277
|
+
._add-track-position-top-center_wdy5w_15 {
|
|
1278
|
+
min-width: 80px;
|
|
1279
|
+
min-height: 20px;
|
|
1280
|
+
text-align: center;
|
|
1281
|
+
outline: none;
|
|
1282
|
+
border-top: 1px solid #999;
|
|
1283
|
+
border-left: 1px solid #999;
|
|
1284
|
+
border-right: 1px solid #999;
|
|
1285
|
+
border-radius: 2px 2px 0 0;
|
|
1286
|
+
}
|
|
1287
|
+
|
|
1288
|
+
._add-track-position-top-center_wdy5w_15:hover {
|
|
1289
|
+
color: #fff;
|
|
1290
|
+
background-color: #337ab7;
|
|
1291
|
+
}
|
|
1292
|
+
|
|
1293
|
+
._add-track-position-middle-left_wdy5w_30 {
|
|
1294
|
+
min-width: 40px;
|
|
1295
|
+
text-align: center;
|
|
1296
|
+
outline: none;
|
|
1297
|
+
border-top: 1px solid #999;
|
|
1298
|
+
border-left: 1px solid #999;
|
|
1299
|
+
border-bottom: 1px solid #999;
|
|
1300
|
+
border-radius: 2px 0 0 2px;
|
|
1301
|
+
}
|
|
1302
|
+
|
|
1303
|
+
._add-track-position-middle-left_wdy5w_30:hover {
|
|
1304
|
+
background-color: #337ab7;
|
|
1305
|
+
color: #fff;
|
|
1306
|
+
}
|
|
1307
|
+
|
|
1308
|
+
._add-track-position-middle-right_wdy5w_45 {
|
|
1309
|
+
min-width: 40px;
|
|
1310
|
+
text-align: center;
|
|
1311
|
+
outline: none;
|
|
1312
|
+
border-top: 1px solid #999;
|
|
1313
|
+
border-right: 1px solid #999;
|
|
1314
|
+
border-bottom: 1px solid #999;
|
|
1315
|
+
border-radius: 0 2px 2px 0;
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1318
|
+
._add-track-position-middle-right_wdy5w_45:hover {
|
|
1319
|
+
background-color: #337ab7;
|
|
1320
|
+
color: #fff;
|
|
1321
|
+
}
|
|
1322
|
+
|
|
1323
|
+
._add-track-position-middle-middle_wdy5w_60 {
|
|
1324
|
+
text-align: center;
|
|
1325
|
+
outline: none;
|
|
1326
|
+
border: 1px solid #999;
|
|
1327
|
+
}
|
|
1328
|
+
|
|
1329
|
+
._add-track-position-middle-middle_wdy5w_60:hover {
|
|
1330
|
+
background-color: #337ab7;
|
|
1331
|
+
color: #fff;
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1334
|
+
._add-track-position-bottom-middle_wdy5w_71 {
|
|
1335
|
+
min-height: 20px;
|
|
1336
|
+
text-align: center;
|
|
1337
|
+
outline: none;
|
|
1338
|
+
border-left: 1px solid #999;
|
|
1339
|
+
border-right: 1px solid #999;
|
|
1340
|
+
border-bottom: 1px solid #999;
|
|
1341
|
+
border-radius: 0 0 2px 2px;
|
|
1342
|
+
}
|
|
1343
|
+
|
|
1344
|
+
._add-track-position-bottom-middle_wdy5w_71:hover {
|
|
1345
|
+
background-color: #337ab7;
|
|
1346
|
+
color: #fff;
|
|
1347
|
+
}
|
|
1348
|
+
|
|
1349
|
+
._add-track-position-span_wdy5w_86 {
|
|
1350
|
+
margin: 5px;
|
|
1351
|
+
}._view-config-editor-header_1hlm6_1 {
|
|
1352
|
+
margin: -10px -10px 0 -10px;
|
|
1353
|
+
padding: 10px;
|
|
1354
|
+
display: flex;
|
|
1355
|
+
justify-content: space-between;
|
|
1356
|
+
background: #f2f2f2;
|
|
1357
|
+
}
|
|
1358
|
+
._view-config-editor-header_1hlm6_1 button {
|
|
1359
|
+
display: flex;
|
|
1360
|
+
align-items: center;
|
|
1361
|
+
font-size: 14px;
|
|
1362
|
+
background: #f2f2f2;
|
|
1363
|
+
}
|
|
1364
|
+
._view-config-editor-header_1hlm6_1 button:hover {
|
|
1365
|
+
background: #e5e5e5;
|
|
1366
|
+
}
|
|
1367
|
+
._view-config-editor-header_1hlm6_1 button:hover span {
|
|
1368
|
+
color: #666;
|
|
1369
|
+
}
|
|
1370
|
+
._view-config-editor_1hlm6_1 {
|
|
1371
|
+
position: absolute;
|
|
1372
|
+
top: 50px;
|
|
1373
|
+
right: 0;
|
|
1374
|
+
bottom: 0;
|
|
1375
|
+
left: 0;
|
|
1376
|
+
margin: 1px 0 0 0;
|
|
1377
|
+
padding: 0;
|
|
1378
|
+
overflow: auto;
|
|
1379
|
+
font-size: 12.5px;
|
|
1380
|
+
height: calc(100% - 80px);
|
|
1381
|
+
}
|
|
1382
|
+
._view-config-log_1hlm6_34 {
|
|
1383
|
+
position: absolute;
|
|
1384
|
+
right: 0;
|
|
1385
|
+
bottom: 0;
|
|
1386
|
+
left: 0;
|
|
1387
|
+
margin: 1px 0 0 0;
|
|
1388
|
+
padding: 0;
|
|
1389
|
+
min-height: 30px;
|
|
1390
|
+
background: #f2f2f2;
|
|
1391
|
+
transition: height 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
1392
|
+
}
|
|
1393
|
+
._view-config-log-header_1hlm6_46 {
|
|
1394
|
+
background: #f2f2f2;
|
|
1395
|
+
border-top: 1px solid #cccccc;
|
|
1396
|
+
border-bottom: 1px solid #cccccc;
|
|
1397
|
+
padding-left: 10px;
|
|
1398
|
+
height: 30px;
|
|
1399
|
+
display: flex;
|
|
1400
|
+
align-items: center;
|
|
1401
|
+
cursor: pointer;
|
|
1402
|
+
position: sticky;
|
|
1403
|
+
position: -webkit-sticky; /* Safari */
|
|
1404
|
+
top: 0;
|
|
1405
|
+
}
|
|
1406
|
+
._view-config-log-msg_1hlm6_60 {
|
|
1407
|
+
background: #f2f2f2;
|
|
1408
|
+
overflow: auto;
|
|
1409
|
+
height: calc(100% - 30px);
|
|
1410
|
+
}
|
|
1411
|
+
._view-config-log-msg_1hlm6_60 tr,
|
|
1412
|
+
._view-config-log-msg_1hlm6_60 td {
|
|
1413
|
+
outline: none;
|
|
1414
|
+
vertical-align: top;
|
|
1415
|
+
}
|
|
1416
|
+
._view-config-log-msg_1hlm6_60 ._title_1hlm6_70 {
|
|
1417
|
+
font-weight: bold;
|
|
1418
|
+
padding-left: 8px;
|
|
1419
|
+
padding-top: 8px;
|
|
1420
|
+
width: 100px;
|
|
1421
|
+
}
|
|
1422
|
+
._view-config-log-msg_1hlm6_60 ._Warning_1hlm6_76 {
|
|
1423
|
+
color: orange;
|
|
1424
|
+
}
|
|
1425
|
+
._view-config-log-msg_1hlm6_60 ._Success_1hlm6_79 {
|
|
1426
|
+
color: green;
|
|
1427
|
+
}
|
|
1428
|
+
._view-config-log-msg_1hlm6_60 ._Error_1hlm6_82 {
|
|
1429
|
+
color: red;
|
|
1430
|
+
}
|
|
1431
|
+
._view-config-log-msg_1hlm6_60 pre {
|
|
1432
|
+
background: white;
|
|
1433
|
+
white-space: pre-wrap; /* Since CSS 2.1 */
|
|
1434
|
+
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
|
|
1435
|
+
white-space: -pre-wrap; /* Opera 4-6 */
|
|
1436
|
+
white-space: -o-pre-wrap; /* Opera 7 */
|
|
1437
|
+
word-wrap: break-word; /* Internet Explorer 5.5+ */
|
|
1438
|
+
}._higlass_1uoq8_1 {
|
|
1439
|
+
position: relative;
|
|
1440
|
+
}
|
|
1441
|
+
|
|
1442
|
+
._higlass-dark-theme_1uoq8_5 {
|
|
1443
|
+
background: black;
|
|
1444
|
+
}
|
|
1445
|
+
|
|
1446
|
+
._higlass-container-overflow_1uoq8_9,
|
|
1447
|
+
._higlass-scroll-container-overflow_1uoq8_10,
|
|
1448
|
+
._higlass-scroll-container-scroll_1uoq8_11 {
|
|
1449
|
+
position: absolute;
|
|
1450
|
+
top: 0;
|
|
1451
|
+
right: 0;
|
|
1452
|
+
bottom: 0;
|
|
1453
|
+
left: 0;
|
|
1454
|
+
}
|
|
1455
|
+
|
|
1456
|
+
._higlass-scroll-container-overflow_1uoq8_10 {
|
|
1457
|
+
overflow: hidden;
|
|
1458
|
+
}
|
|
1459
|
+
|
|
1460
|
+
._higlass-scroll-container-scroll_1uoq8_11 {
|
|
1461
|
+
overflow-x: hidden;
|
|
1462
|
+
overflow-y: auto;
|
|
1463
|
+
}
|
|
1464
|
+
|
|
1465
|
+
._higlass-canvas_1uoq8_28 {
|
|
1466
|
+
position: absolute;
|
|
1467
|
+
width: 100%;
|
|
1468
|
+
height: 100%;
|
|
1469
|
+
}
|
|
1470
|
+
|
|
1471
|
+
._higlass-drawing-surface_1uoq8_34 {
|
|
1472
|
+
position: relative;
|
|
1473
|
+
}
|
|
1474
|
+
|
|
1475
|
+
._higlass-svg_1uoq8_38 {
|
|
1476
|
+
position: absolute;
|
|
1477
|
+
width: 100%;
|
|
1478
|
+
height: 100%;
|
|
1479
|
+
left: 0;
|
|
1480
|
+
top: 0;
|
|
1481
|
+
pointer-events: none;
|
|
1482
|
+
}
|
|
1483
|
+
|
|
1484
|
+
._tiled-area_1uoq8_47 {
|
|
1485
|
+
display: flex;
|
|
1486
|
+
flex-direction: column;
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1489
|
+
._track-mouseover-menu_1uoq8_52 {
|
|
1490
|
+
position: fixed;
|
|
1491
|
+
z-index: 1;
|
|
1492
|
+
margin: 17px 0 0 9px;
|
|
1493
|
+
padding: 0 0.25rem;
|
|
1494
|
+
max-width: 50vw;
|
|
1495
|
+
word-wrap: break-word;
|
|
1496
|
+
font-size: 0.8em;
|
|
1497
|
+
pointer-events: none;
|
|
1498
|
+
background: white;
|
|
1499
|
+
border-radius: 0.25rem;
|
|
1500
|
+
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 0 3px 0 rgba(0, 0, 0, 0.075), 0 0 7px 0 rgba(0, 0, 0, 0.05);
|
|
1501
|
+
}.react-grid-layout {
|
|
1502
|
+
position: relative;
|
|
1503
|
+
transition: height 200ms ease;
|
|
1504
|
+
}
|
|
1505
|
+
.react-grid-item {
|
|
1506
|
+
transition: all 200ms ease;
|
|
1507
|
+
transition-property: left, top;
|
|
1508
|
+
}
|
|
1509
|
+
.react-grid-item.cssTransforms {
|
|
1510
|
+
transition-property: transform;
|
|
1511
|
+
}
|
|
1512
|
+
.react-grid-item.resizing {
|
|
1513
|
+
z-index: 1;
|
|
1514
|
+
will-change: width, height;
|
|
1515
|
+
}
|
|
1516
|
+
.react-grid-item.react-draggable-dragging {
|
|
1517
|
+
transition: none;
|
|
1518
|
+
z-index: 3;
|
|
1519
|
+
will-change: transform;
|
|
1520
|
+
}
|
|
1521
|
+
.react-grid-item.react-grid-placeholder {
|
|
1522
|
+
background: red;
|
|
1523
|
+
opacity: 0.2;
|
|
1524
|
+
transition-duration: 100ms;
|
|
1525
|
+
z-index: 2;
|
|
1526
|
+
-webkit-user-select: none;
|
|
1527
|
+
-moz-user-select: none;
|
|
1528
|
+
-ms-user-select: none;
|
|
1529
|
+
-o-user-select: none;
|
|
1530
|
+
user-select: none;
|
|
1531
|
+
}
|
|
1532
|
+
.react-grid-item > .react-resizable-handle {
|
|
1533
|
+
position: absolute;
|
|
1534
|
+
width: 20px;
|
|
1535
|
+
height: 20px;
|
|
1536
|
+
bottom: 0;
|
|
1537
|
+
right: 0;
|
|
1538
|
+
cursor: se-resize;
|
|
1539
|
+
}
|
|
1540
|
+
.react-grid-item > .react-resizable-handle::after {
|
|
1541
|
+
content: "";
|
|
1542
|
+
position: absolute;
|
|
1543
|
+
right: 3px;
|
|
1544
|
+
bottom: 3px;
|
|
1545
|
+
width: 5px;
|
|
1546
|
+
height: 5px;
|
|
1547
|
+
border-right: 2px solid rgba(0, 0, 0, 0.4);
|
|
1548
|
+
border-bottom: 2px solid rgba(0, 0, 0, 0.4);
|
|
1549
|
+
}
|
|
1550
|
+
.react-resizable {
|
|
1551
|
+
position: relative;
|
|
1552
|
+
}
|
|
1553
|
+
.react-resizable-handle {
|
|
1554
|
+
position: absolute;
|
|
1555
|
+
width: 20px;
|
|
1556
|
+
height: 20px;
|
|
1557
|
+
background-repeat: no-repeat;
|
|
1558
|
+
background-origin: content-box;
|
|
1559
|
+
box-sizing: border-box;
|
|
1560
|
+
background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2IDYiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiNmZmZmZmYwMCIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI2cHgiIGhlaWdodD0iNnB4Ij48ZyBvcGFjaXR5PSIwLjMwMiI+PHBhdGggZD0iTSA2IDYgTCAwIDYgTCAwIDQuMiBMIDQgNC4yIEwgNC4yIDQuMiBMIDQuMiAwIEwgNiAwIEwgNiA2IEwgNiA2IFoiIGZpbGw9IiMwMDAwMDAiLz48L2c+PC9zdmc+');
|
|
1561
|
+
background-position: bottom right;
|
|
1562
|
+
padding: 0 3px 3px 0;
|
|
1563
|
+
}
|
|
1564
|
+
.react-resizable-handle-sw {
|
|
1565
|
+
bottom: 0;
|
|
1566
|
+
left: 0;
|
|
1567
|
+
cursor: sw-resize;
|
|
1568
|
+
transform: rotate(90deg);
|
|
1569
|
+
}
|
|
1570
|
+
.react-resizable-handle-se {
|
|
1571
|
+
bottom: 0;
|
|
1572
|
+
right: 0;
|
|
1573
|
+
cursor: se-resize;
|
|
1574
|
+
}
|
|
1575
|
+
.react-resizable-handle-nw {
|
|
1576
|
+
top: 0;
|
|
1577
|
+
left: 0;
|
|
1578
|
+
cursor: nw-resize;
|
|
1579
|
+
transform: rotate(180deg);
|
|
1580
|
+
}
|
|
1581
|
+
.react-resizable-handle-ne {
|
|
1582
|
+
top: 0;
|
|
1583
|
+
right: 0;
|
|
1584
|
+
cursor: ne-resize;
|
|
1585
|
+
transform: rotate(270deg);
|
|
1586
|
+
}
|
|
1587
|
+
.react-resizable-handle-w,
|
|
1588
|
+
.react-resizable-handle-e {
|
|
1589
|
+
top: 50%;
|
|
1590
|
+
margin-top: -10px;
|
|
1591
|
+
cursor: ew-resize;
|
|
1592
|
+
}
|
|
1593
|
+
.react-resizable-handle-w {
|
|
1594
|
+
left: 0;
|
|
1595
|
+
transform: rotate(135deg);
|
|
1596
|
+
}
|
|
1597
|
+
.react-resizable-handle-e {
|
|
1598
|
+
right: 0;
|
|
1599
|
+
transform: rotate(315deg);
|
|
1600
|
+
}
|
|
1601
|
+
.react-resizable-handle-n,
|
|
1602
|
+
.react-resizable-handle-s {
|
|
1603
|
+
left: 50%;
|
|
1604
|
+
margin-left: -10px;
|
|
1605
|
+
cursor: ns-resize;
|
|
1606
|
+
}
|
|
1607
|
+
.react-resizable-handle-n {
|
|
1608
|
+
top: 0;
|
|
1609
|
+
transform: rotate(225deg);
|
|
1610
|
+
}
|
|
1611
|
+
.react-resizable-handle-s {
|
|
1612
|
+
bottom: 0;
|
|
1613
|
+
transform: rotate(45deg);
|
|
1614
|
+
}
|
|
1615
|
+
/**
|
|
1616
|
+
* GHColors theme by Avi Aryan (http://aviaryan.in)
|
|
1617
|
+
* Inspired by Github syntax coloring
|
|
1618
|
+
*/
|
|
1619
|
+
code[class*="language-"],
|
|
1620
|
+
pre[class*="language-"] {
|
|
1621
|
+
color: #393A34;
|
|
1622
|
+
font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace;
|
|
1623
|
+
direction: ltr;
|
|
1624
|
+
text-align: left;
|
|
1625
|
+
white-space: pre;
|
|
1626
|
+
word-spacing: normal;
|
|
1627
|
+
word-break: normal;
|
|
1628
|
+
font-size: 0.95em;
|
|
1629
|
+
line-height: 1.2em;
|
|
1630
|
+
|
|
1631
|
+
-moz-tab-size: 4;
|
|
1632
|
+
-o-tab-size: 4;
|
|
1633
|
+
tab-size: 4;
|
|
1634
|
+
|
|
1635
|
+
-webkit-hyphens: none;
|
|
1636
|
+
-moz-hyphens: none;
|
|
1637
|
+
-ms-hyphens: none;
|
|
1638
|
+
hyphens: none;
|
|
1639
|
+
}
|
|
1640
|
+
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
|
|
1641
|
+
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
|
|
1642
|
+
background: #b3d4fc;
|
|
1643
|
+
}
|
|
1644
|
+
pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
|
|
1645
|
+
code[class*="language-"]::selection, code[class*="language-"] ::selection {
|
|
1646
|
+
background: #b3d4fc;
|
|
1647
|
+
}
|
|
1648
|
+
/* Code blocks */
|
|
1649
|
+
pre[class*="language-"] {
|
|
1650
|
+
padding: 1em;
|
|
1651
|
+
margin: .5em 0;
|
|
1652
|
+
overflow: auto;
|
|
1653
|
+
border: 1px solid #dddddd;
|
|
1654
|
+
background-color: white;
|
|
1655
|
+
}
|
|
1656
|
+
:not(pre) > code[class*="language-"],
|
|
1657
|
+
pre[class*="language-"] {
|
|
1658
|
+
}
|
|
1659
|
+
/* Inline code */
|
|
1660
|
+
:not(pre) > code[class*="language-"] {
|
|
1661
|
+
padding: .2em;
|
|
1662
|
+
padding-top: 1px; padding-bottom: 1px;
|
|
1663
|
+
background: #f8f8f8;
|
|
1664
|
+
border: 1px solid #dddddd;
|
|
1665
|
+
}
|
|
1666
|
+
.token.comment,
|
|
1667
|
+
.token.prolog,
|
|
1668
|
+
.token.doctype,
|
|
1669
|
+
.token.cdata {
|
|
1670
|
+
color: #999988; font-style: italic;
|
|
1671
|
+
}
|
|
1672
|
+
.token.namespace {
|
|
1673
|
+
opacity: .7;
|
|
1674
|
+
}
|
|
1675
|
+
.token.string,
|
|
1676
|
+
.token.attr-value {
|
|
1677
|
+
color: #e3116c;
|
|
1678
|
+
}
|
|
1679
|
+
.token.punctuation,
|
|
1680
|
+
.token.operator {
|
|
1681
|
+
color: #393A34; /* no highlight */
|
|
1682
|
+
}
|
|
1683
|
+
.token.entity,
|
|
1684
|
+
.token.url,
|
|
1685
|
+
.token.symbol,
|
|
1686
|
+
.token.number,
|
|
1687
|
+
.token.boolean,
|
|
1688
|
+
.token.variable,
|
|
1689
|
+
.token.constant,
|
|
1690
|
+
.token.property,
|
|
1691
|
+
.token.regex,
|
|
1692
|
+
.token.inserted {
|
|
1693
|
+
color: #36acaa;
|
|
1694
|
+
}
|
|
1695
|
+
.token.atrule,
|
|
1696
|
+
.token.keyword,
|
|
1697
|
+
.token.attr-name,
|
|
1698
|
+
.language-autohotkey .token.selector {
|
|
1699
|
+
color: #00a4db;
|
|
1700
|
+
}
|
|
1701
|
+
.token.function,
|
|
1702
|
+
.token.deleted,
|
|
1703
|
+
.language-autohotkey .token.tag {
|
|
1704
|
+
color: #9a050f;
|
|
1705
|
+
}
|
|
1706
|
+
.token.tag,
|
|
1707
|
+
.token.selector,
|
|
1708
|
+
.language-autohotkey .token.keyword {
|
|
1709
|
+
color: #00009f;
|
|
1710
|
+
}
|
|
1711
|
+
.token.important,
|
|
1712
|
+
.token.function,
|
|
1713
|
+
.token.bold {
|
|
1714
|
+
font-weight: bold;
|
|
1715
|
+
}
|
|
1716
|
+
.token.italic {
|
|
1717
|
+
font-style: italic;
|
|
1718
|
+
}
|
|
1719
|
+
.higlass * {
|
|
1720
|
+
box-sizing: border-box;
|
|
1721
|
+
}
|
|
1722
|
+
.higlass .react-resizable-handle {
|
|
1723
|
+
z-index: 1;
|
|
1724
|
+
}
|