forked from mirrors/gecko-dev
		
	 da3cf710f5
			
		
	
	
		da3cf710f5
		
	
	
	
	
		
			
			This patch makes us commit to the deemphasized color descriptive pattern throughout settings. I also made some changes where some settings were using description and should most likely be using a label instead and vice versa. Quick note that if the descriptive text is tied to an input such as a checkbox or toggle, as opposed to a section heading, we opt for the `.text-deemphasized` class/treatment where not only do we use the `--text-color-deemphasized` color but also shrink the font size. You'll see I opted for such treatment in the Experiments page checkbox list. Differential Revision: https://phabricator.services.mozilla.com/D197615
		
			
				
	
	
		
			209 lines
		
	
	
	
		
			10 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			209 lines
		
	
	
	
		
			10 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/. -->
 | |
| 
 | |
|     <script src="chrome://browser/content/preferences/search.js"/>
 | |
|     <html:template id="template-paneSearch">
 | |
|     <hbox id="searchCategory"
 | |
|           class="subcategory"
 | |
|           hidden="true"
 | |
|           data-category="paneSearch">
 | |
|       <html:h1 data-l10n-id="pane-search-title"/>
 | |
|     </hbox>
 | |
| 
 | |
|     <!-- Default Search Engine -->
 | |
|     <groupbox id="defaultEngineGroup" data-category="paneSearch" hidden="true">
 | |
|       <label><html:h2 data-l10n-id="search-engine-default-header" id="search-engine-default-header" /></label>
 | |
|       <description class="description-deemphasized" data-l10n-id="search-engine-default-desc-2" id="search-engine-default-desc-2" />
 | |
|       <hbox>
 | |
|         <menulist id="defaultEngine" aria-labelledby="search-engine-default-header" aria-describedby="search-engine-default-desc-2">
 | |
|           <menupopup/>
 | |
|         </menulist>
 | |
|       </hbox>
 | |
|       <checkbox id="searchShowSearchTermCheckbox"
 | |
|                 data-l10n-id="search-show-search-term-option"
 | |
|                 preference="browser.urlbar.showSearchTerms.enabled"
 | |
|                 hidden="true" />
 | |
|       <checkbox id="browserSeparateDefaultEngine"
 | |
|                 data-l10n-id="search-separate-default-engine"
 | |
|                 hidden="true"/>
 | |
|       <vbox id="browserPrivateEngineSelection" class="indent" hidden="true">
 | |
|         <description data-l10n-id="search-engine-default-private-desc-2" id="search-engine-default-private-desc-2" />
 | |
|         <hbox>
 | |
|           <menulist id="defaultPrivateEngine" aria-labelledby="search-engine-default-private-desc-2">
 | |
|             <menupopup/>
 | |
|           </menulist>
 | |
|         </hbox>
 | |
|       </vbox>
 | |
|     </groupbox>
 | |
| 
 | |
|     <groupbox id="searchSuggestionsGroup" data-category="paneSearch" hidden="true">
 | |
|       <label><html:h2 data-l10n-id="search-suggestions-header" /></label>
 | |
|       <description id="searchSuggestionsDesc"
 | |
|                    class="description-deemphasized"
 | |
|                    data-l10n-id="search-suggestions-desc" />
 | |
| 
 | |
|       <checkbox id="suggestionsInSearchFieldsCheckbox"
 | |
|                 data-l10n-id="search-show-suggestions-option" />
 | |
|       <vbox class="indent">
 | |
|         <checkbox id="urlBarSuggestion" data-l10n-id="search-show-suggestions-url-bar-option" />
 | |
|         <checkbox id="showSearchSuggestionsFirstCheckbox"
 | |
|                   data-l10n-id="search-show-suggestions-above-history-option"
 | |
|                   preference="browser.urlbar.showSearchSuggestionsFirst"/>
 | |
|         <checkbox id="showSearchSuggestionsPrivateWindows"
 | |
|                   data-l10n-id="search-show-suggestions-private-windows"/>
 | |
|         <hbox align="center" id="showTrendingSuggestionsBox">
 | |
|           <checkbox id="showTrendingSuggestions" data-l10n-id="search-show-trending-suggestions" preference="browser.urlbar.suggest.trending" class="tail-with-learn-more" />
 | |
|           <html:a is="moz-support-link" support-page="google-trending-searches-on-awesomebar" />
 | |
|         </hbox>
 | |
|         <hbox id="urlBarSuggestionPermanentPBLabel"
 | |
