initial commit
This commit is contained in:
commit
6c32ef2323
23 changed files with 1551 additions and 0 deletions
29
popup.html
Normal file
29
popup.html
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Firefox Focus Controls</title>
|
||||
<link rel="stylesheet" href="theme.css">
|
||||
<link rel="stylesheet" href="popup.css">
|
||||
</head>
|
||||
<body>
|
||||
<main class="popup-shell">
|
||||
<form id="popup-url-form" class="popup-url-form">
|
||||
<label class="sr-only" for="popup-url-input">Enter a URL or search</label>
|
||||
<input id="popup-url-input" type="text" placeholder="URL or search">
|
||||
</form>
|
||||
|
||||
<div class="control-grid">
|
||||
<button data-action="back" type="button">Back</button>
|
||||
<button data-action="forward" type="button">Forward</button>
|
||||
<button data-action="refresh" type="button">Refresh</button>
|
||||
<button data-action="home" type="button">Home</button>
|
||||
<button data-action="trash" type="button" class="danger">Trash</button>
|
||||
<button data-action="settings" type="button">Settings</button>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<script src="popup.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue