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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
<html>
<head>
<title>Caret Browsing Options</title>
<style>
body {
font-family: Lucida Grande, sans-serif, arial, helvetica;
width: 920px;
margin-left: auto;
margin-right: auto;
}
.banner {
width: 100%;
float: left;
}
.banner_left {
padding: 8px;
float: left;
}
.banner_right {
padding: 8px;
}
.body_wrapper {
width: 100%;
float: left;
}
.body_left {
border: 0;
padding: 0;
margin: 0;
width: 50%;
float: left;
}
.body_right {
border: 0;
padding: 0;
margin: 0;
width: 46%;
float: left;
}
.body_inner {
padding: 0 32px;
}
body.mac .nonmac {
display: none;
}
body.nonmac .mac {
display: none;
}
body.cros .noncros {
display: none;
}
body.noncros .cros {
display: none;
}
.key {
border: 1px solid #666;
color: #444;
padding: 0.2em 0.8em;
margin: 0 0.3em;
background: #eee;
}
p {
line-height: 1.6em;
}
fieldset {
margin-bottom: 1em;
}
fieldset div {
margin: 0.6em 0;
}
p.cros img {
vertical-align: middle;
}
</style>
<link href="caretbrowsing.css" rel="stylesheet" type="text/css">
<script src="axs_testing.js"></script>
<script src="traverse_util.js"></script>
<script src="caretbrowsing.js"></script>
<script src="options.js"></script>
</head>
<body caretbrowsing="on">
<div class="banner">
<div class="banner_left">
<img src="caret_128.png" class="logo" alt="">
</div>
<div class="banner_right">
<h1 i18n-content="caret_browsing_appName"></h1>
<p i18n-content="caret_browsing_subheading1"></p>
<p i18n-content="caret_browsing_subheading2"></p>
</div>
</div>
<div class="body_wrapper">
<div class="body_left">
<div class="body_inner">
<h2 i18n-content="caret_browsing_keyboardCommands"></h2>
<p class="noncros" i18n-content="caret_browsing_enableDisableNonCros"></p>
<p class="cros" i18n-content="caret_browsing_enableDisableCros"></p>
<div i18n-content="caret_browsing_navHelp"></div>
<p class="nonmac" i18n-content="caret_browsing_moveByWordsNonMac"></p>
<p class="mac" i18n-content="caret_browsing_moveByWordsMac"></p>
<div i18n-content="caret_browsing_focusHelp"></div>
</div>
</div>
<div class="body_right">
<div class="body_inner">
<h2></h2>
<fieldset>
<legend i18n-content="caret_browsing_whenEnabled"></legend>
<div>
<input type="radio" id="onenable_anim" name="onenable" value="anim">
<label for="onenable_anim" i18n-content="caret_browsing_animation"></label>
</div>
<div>
<input type="radio" id="onenable_flash" name="onenable" value="flash">
<label for="onenable_flash" i18n-content="caret_browsing_flash"></label>
</div>
<div>
<input type="radio" id="onenable_nothing" name="onenable" value="none">
<label for="onenable_nothing" i18n-content="caret_browsing_noFeedback"></label>
</div>
</fieldset>
<fieldset>
<legend i18n-content="caret_browsing_jump"></legend>
<div>
<input type="radio" id="onjump_anim" name="onjump" value="anim">
<label for="onjump_anim" i18n-content="caret_browsing_animation"></label>
</div>
<div>
<input type="radio" id="onjump_flash" name="onjump" value="flash">
<label for="onjump_flash" i18n-content="caret_browsing_flash"></label>
</div>
<div>
<input type="radio" id="onjump_nothing" name="onjump" value="none">
<label for="onjump_nothing" i18n-content="caret_browsing_noFeedback"></label>
</div>
</fieldset>
</div>
</div>
</div>
</body>
</html>
|