diff options
| author | Teddy Wing | 2014-03-30 14:31:00 -0400 |
|---|---|---|
| committer | Teddy Wing | 2014-03-30 14:31:00 -0400 |
| commit | 81b1b4348bef86aa15d4ece4737ce4486227b4c8 (patch) | |
| tree | 1b4e2e0162e62c5c67b8dca5d36b3cde05961eb9 /options.html | |
| parent | 5e42f11675bb301a4f9329e8e5d50ec136e6f0df (diff) | |
| download | chrome-copy-urls-from-all-tabs-81b1b4348bef86aa15d4ece4737ce4486227b4c8.tar.bz2 | |
options: add form elements from extension
Markup for form elements on options page.
Diffstat (limited to 'options.html')
| -rw-r--r-- | options.html | 38 |
1 files changed, 23 insertions, 15 deletions
diff --git a/options.html b/options.html index 16da658..47bd92f 100644 --- a/options.html +++ b/options.html @@ -7,6 +7,8 @@ <style> #main { opacity: 1; } + + .form-element { margin: 1em 0; } </style> </head> <body class="chrome-bootstrap"> @@ -18,21 +20,27 @@ </header> <div class="content"> - Favorite color: - <select id="color"> - <option value="red">red</option> - <option value="green">green</option> - <option value="blue">blue</option> - <option value="yellow">yellow</option> - </select> - - <label> - <input type="checkbox" id="like"> - I like colors. - </label> - - <div id="status"></div> - <button id="save">Save</button> + <div class="form-element"> + Default button click behaviour: + <select id="button-click-behaviour"> + <option value="window">Open Window</option> + <option value="download">Download File</option> + </select> + </div> + + <div class="form-element"> + File format: + <select id="file-format"> + <option value="text">Text</option> + <option value="yaml">YAML</option> + <option value="html">HTML</option> + </select> + </div> + + <div class="form-element"> + <div id="status"></div> + <button id="save">Save</button> + </div> </div> </div> </div> |
