add options
This commit is contained in:
37
src/options/options.html
Normal file
37
src/options/options.html
Normal file
@@ -0,0 +1,37 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<section id="options-section" class="panel">
|
||||
|
||||
<div class="panel-section panel-section-header">
|
||||
<span class="text-section-header">Indicator options</span>
|
||||
</div>
|
||||
|
||||
<div class="panel-section panel-section-formElements">
|
||||
|
||||
<div class="panel-formElements-item browser-style">
|
||||
<label for="indicator-width">Width:</label>
|
||||
<input type="number" id="indicator-width" max="16" min="1">
|
||||
</div>
|
||||
|
||||
<div class="panel-formElements-item browser-style">
|
||||
<label for="indicator-orientation">Orientation:</label>
|
||||
<select id="indicator-orientation">
|
||||
<option value="vertical">Vertical</option>
|
||||
<option value="horizontal">Horizontal</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
<script src="../utils.js"></script>
|
||||
<script src="options.js"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user