|               align="center" class="indent">
 | |
|           <label flex="1" data-l10n-id="search-suggestions-cant-show" />
 | |
|         </hbox>
 | |
|       </vbox>
 | |
|       <checkbox id="enableRecentSearches" data-l10n-id="addressbar-locbar-showrecentsearches-option" hidden="true"
 | |
|             preference="browser.urlbar.suggest.recentsearches" />
 | |
|     </groupbox>
 | |
| 
 | |
|     <!-- Address Bar -->
 | |
|     <groupbox id="locationBarGroup"
 | |
|               data-category="paneSearch"
 | |
|               hidden="true"
 | |
|               data-subcategory="locationBar">
 | |
|       <label><html:h2 id="locationBarGroupHeader" data-l10n-id="addressbar-header"/></label>
 | |
|       <label id="locationBarSuggestionLabel" class="description-deemphasized" data-l10n-id="addressbar-suggest"/>
 | |
|       <checkbox id="historySuggestion" data-l10n-id="addressbar-locbar-history-option"
 | |
|                 preference="browser.urlbar.suggest.history"/>
 | |
|       <checkbox id="bookmarkSuggestion" data-l10n-id="addressbar-locbar-bookmarks-option"
 | |
|                 preference="browser.urlbar.suggest.bookmark"/>
 | |
|       <checkbox id="clipboardSuggestion" data-l10n-id="addressbar-locbar-clipboard-option" hidden="true"
 | |
|                 preference="browser.urlbar.suggest.clipboard"/>
 | |
|       <checkbox id="openpageSuggestion" data-l10n-id="addressbar-locbar-openpage-option"
 | |
|                 preference="browser.urlbar.suggest.openpage"/>
 | |
|       <checkbox id="topSitesSuggestion"
 | |
|                 data-l10n-id="addressbar-locbar-shortcuts-option"
 | |
|                 preference="browser.urlbar.suggest.topsites"/>
 | |
|       <checkbox id="enginesSuggestion" data-l10n-id="addressbar-locbar-engines-option"
 | |
|                 preference="browser.urlbar.suggest.engines"/>
 | |
|       <hbox id="quickActionsBox" align="center" hidden="true">
 | |
|         <checkbox id="enableQuickActions"
 | |
|                   class="tail-with-learn-more"
 | |
|                   data-l10n-id="addressbar-locbar-quickactions-option"
 | |
|                   preference="browser.urlbar.suggest.quickactions" />
 | |
|         <html:a is="moz-support-link"
 | |
|                 id="quickActionsLink"
 | |
|                 data-l10n-id="addressbar-quickactions-learn-more"
 | |
|                 support-page="quick-actions-firefox-search-bar"
 | |
|         />
 | |
|       </hbox>
 | |
|       <vbox id="firefoxSuggestContainer" hidden="true">
 | |
|         <checkbox id="firefoxSuggestNonsponsored"
 | |
|                   data-l10n-id="addressbar-firefox-suggest-nonsponsored"
 | |
|                   preference="browser.urlbar.suggest.quicksuggest.nonsponsored"
 | |
|         />
 | |
|         <description class="indent tip-caption"
 | |
|                       data-l10n-id="addressbar-firefox-suggest-nonsponsored-desc"
 | |
|         />
 | |
|         <checkbox id="firefoxSuggestSponsored"
 | |
|                   data-l10n-id="addressbar-firefox-suggest-sponsored"
 | |
|                   preference="browser.urlbar.suggest.quicksuggest.sponsored"
 | |
|         />
 | |
|         <description class="indent tip-caption"
 | |
|                       data-l10n-id="addressbar-firefox-suggest-sponsored-desc"
 | |
|         />
 | |
|         <hbox id="firefoxSuggestInfoBox" class="info-box-container smaller-font-size" align="start"
 | |
|               hidden="true">
 | |
|           <html:img class="info-icon"/>
 | |
|           <description flex="1">
 | |
|             <html:span id="firefoxSuggestInfoText" class="tail-with-learn-more"/>
 | |
|             <html:a is="moz-support-link"
 | |
|                     id="firefoxSuggestInfoBoxLearnMore"
 | |
|                     class="learnMore firefoxSuggestLearnMore"
 | |
|                     data-l10n-id="addressbar-locbar-firefox-suggest-learn-more"
 | |
|                     support-page="firefox-suggest"
 | |
|             />
 | |
|           </description>
 | |
|         </hbox>
 | |
|         <vbox class="firefoxSuggestOptionBox">
 | |
