diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e82aaa38465a462bc81207aa7533882b5b0d3f51..4d7cad014f874aa4c06892afd34c74394f34e932 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -468,6 +468,15 @@ load-website:prod: --set env="${ENV:-development}" --values deploy/df-wiki/values.yaml --values deploy/df-wiki/values.${ENV:-development}.yaml + - kubectl --namespace ${NAMESPACE} wait pod -l "app.kubernetes.io/name=df-wiki" --for condition=Ready --timeout=600s + - echo "Wiki pod is ready" + - WIKI_POD=$(kubectl --namespace ${NAMESPACE} get pods -l "app.kubernetes.io/name=df-wiki" --output jsonpath='{.items[0].metadata.name}') + - echo ${WIKI_POD} + - kubectl --namespace ${NAMESPACE} cp .output/public/ ${WIKI_POD}:/website + - kubectl --namespace ${NAMESPACE} cp scripts/copy-structure-data.sh ${WIKI_POD}:/structure-data/sanitized-dump + - kubectl --namespace ${NAMESPACE} exec ${WIKI_POD} -- bash -c 'cd /structure-data/sanitized-dump && bash copy-structure-data.sh' + + deploy:dev: extends: .deploy diff --git a/components/content/MolstarPdbePlugin.vue b/components/content/MolstarPdbePlugin.vue index aa034479331ff592b501415e06f3da5fe42ec1ee..87903b6fd7767210e53a536cbd224e98234098cd 100644 --- a/components/content/MolstarPdbePlugin.vue +++ b/components/content/MolstarPdbePlugin.vue @@ -165,10 +165,12 @@ const moleculeFormat: Ref<string> = ref("pdb") </v-row> </template> <v-row v-else> - <span class="d-flex flex-wrap align-center justify-center"> - <v-select v-model="selectedPdb" label="Select PDB" :items="refinedDataUrls" hide-details="auto"> - </v-select> - </span> + <v-col> + <span class="d-flex flex-wrap align-center justify-center"> + <v-select v-model="selectedPdb" label="Select PDB" :items="refinedDataUrls" hide-details="auto"> + </v-select> + </span> + </v-col> </v-row> <v-dialog v-model="dialog" transition="dialog-bottom-transition" fullscreen :scrim="false"> <v-card flat :rounded="false"> @@ -256,12 +258,12 @@ const moleculeFormat: Ref<string> = ref("pdb") </template> -<style scoped> +<style> .msp-plugin .msp-plugin-content { color: black !important; } -.msp-layout-expanded { +div.msp-plugin-content.msp-layout-expanded { z-index: 99 !important }