-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
73 lines (68 loc) · 1.78 KB
/
Copy pathoptions.html
File metadata and controls
73 lines (68 loc) · 1.78 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Move this eMail! — Options</title>
<style>
body {
font-family: system-ui, sans-serif;
font-size: 14px;
margin: 16px 20px;
color: #1a1a1a;
}
h2 {
font-size: 15px;
margin: 0 0 14px;
}
label {
display: flex;
align-items: flex-start;
gap: 8px;
margin-bottom: 12px;
cursor: pointer;
line-height: 1.4;
}
input[type="checkbox"] {
margin-top: 2px;
flex-shrink: 0;
}
.description {
color: #555;
font-size: 12px;
margin-top: 2px;
}
#status {
margin-top: 14px;
font-size: 12px;
color: #0a0;
min-height: 16px;
}
</style>
</head>
<body>
<h2>Settings</h2>
<label>
<input type="checkbox" id="runAfterCreation" />
<span>
Run filter after creation
<div class="description">Move the current email to its folder immediately after the filter is saved.</div>
</span>
</label>
<label>
<input type="checkbox" id="useLocalFolders" />
<span>
Move to Local Folders instead of account folder
<div class="description">Creates the destination folder under Local Folders rather than inside the email account.</div>
</span>
</label>
<label>
<span>
Parent folder name (optional)
<div class="description">If set, all sender folders are created as subfolders of this folder. The parent folder is created automatically if it does not exist.</div>
</span>
</label>
<input type="text" id="parentFolderName" placeholder="e.g. Newsletters" style="width:100%;box-sizing:border-box;padding:4px 6px;font-size:13px;margin-bottom:12px;" />
<div id="status"></div>
<script src="options.js"></script>
</body>
</html>