tor-browser

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

unified-extensions-viewcache.inc.xhtml (2079B)


      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 <!--
      6  This is the template used for the `unified-extensions-item` custom element,
      7  defined in `browser/base/content/browser-unified-extensions.js`.
      8 -->
      9 <html:template id="unified-extensions-item-template">
     10  <box class="unified-extensions-item-row-wrapper">
     11    <toolbarbutton class="unified-extensions-item-action-button subviewbutton">
     12      <image class="unified-extensions-item-icon"
     13             role="presentation"
     14             src="chrome://mozapps/skin/extensions/extensionGeneric.svg" />
     15 
     16      <vbox class="unified-extensions-item-contents">
     17        <label class="unified-extensions-item-name" />
     18        <!--
     19          IMPORTANT: if you change the order of the labels in the deck,
     20          please update the indexes in `browser/base/content/browser-addons.js`.
     21        -->
     22        <deck class="unified-extensions-item-message-deck">
     23          <label class="unified-extensions-item-message unified-extensions-item-message-default">
     24            <!-- A message describing the current Origin Controls state -->
     25          </label>
     26          <label class="unified-extensions-item-message unified-extensions-item-message-hover">
     27            <!-- A message indicating what a user can do when clicking the action button -->
     28          </label>
     29          <label class="unified-extensions-item-message unified-extensions-item-message-hover-menu-button"
     30                 data-l10n-id="unified-extensions-item-message-manage">
     31          </label>
     32        </deck>
     33      </vbox>
     34    </toolbarbutton>
     35 
     36    <toolbarbutton class="unified-extensions-item-menu-button subviewbutton subviewbutton-iconic"
     37                   closemenu="none"
     38                   context="unified-extensions-context-menu"
     39                   data-navigable-with-tab-only="true" />
     40  </box>
     41  <html:unified-extensions-item-messagebar-wrapper></html:unified-extensions-item-messagebar-wrapper>
     42 </html:template>