-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (95 loc) · 2.82 KB
/
Copy pathindex.html
File metadata and controls
101 lines (95 loc) · 2.82 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="/src/styles.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AgentContinuer</title>
<script type="module" src="/src/main.ts" defer></script>
</head>
<body>
<div class="scale-root" id="scale-root">
<div class="capsule" id="capsule" data-tauri-drag-region>
<button
type="button"
class="charge-btn"
id="charge-btn"
aria-label="Charge continue"
aria-pressed="false"
title="Charge"
>
<svg class="charge-icon" viewBox="0 0 24 24" aria-hidden="true" focusable="false">
<path
d="M14.5 5.5 8 12l6.5 6.5"
fill="none"
stroke="currentColor"
stroke-width="2.25"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</button>
<span class="label" data-tauri-drag-region>Continue</span>
<button
type="button"
class="time-display"
id="time-display"
aria-label="Edit schedule time"
title="Click to edit time"
>
00:05
</button>
<div class="time-editor" id="time-editor" hidden>
<input
type="text"
class="time-part"
id="time-hours"
inputmode="numeric"
maxlength="2"
spellcheck="false"
autocomplete="off"
aria-label="Hours"
/>
<span class="time-colon" aria-hidden="true">:</span>
<input
type="text"
class="time-part"
id="time-minutes"
inputmode="numeric"
maxlength="2"
spellcheck="false"
autocomplete="off"
aria-label="Minutes"
/>
</div>
<button
type="button"
class="hotkey-chip"
id="hotkey-chip"
aria-label="Set show hotkey"
title="Click, then press a shortcut"
>
<span class="hotkey-chip__label" id="hotkey-label">key?</span>
<span class="hotkey-error-badge" id="hotkey-error-badge" hidden aria-hidden="true"></span>
</button>
<button
type="button"
class="close-btn"
id="close-btn"
aria-label="Hide to tray"
title="Hide to tray"
>
<svg class="close-icon" viewBox="0 0 24 24" aria-hidden="true" focusable="false">
<path
d="M7 7l10 10M17 7 7 17"
fill="none"
stroke="currentColor"
stroke-width="1.75"
stroke-linecap="round"
/>
</svg>
</button>
</div>
</div>
</body>
</html>