Chromium Code Reviews| Index: ui/accessibility/extensions/colorenhancer/src/popup.html |
| diff --git a/ui/accessibility/extensions/colorenhancer/src/popup.html b/ui/accessibility/extensions/colorenhancer/src/popup.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..2069151610597f9355241b2371d89f777c15cfee |
| --- /dev/null |
| +++ b/ui/accessibility/extensions/colorenhancer/src/popup.html |
| @@ -0,0 +1,66 @@ |
| +<!doctype html> |
| +<html> |
| +<head> |
| +<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
|
| +<style type="text/css"> |
| +* { |
| + font-family: Arial, Helvetica, sans-serif; |
| + font-size: 10pt; |
| +} |
| +</style> |
| +<script type="text/javascript" src="common.js"></script> |
| +<script type="text/javascript" src="popup.js"></script> |
| +</head> |
| +<body> |
| + <h2><span i18n-content="color_enhancer_appname"><span></h2> |
| + |
| + <p> |
| + <label> |
| + <span i18n-content="color_enhancer_adjustment_factor"><span> |
| + <input id="delta" type="range" min=0 max=1.0 step=0.1 defaultValue="0"> |
| + </label> |
| + </p> |
| + |
| + <p> |
| + <label> |
| + <span i18n-content="color_enhancer_degree"><span> |
| + <input id="severity" type="range" min=0 max=1.0 step=0.1 defaultValue="0"> |
| + </label> |
| + </p> |
| + |
| + <p> |
| + <label> |
| + <span i18n-content="color_enhancer_type_choice"><span> |
| + <select id="type"> |
| + <option value="type_a"> |
| + <span i18n-content="color_enhancer_type_red"><span> |
| + </option> |
| + <option value="type_b"> |
| + <span i18n-content="color_enhancer_type_green"><span> |
| + </option> |
| + <option value="type_c"> |
| + <span i18n-content="color_enhancer_type_blue"><span> |
| + </option> |
| + </select> |
| + </label> |
| + </p> |
| + |
| + <hr> |
| + |
| + <!-- |
|
dmazzoni
2015/03/09 15:40:40
Indicate why commented out. TODO?
Peter Wen
2015/03/09 21:35:57
Done.
|
| + <p> |
| + <label> |
| + <span>Simulate?</span> |
| + <input id="simulate" type="checkbox"> |
| + </label> |
| + </p> |
| + --> |
| + |
| + <p> |
| + <button id="resetall" type="button"> |
| + <span i18n-content="color_enhancer_reset"><span> |
| + </button> |
| + </p> |
| + |
| +</body> |
| +</html> |