1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
<!doctype html>
<html>
<head>
<style type="text/css">
html {
border-radius: 6px;
}
body {
width: 18em;
padding: 0.75em;
border-radius: 6px;
}
* {
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
}
#title {
outline: none;
}
.kb {
font-weight: normal;
font-style: italic;
font-size: 10pt;
}
button {
width: 100%;
margin: 0.75em 0 0.25em 0;
padding: 0.5em 1.5em;
}
button#toggle {
font-size: 12pt;
}
body.disabled h3,
body.disabled a,
body.disabled label {
color: #aaa;
}
h2 {
font-size: 12pt;
text-align: center;
}
label {
display: block;
}
fieldset {
border: none;
margin: 0;
margin-bottom: 1em;
padding: 0;
}
legend {
padding-top: 1em;
padding-bottom: 0.5em;
}
input[type="radio"] {
margin-left: 1em;
}
</style>
<script type="text/javascript" src="common.js"></script>
<script type="text/javascript" src="storage.js"></script>
<script type="text/javascript" src="popup.js"></script>
</head>
<body>
<h2 id="title"></h2>
<button id="toggle"></button>
<div id="subcontrols">
<fieldset>
<legend id="scheme_title"></legend>
<label>
<input type="radio" name="scheme" value="0">
<span i18n-content="highcontrast_mode_normal"></span>
</label>
<label>
<input type="radio" name="scheme" value="1">
<span i18n-content="highcontrast_increased_contrast"><span>
</label>
<label>
<input type="radio" name="scheme" value="2">
<span i18n-content="highcontrast_grayscale"><span>
</label>
<label>
<input type="radio" name="scheme" value="3">
<span i18n-content="highcontrast_inverted_color"><span>
</label>
<label>
<input type="radio" name="scheme" value="4">
<span i18n-content="highcontrast_inverted_grayscale"><span>
</label>
<label>
<input type="radio" name="scheme" value="5">
<span i18n-content="highcontrast_yellow_on_black"><span>
</label>
</fieldset>
<button id="make_default"><span i18n-content="highcontrast_setdefault"></span></button>
<button id="forget"><span i18n-content="highcontrast_forget"></span></button>
</div>
</body>
</html>
|