forked from jonathanKingston/new-container-tab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
44 lines (44 loc) · 1.14 KB
/
options.html
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
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang=en>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v2.0. If a copy of the MPL was not distributed with this
- file, you can obtain one at https://mozilla.org/MPL/2.0/
-
- © 2021 Roy Orbison
-->
<head>
<meta charset=utf-8>
<title>Retainer options page</title>
<style type=text/css>
html {
height: 100%;
}
body {
min-height: 100%;
background-color: Menu;
color: MenuText;
}
label {
display: block;
margin: 1em;
}
@media (prefers-color-scheme: dark) {
body {
background-color: MenuText;
color: Menu;
}
}
</style>
</head>
<body>
<form name=prefs>
<label><input type=radio name=restriction value=0 disabled>
Create in the same container (or not) as the current tab.</label>
<label><input type=radio name=restriction value=1 disabled>
Try to create tabs in the most recently used container, or fall back to no container.</label>
<label><input type=radio name=restriction value=2 disabled>
Never create uncontained tabs.</label>
</form>
<script src=options.js></script>
</body>
</html>