aboutsummaryrefslogtreecommitdiff
path: root/ext/bg/popup.html
blob: e223e241945dffa57f4479a010fd67be85791326 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <link rel="stylesheet" type="text/css" href="/mixed/lib/bootstrap-3.3.7-dist/css/bootstrap.min.css">
        <link rel="stylesheet" type="text/css" href="/mixed/lib/bootstrap-3.3.7-dist/css/bootstrap-theme.min.css">
        <link rel="stylesheet" type="text/css" href="/mixed/lib/bootstrap-toggle/bootstrap-toggle.min.css">
        <style type="text/css">
            body {
                padding: 10px;
                text-align: center;
            }

            .btn-group {
                display: flex;
            }
        </style>
    </head>
    <body>
        <p>
            <input type="checkbox" id="enable-search" title="Toggle (Alt + Delete)">
        </p>
        <p>
            <div class="btn-group" style="white-space: nowrap">
                <button type="button" id="open-search" title="Search (Alt + Insert)" class="btn btn-default btn-xs glyphicon glyphicon-search"></button>
                <button type="button" id="open-options" title="Options (Alt + End)" class="btn btn-default btn-xs glyphicon glyphicon-wrench"></button>
                <button type="button" id="open-help" title="Help" class="btn btn-default btn-xs glyphicon glyphicon-question-sign"></button>
            </div>
        </p>
        <script src="/mixed/lib/jquery-3.1.1.min.js"></script>
        <script src="/mixed/lib/bootstrap-toggle/bootstrap-toggle.min.js"></script>
        <script src="/mixed/lib/handlebars.min.js"></script>
        <script src="/bg/js/util.js"></script>
        <script src="/bg/js/popup.js"></script>
    </body>
</html>