diff options
author | Alex Yatskov <alex@foosoft.net> | 2017-03-01 20:49:46 -0800 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2017-03-01 20:49:46 -0800 |
commit | 95cf7a784f2212d21f9808d4cde43476b349e89e (patch) | |
tree | 693d969458eeebbe55bd85ad3a2d3fa8e37bd186 /ext/bg/popup.html | |
parent | 4c0ed9c2922dbd82cae8e844fa33bbc3d96a6cf4 (diff) |
wip on browser action button
Diffstat (limited to 'ext/bg/popup.html')
-rw-r--r-- | ext/bg/popup.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/ext/bg/popup.html b/ext/bg/popup.html new file mode 100644 index 00000000..ad66c374 --- /dev/null +++ b/ext/bg/popup.html @@ -0,0 +1,34 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8"> + <title>Welcome to Yomichan!</title> + <link rel="stylesheet" type="text/css" href="../lib/bootstrap-3.3.7-dist/css/bootstrap.min.css"> + <link rel="stylesheet" type="text/css" href="../lib/bootstrap-3.3.7-dist/css/bootstrap-theme.min.css"> + <link rel="stylesheet" type="text/css" href="../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" data-toggle="toggle"> + </p> + <p> + <div class="btn-group" style="white-space: nowrap"> + <button type="button" class="btn btn-default btn-xs glyphicon glyphicon-cog"></button> + <button type="button" class="btn btn-default btn-xs glyphicon glyphicon-search"></button> + <button type="button" class="btn btn-default btn-xs glyphicon glyphicon-question-sign"></button> + </div> + </p> + <script src="../lib/jquery-3.1.1.min.js"></script> + <script src="../lib/bootstrap-toggle/bootstrap-toggle.min.js"></script> + </body> +</html> |