OLD | NEW |
---|---|
(Empty) | |
1 <!doctype html> | |
2 <html> | |
3 <head> | |
4 <link rel="stylesheet" type="text/css" href="../res/cvd.css"> | |
kevers
2015/03/09 13:56:59
We probably should be using widgets in ui/webui/re
Peter Wen
2015/03/09 21:35:57
Added TODO, we should file bugs to track these TOD
| |
5 <style type="text/css"> | |
6 * { | |
7 font-family: Arial, Helvetica, sans-serif; | |
8 font-size: 10pt; | |
9 } | |
10 </style> | |
11 <script type="text/javascript" src="common.js"></script> | |
12 <script type="text/javascript" src="popup.js"></script> | |
13 </head> | |
14 <body> | |
15 <h2><span i18n-content="color_enhancer_appname"><span></h2> | |
16 | |
17 <p> | |
18 <label> | |
19 <span i18n-content="color_enhancer_adjustment_factor"><span> | |
20 <input id="delta" type="range" min=0 max=1.0 step=0.1 defaultValue="0"> | |
21 </label> | |
22 </p> | |
23 | |
24 <p> | |
25 <label> | |
26 <span i18n-content="color_enhancer_degree"><span> | |
27 <input id="severity" type="range" min=0 max=1.0 step=0.1 defaultValue="0"> | |
28 </label> | |
29 </p> | |
30 | |
31 <p> | |
32 <label> | |
33 <span i18n-content="color_enhancer_type_choice"><span> | |
34 <select id="type"> | |
35 <option value="type_a"> | |
36 <span i18n-content="color_enhancer_type_red"><span> | |
37 </option> | |
38 <option value="type_b"> | |
39 <span i18n-content="color_enhancer_type_green"><span> | |
40 </option> | |
41 <option value="type_c"> | |
42 <span i18n-content="color_enhancer_type_blue"><span> | |
43 </option> | |
44 </select> | |
45 </label> | |
46 </p> | |
47 | |
48 <hr> | |
49 | |
50 <!-- | |
dmazzoni
2015/03/09 15:40:40
Indicate why commented out. TODO?
Peter Wen
2015/03/09 21:35:57
Done.
| |
51 <p> | |
52 <label> | |
53 <span>Simulate?</span> | |
54 <input id="simulate" type="checkbox"> | |
55 </label> | |
56 </p> | |
57 --> | |
58 | |
59 <p> | |
60 <button id="resetall" type="button"> | |
61 <span i18n-content="color_enhancer_reset"><span> | |
62 </button> | |
63 </p> | |
64 | |
65 </body> | |
66 </html> | |
OLD | NEW |