github.com/munnerz/test-infra@v0.0.0-20190108210205-ce3d181dc989/prow/cmd/deck/template/spyglass-lens.html (about)

     1  <!DOCTYPE html>
     2  <html lang="en">
     3  <head>
     4    <meta charset="UTF-8">
     5    <title>Spyglass Lens: {{.Title}}</title>
     6    <base href="{{.BaseURL}}" target="_parent">
     7    <link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.indigo-pink.min.css">
     8    <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
     9    <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
    10    <style>
    11        /*
    12         * Ensure we don't accidentally scroll on this frame.
    13         */
    14        html {
    15            overflow-y: hidden;
    16        }
    17        /*
    18         * MDL sets min-height: 100% for the body, which prevents us from ever shrinking.
    19         * In order to prevent this, we unset it again, using a higher-priority selector.
    20         */
    21        body.lens-body {
    22            min-height: unset;
    23        }
    24    </style>
    25    <script src="/static/spyglass_lens_bundle.min.js"></script>
    26    {{.Head}}
    27  </head>
    28  <body class="lens-body">
    29    {{.Body}}
    30  </body>
    31  </html>