Browse Source

structure css zIndex

bioinsilico 2 years ago
parent
commit
beb153be74
2 changed files with 2 additions and 2 deletions
  1. 1 1
      package.json
  2. 1 1
      src/RcsbFv3D/RcsbFv3DComponent.tsx

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "@rcsb/rcsb-saguaro-3d",
-  "version": "3.0.0-data-provider.25",
+  "version": "3.0.0-data-provider.26",
   "description": "RCSB Molstar/Saguaro Web App",
   "main": "build/dist/app.js",
   "files": [

+ 1 - 1
src/RcsbFv3D/RcsbFv3DComponent.tsx

@@ -121,7 +121,7 @@ export class RcsbFv3DComponent<T,R,L,S,U> extends React.Component <RcsbFv3DCompo
         const widthFr: number = Math.round((1-this.state.pfvScreenFraction)*100);
         const cssWidth: string = widthFr.toString()+"%";
         const cssHeight: string = "100%";
-        return {...(this.useDefaultCss() ? {width:cssWidth, height:cssHeight, zIndex:100} : {}), ...css };
+        return {...(this.useDefaultCss() ? {width:cssWidth, height:cssHeight, zIndex:3000} : {}), ...css };
     }
 
     private sequenceCssConfig(css: CSSProperties | undefined): CSSProperties{