yomichan/ext/bg/context.html

44 lines
1.7 KiB
HTML
Raw Normal View History

2017-03-02 04:49:46 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" type="text/css" href="/mixed/lib/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="/mixed/lib/bootstrap/css/bootstrap-theme.min.css">
2017-03-04 20:27:05 +00:00
<link rel="stylesheet" type="text/css" href="/mixed/lib/bootstrap-toggle/bootstrap-toggle.min.css">
2017-03-02 04:49:46 +00:00
<style type="text/css">
body {
padding: 10px;
text-align: center;
}
.btn-group {
display: flex;
}
</style>
</head>
<body>
<p>
2017-03-26 03:10:58 +00:00
<input type="checkbox" id="enable-search">
2017-03-02 04:49:46 +00:00
</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>
2017-03-26 03:10:58 +00:00
<button type="button" id="open-options" title="Options" class="btn btn-default btn-xs glyphicon glyphicon-wrench"></button>
2017-03-03 04:23:56 +00:00
<button type="button" id="open-help" title="Help" class="btn btn-default btn-xs glyphicon glyphicon-question-sign"></button>
2017-03-02 04:49:46 +00:00
</div>
</p>
2017-07-25 05:44:19 +00:00
<script src="/mixed/lib/jquery.min.js"></script>
2017-03-04 20:27:05 +00:00
<script src="/mixed/lib/bootstrap-toggle/bootstrap-toggle.min.js"></script>
2017-07-25 05:44:19 +00:00
2019-08-22 23:44:31 +00:00
<script src="/mixed/js/extension.js"></script>
2017-07-25 05:44:19 +00:00
<script src="/bg/js/api.js"></script>
2017-07-16 20:14:28 +00:00
<script src="/bg/js/options.js"></script>
2017-08-15 04:43:09 +00:00
<script src="/bg/js/util.js"></script>
2017-08-14 03:50:43 +00:00
2017-08-15 02:55:04 +00:00
<script src="/bg/js/context.js"></script>
2017-03-02 04:49:46 +00:00
</body>
</html>