Browse Source

z-index defined as molstar style

bioinsilico 1 year ago
parent
commit
d1865ad258

+ 3 - 0
CHANGELOG.md

@@ -2,6 +2,9 @@
 
 [Semantic Versioning](https://semver.org/)
 
+## [3.0.1] - 2023-04-26
+- Structure panel z-index removed and defined as molstar style
+
 ## [3.0.0] - 2023-04-25
 ### Improvements
 - New entry method `RcsbFv3DDataProviderInterface` that ingests and displays external alignments

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "@rcsb/rcsb-saguaro-3d",
-  "version": "3.0.0",
+  "version": "3.0.1",
   "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:3000} : {}), ...css };
+        return {...(this.useDefaultCss() ? {width:cssWidth, height:cssHeight} : {}), ...css };
     }
 
     private sequenceCssConfig(css: CSSProperties | undefined): CSSProperties{

+ 1 - 1
src/RcsbFv3D/RcsbFv3DCustomComponent.tsx

@@ -119,7 +119,7 @@ export class RcsbFv3DCustomComponent<R,L,S> extends React.Component <RcsbFv3DCus
         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} : {}), ...css };
     }
 
     private sequenceCssConfig(css: CSSProperties | undefined): CSSProperties{

+ 2 - 2
src/examples/html-template/index.html

@@ -2,13 +2,13 @@
 <html lang="en">
 <head>
     <meta charset="UTF-8">
-    <title>RCSB PDB PFV UniProt Group</title>
+    <title>RCSB PDB 1D3D Viewer</title>
 </head>
 <body>
 
 <div id="select" ></div>
 <div id="selectBis" ></div>
-<div id="pfv" style="position: absolute" ></div>
+<div id="pfv" style="position: absolute; width: 800px; height:600px;" ></div>
 
 </body>
 </html>

+ 1 - 0
src/examples/sequence-identity/index.ts

@@ -5,6 +5,7 @@ document.addEventListener("DOMContentLoaded", function(event) {
 
     const groupId: string = "494_30";
     const panel3d = new RcsbFv3DSequenceIdentity({
+        elementId: "pfv",
         config:{
             groupId,
             title: "Title >> Sequence Identity " + groupId,

+ 4 - 0
src/styles/RcsbFvMolstarStyle.module.scss

@@ -27,6 +27,10 @@ $logo-background: lighten(#325880, 60%);
     opacity: 0.8 !important;
 }
 
+.msp-layout-expanded {
+    z-index: 3000;
+}
+
 /*.msp-plugin {
     border: 1px solid rgb(255,255,255) !important;
 }