Alexander Rose 5 rokov pred
rodič
commit
32e43b0bea

BIN
src/structure-viewer/favicon.ico


+ 1 - 0
src/structure-viewer/index.html

@@ -3,6 +3,7 @@
     <head>
         <meta charset="utf-8" />
         <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
+        <link rel="icon" href="./favicon.ico" type="image/x-icon">
         <title>RCSB Mol* Viewer</title>
         <style>
             * {

+ 1 - 1
src/structure-viewer/index.ts

@@ -6,6 +6,7 @@
 
 import { createPlugin, DefaultPluginSpec } from 'molstar/lib/mol-plugin';
 import './index.html'
+import './favicon.ico'
 import { PluginContext } from 'molstar/lib/mol-plugin/context';
 import { PluginCommands } from 'molstar/lib/mol-plugin/command';
 import { PluginBehaviors } from 'molstar/lib/mol-plugin/behavior';
@@ -34,7 +35,6 @@ export const DefaultStructureViewerProps = {
             // url: `https://files.rcsb.org/download/${id}.cif`,
             // format: 'cif' as SupportedFormats
             url: `//alpha-models.rcsb.org/${id}.bcif`,
-            // url: `https://alpha-models.rcsb.org/models/${id.substr(1, 2)}/${id}.bcif`,
             format: 'bcif' as SupportedFormats
         }
     },

+ 1 - 1
src/structure-viewer/skin/rcsb.scss

@@ -13,7 +13,7 @@ $log-info:             #5E3673;
 $log-warning:          #FCC937;
 $log-error:            #FD354B;
 
-$logo-background: rgba(0,0,0,0.75);
+$logo-background: lighten(#325880, 60%);
 
 @function color-lower-contrast($color, $amount) {
     @return lighten($color, $amount);

+ 1 - 1
webpack.config.js

@@ -7,7 +7,7 @@ const sharedConfig = {
     module: {
         rules: [
             {
-                test: /\.(woff2?|ttf|otf|eot|svg|html)$/,
+                test: /\.(woff2?|ttf|otf|eot|svg|html|ico)$/,
                 use: [{
                     loader: 'file-loader',
                     options: { name: '[name].[ext]' }