This commit is contained in:
parent
40e5379eb3
commit
de63c48da2
9 changed files with 415 additions and 1 deletions
42
site/queued-pastes/index.html
Normal file
42
site/queued-pastes/index.html
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="color-scheme" content="light dark">
|
||||
<title>Queued Pastes - Tools</title>
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css">
|
||||
<link rel="stylesheet" href="./style.css">
|
||||
<script type="module" src="./script.js"></script>
|
||||
</head>
|
||||
<body class="container">
|
||||
<header>
|
||||
<hgroup>
|
||||
<h1>Queued Pastes</h1>
|
||||
<p>Paste queued lines one at a time, in order</p>
|
||||
</hgroup>
|
||||
</header>
|
||||
<main>
|
||||
<div class="queue-controls">
|
||||
<label>
|
||||
<input type="checkbox" id="queueSwitch" role="switch">
|
||||
Queue pastes
|
||||
</label>
|
||||
</div>
|
||||
<textarea id="pasteField" rows="10" placeholder="Enter the lines to paste, one per line"></textarea>
|
||||
<div class="controls">
|
||||
<label>
|
||||
<input type="checkbox" id="newlineSwitch" role="switch">
|
||||
Include new-line
|
||||
</label>
|
||||
<div class="controls-right">
|
||||
<label>
|
||||
<input type="checkbox" id="focusSwitch" role="switch">
|
||||
Advance on focus
|
||||
</label>
|
||||
<button id="advanceBtn" disabled>Advance</button>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue