~vono22/cookiekeeper/1.9.0

« back to all changes in this revision

Viewing changes to cookiekeeper/chrome/content/preferences.html

  • Committer: Yvon Tanguy
  • Date: 2016-04-03 21:58:02 UTC
  • Revision ID: vono22@yahoo.fr-20160403215802-uum809qe4yahas2b
HTML Prefs: Restore the possibility to change the current tab with arrows up/down.
Tables: Ensure the last selected element is visible.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
</head>
30
30
<body id="cookiekeeper_body_preferences" onload="ckPrefs.init();" onunload="ckPrefs.uninit();">
31
31
 
32
 
  <div id="div_tab_bar" class="tab_bar">
 
32
  <div id="div_tab_bar" class="tab_bar" tabindex="1">
33
33
    <div id="div_tab_selector_1" class="tab_selector">
34
34
      <img src="chrome://cookiekeeper/skin/tabicon_prefs_ck.svg" class="tab_selector_img">
35
35
      <span class="tab_selector_span">CookieKeeper</span>
136
136
    <hr class="hr_title"><br>
137
137
    <!-- type, domain, name, path, exists -->
138
138
    <div id="pcookies_div_table" class="div_table_scroll">
139
 
      <table id="pcookies_table" class="table_scroll">
 
139
      <table id="pcookies_table" class="table_scroll" tabindex="2">
140
140
        <thead id="pcookies_thead" class="table_scroll_head">
141
141
          <tr id="pcookies_header_tr" class="table_scroll_header_row">
142
142
            <th id="pcookies_th_type"
173
173
      </table>
174
174
    </div>
175
175
    <button id="pcookies_button_delete"
176
 
            type="button"
 
176
            type="button" tabindex="3"
177
177
            data-l10n-id="prot.button.delete"
178
178
            onclick="gCookieKeeperProtItemsHTML.onDelete();" disabled>
179
179
      Delete
189
189
    <br><br>
190
190
    <span data-l10n-id="perms.span.addresse">Address of website:</span>
191
191
    <br>
192
 
    <input id="perm_input_address" type="text" />
 
192
    <input id="perm_input_address" type="text" tabindex="4" />
193
193
    <br>
194
 
    <button id="perm_button_block"   type="button" disabled data-l10n-id="perms.cookies.block">Block</button>
195
 
    <button id="perm_button_allow"   type="button" disabled data-l10n-id="perms.cookies.allow">Allow</button>
196
 
    <button id="perm_button_session" type="button" disabled data-l10n-id="perms.cookies.allow_session">Allow for session</button>
 
194
    <button id="perm_button_block"   type="button" tabindex="5" disabled data-l10n-id="perms.cookies.block">Block</button>
 
195
    <button id="perm_button_allow"   type="button" tabindex="6" disabled data-l10n-id="perms.cookies.allow">Allow</button>
 
196
    <button id="perm_button_session" type="button" tabindex="7" disabled data-l10n-id="perms.cookies.allow_session">Allow for session</button>
197
197
    <br>
198
198
 
199
199
    <div id="perm_div_table" class="div_table_scroll">
200
 
      <table id="perm_table" class="table_scroll">
 
200
      <table id="perm_table" class="table_scroll" tabindex="8">
201
201
        <thead id="perm_thead" class="table_scroll_head">
202
202
          <tr id="perm_header_tr" class="table_scroll_header_row">
203
203
            <th id="perm_th_site"
234
234
                  onclick="gCookieKeeperPermissionsHTML.onContextMenu(event);" ></menuitem>
235
235
      </menu>
236
236
    </div>
237
 
    <button id="perm_button_remove"     type="button" disabled data-l10n-id="perms.cookies.remove">Remove</button>
238
 
    <button id="perm_button_remove_all" type="button" disabled data-l10n-id="perms.cookies.remove_all">Remove All</button>
 
237
    <button id="perm_button_remove"     type="button" tabindex="9"  disabled data-l10n-id="perms.cookies.remove">Remove</button>
 
238
    <button id="perm_button_remove_all" type="button" tabindex="10" disabled data-l10n-id="perms.cookies.remove_all">Remove All</button>
239
239
 
240
240
  </div>
241
241