tor-browser

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

containers.xhtml (2057B)


      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:; img-src resource: chrome:; style-src chrome:
      8 'unsafe-inline'; ?>
      9 
     10 <window
     11  id="ContainersDialog"
     12  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
     13  xmlns:html="http://www.w3.org/1999/xhtml"
     14  data-l10n-attrs="title, style"
     15  persist="width height"
     16 >
     17  <dialog
     18    buttons="accept"
     19    buttondisabledaccept="true"
     20    data-l10n-id="containers-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/containers-dialog.css"
     28      />
     29 
     30      <html:link rel="localization" href="browser/preferences/containers.ftl" />
     31    </linkset>
     32 
     33    <script src="chrome://browser/content/preferences/dialogs/containers.js" />
     34 
     35    <keyset>
     36      <key
     37        id="key_close"
     38        data-l10n-id="containers-window-close"
     39        modifiers="accel"
     40      />
     41    </keyset>
     42 
     43    <vbox class="contentPane" hidden="true" id="containers-content">
     44      <hbox align="start">
     45        <label
     46          id="nameLabel"
     47          control="name"
     48          data-l10n-id="containers-name-label"
     49          data-l10n-attrs="style"
     50        />
     51        <html:input id="name" type="text" data-l10n-id="containers-name-text" />
     52      </hbox>
     53      <hbox align="center" id="colorWrapper">
     54        <label
     55          id="colorLabel"
     56          control="color"
     57          data-l10n-id="containers-color-label"
     58          data-l10n-attrs="style"
     59        />
     60      </hbox>
     61      <hbox align="center" id="iconWrapper">
     62        <label
     63          id="iconLabel"
     64          control="icon"
     65          data-l10n-id="containers-icon-label"
     66          data-l10n-attrs="style"
     67        />
     68      </hbox>
     69    </vbox>
     70  </dialog>
     71 </window>