|             <html:moz-toggle id="firefoxSuggestDataCollectionSearchToggle"
 | |
|                              preference="browser.urlbar.quicksuggest.dataCollection.enabled"
 | |
|                              data-l10n-id="addressbar-firefox-suggest-data-collection"
 | |
|                              data-l10n-attrs="label, description">
 | |
|               <html:a slot="support-link"
 | |
|                       is="moz-support-link"
 | |
|                       id="firefoxSuggestDataCollectionLearnMoreSearch"
 | |
|                       class="learnMore firefoxSuggestLearnMore"
 | |
|                       data-l10n-id="addressbar-locbar-firefox-suggest-learn-more"
 | |
|                       support-page="firefox-suggest"
 | |
|               />
 | |
|             </html:moz-toggle>
 | |
|         </vbox>
 | |
|         <hbox id="dismissedSuggestions" align="center">
 | |
|           <vbox flex="1">
 | |
|             <label data-l10n-id="addressbar-dismissed-suggestions-label"/>
 | |
|             <description class="tip-caption">
 | |
|               <html:span id="dismissedSuggestionsDescription"
 | |
|                         class="tail-with-learn-more"
 | |
|                         data-l10n-id="addressbar-restore-dismissed-suggestions-description"/>
 | |
|               <html:a is="moz-support-link"
 | |
|                       id="dismissedSuggestionsLearnMore"
 | |
|                       class="learnMore firefoxSuggestLearnMore"
 | |
|                       data-l10n-id="addressbar-restore-dismissed-suggestions-learn-more"
 | |
|                       support-page="firefox-suggest"
 | |
|               />
 | |
|             </description>
 | |
|           </vbox>
 | |
|           <button id="restoreDismissedSuggestions"
 | |
|                   is="highlightable-button"
 | |
|                   class="accessory-button"
 | |
|                   data-l10n-id="addressbar-restore-dismissed-suggestions-button"
 | |
|                   aria-describedby="dismissedSuggestionsDescription"/>
 | |
|         </hbox>
 | |
|       </vbox>
 | |
|     </groupbox>
 | |
| 
 | |
|     <groupbox id="oneClickSearchProvidersGroup" data-category="paneSearch" hidden="true">
 | |
|       <label><html:h2 data-l10n-id="search-one-click-header2" /></label>
 | |
|       <description class="description-deemphasized" data-l10n-id="search-one-click-desc" />
 | |
| 
 | |
|       <tree id="engineList" flex="1" rows="11" hidecolumnpicker="true" editable="true"
 | |
|             seltype="single" allowunderflowscroll="true">
 | |
|         <treechildren id="engineChildren" flex="1"/>
 | |
|         <treecols>
 | |
|           <treecol id="engineShown" type="checkbox" editable="true" sortable="false"/>
 | |
|           <treecol id="engineName" flex="1" data-l10n-id="search-choose-engine-column" sortable="false"/>
 | |
|           <treecol id="engineKeyword" flex="1" data-l10n-id="search-choose-keyword-column" sortable="false"/>
 | |
|         </treecols>
 | |
|       </tree>
 | |
| 
 | |
|       <hbox>
 | |
|         <button id="restoreDefaultSearchEngines"
 | |
|                 is="highlightable-button"
 | |
|                 data-l10n-id="search-restore-default"
 | |
|                 />
 | |
|         <spacer flex="1"/>
 | |
|         <button id="removeEngineButton"
 | |
|                 is="highlightable-button"
 | |
|                 class="searchEngineAction"
 | |
|                 data-l10n-id="search-remove-engine"
 | |
|                 disabled="true"
 | |
|                 />
 | |
|         <button id="addEngineButton"
 | |
|                 is="highlightable-button"
 | |
|                 class="searchEngineAction"
 | |
|                 hidden="true"
 | |
|                 data-l10n-id="search-add-engine"
 | |
|                 search-l10n-ids="
 | |
|                   add-engine-button,
 | |
|                   add-engine-name,
 | |
|                   add-engine-alias,
 | |
|                   add-engine-url,
 | |
|                   add-engine-dialog.buttonlabelaccept,
 | |
|                 "
 | |
|                 />
 | |
|       </hbox>
 | |
|       <hbox id="addEnginesBox" pack="start">
 | |
|         <label id="addEngines" data-l10n-id="search-find-more-link" is="text-link"></label>
 | |
|       </hbox>
 | |
|     </groupbox>
 | |
|     </html:template>
 |