tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

siteDataSettings.xhtml (2727B)


      1 <?xml version="1.0"?>
      2 
      3 <!-- This Source Code Form is subject to the terms of the Mozilla Public
      4   - License, v. 2.0. If a copy of the MPL was not distributed with this
      5   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
      6 
      7 <?csp default-src chrome:; style-src chrome: 'unsafe-inline'; ?>
      8 
      9 <window
     10  id="SiteDataSettingsDialog"
     11  data-l10n-id="site-data-settings-window"
     12  data-l10n-attrs="title"
     13  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
     14  xmlns:html="http://www.w3.org/1999/xhtml"
     15  style="min-width: 45em"
     16  persist="width height"
     17 >
     18  <dialog
     19    buttons="accept,cancel"
     20    data-l10n-id="site-data-settings-dialog"
     21    data-l10n-attrs="buttonlabelaccept, buttonaccesskeyaccept"
     22  >
     23    <linkset>
     24      <html:link rel="stylesheet" href="chrome://global/skin/global.css" />
     25      <html:link
     26        rel="stylesheet"
     27        href="chrome://browser/skin/preferences/preferences.css"
     28      />
     29      <html:link
     30        rel="stylesheet"
     31        href="chrome://browser/skin/preferences/siteDataSettings.css"
     32      />
     33 
     34      <html:link rel="localization" href="branding/brand.ftl" />
     35      <html:link
     36        rel="localization"
     37        href="browser/preferences/siteDataSettings.ftl"
     38      />
     39    </linkset>
     40 
     41    <script src="chrome://browser/content/preferences/dialogs/siteDataSettings.js" />
     42 
     43    <vbox flex="1" class="contentPane">
     44      <description
     45        id="settingsDescription"
     46        data-l10n-id="site-data-settings-description"
     47      />
     48      <separator class="thin" />
     49 
     50      <html:moz-input-search
     51        id="searchBox"
     52        data-l10n-id="site-data-search-textbox"
     53        data-l10n-attrs="placeholder"
     54      />
     55 
     56      <separator class="thin" />
     57 
     58      <listheader>
     59        <treecol
     60          style="flex: 4 4 auto; width: 50px"
     61          data-l10n-id="site-data-column-host"
     62          id="hostCol"
     63        />
     64        <treecol
     65          style="flex: 1 auto; width: 50px"
     66          data-l10n-id="site-data-column-cookies"
     67          id="cookiesCol"
     68        />
     69        <!-- Sorted by usage so the user can quickly see which sites use the most data. -->
     70        <treecol
     71          style="flex: 2 2 auto; width: 50px"
     72          data-l10n-id="site-data-column-storage"
     73          id="usageCol"
     74          data-isCurrentSortCol="true"
     75        />
     76        <treecol
     77          style="flex: 2 2 auto; width: 50px"
     78          data-l10n-id="site-data-column-last-used"
     79          id="lastAccessedCol"
     80        />
     81      </listheader>
     82      <richlistbox seltype="multiple" id="sitesList" orient="vertical" />
     83    </vbox>
     84 
     85    <hbox align="start">
     86      <button id="removeSelected" data-l10n-id="site-data-remove-selected" />
     87      <button id="removeAll" />
     88    </hbox>
     89  </dialog>
     90 </window>