forked from mirrors/gecko-dev
		
	
		
			
				
	
	
		
			31 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| # This Source Code Form is subject to the terms of the Mozilla Public
 | |
| # License, v. 2.0. If a copy of the MPL was not distributed with this
 | |
| # file, You can obtain one at http://mozilla.org/MPL/2.0/.
 | |
| 
 | |
| <!--
 | |
|   This is the template used for the `unified-extensions-item` custom element,
 | |
|   defined in `browser/base/content/browser-addons.js`.
 | |
| -->
 | |
| <html:template id="unified-extensions-item-template">
 | |
|   <toolbarbutton class="unified-extensions-item-action subviewbutton">
 | |
|     <image class="unified-extensions-item-icon"
 | |
|           role="presentation"
 | |
|           src="chrome://mozapps/skin/extensions/extensionGeneric.svg" />
 | |
| 
 | |
|     <vbox class="unified-extensions-item-contents">
 | |
|       <label class="unified-extensions-item-name" />
 | |
|       <label class="unified-extensions-item-message unified-extensions-item-message-default">
 | |
|         <!-- A notification could be printed here -->
 | |
|       </label>
 | |
|       <label class="unified-extensions-item-message unified-extensions-item-message-hover"
 | |
|              data-l10n-id="unified-extensions-item-message-manage">
 | |
|       </label>
 | |
|     </vbox>
 | |
|   </toolbarbutton>
 | |
| 
 | |
|   <toolbarbutton class="unified-extensions-item-open-menu subviewbutton subviewbutton-iconic"
 | |
|                  closemenu="none"
 | |
|                  context="unified-extensions-context-menu"
 | |
|                  data-l10n-id="unified-extensions-item-open-menu"
 | |
|                  data-navigable-with-tab-only="true" />
 | |
| </html:template>
 | 
