tor-browser

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

containers.inc.xhtml (1334B)


      1 # This Source Code Form is subject to the terms of the Mozilla Public
      2 # License, v. 2.0. If a copy of the MPL was not distributed with this
      3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
      4 
      5 <!-- Containers panel -->
      6 
      7 <script src="chrome://browser/content/preferences/containers.js"/>
      8 
      9 <hbox hidden="true"
     10      class="container-header-links"
     11      data-category="paneContainers">
     12  <button id="backContainersButton" class="back-button" data-l10n-id="containers-back-button2"/>
     13 </hbox>
     14 
     15 <hbox id="header-containers"
     16      class="header"
     17      hidden="true"
     18      data-category="paneContainers">
     19  <html:h1 data-l10n-id="containers-header"/>
     20 </hbox>
     21 
     22 <!-- Containers -->
     23 <groupbox id="browserContainersGroupPane" data-category="paneContainers" hidden="true"
     24          data-hidden-from-search="true" data-subpanel="true">
     25  <vbox id="browserContainersbox">
     26    <richlistbox id="containersView"/>
     27  </vbox>
     28  <vbox>
     29    <hbox flex="1">
     30      <button id="containersAdd"
     31              is="highlightable-button"
     32              data-l10n-id="containers-add-button"/>
     33    </hbox>
     34  </vbox>
     35  <vbox>
     36    <hbox flex="1">
     37      <checkbox id="containersNewTabCheck"
     38              data-l10n-id="containers-new-tab-check"
     39              preference="privacy.userContext.newTabContainerOnLeftClick.enabled"/>
     40    </hbox>
     41  </vbox>
     42 </groupbox>