diff options
Diffstat (limited to '')
-rw-r--r-- | browser/components/aboutconfig/content/aboutconfig.html | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/browser/components/aboutconfig/content/aboutconfig.html b/browser/components/aboutconfig/content/aboutconfig.html new file mode 100644 index 0000000000..ce7f258f8d --- /dev/null +++ b/browser/components/aboutconfig/content/aboutconfig.html @@ -0,0 +1,63 @@ +<!-- 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/. --> + +<!DOCTYPE html> +<html> + <head> + <meta http-equiv="Content-Security-Policy" content="default-src chrome:; object-src 'none'"> + <meta charset="utf-8"> + <link rel="stylesheet" media="screen, projection" type="text/css" + href="chrome://global/skin/in-content/common.css"> + <link rel="stylesheet" media="screen, projection" type="text/css" + href="chrome://global/skin/in-content/info-pages.css" title="infop"> + <link rel="stylesheet" type="text/css" + href="chrome://browser/content/aboutconfig/aboutconfig.css"> + <link rel="localization" href="branding/brand.ftl"> + <link rel="localization" href="browser/aboutConfig.ftl"> + <script src="chrome://browser/content/aboutconfig/aboutconfig.js"></script> + <title data-l10n-id="about-config-page-title"></title> + </head> + <body> + <div class="container" role="alertdialog" aria-labelledby="warningTitle" + aria-describedby="warningDescription"> + + <div class="title"> + <h1 id="warningTitle" class="title-text" + data-l10n-id="about-config-intro-warning-title"></h1> + </div> + + <div class="description"> + <p id="warningDescription" data-l10n-id="about-config-intro-warning-text"></p> + </div> + + <div class="toggle-container-with-text"> + <input type="checkbox" id="showWarningNextTime" checked> + <label for="showWarningNextTime" + data-l10n-id="about-config-intro-warning-checkbox"></label> + </div> + + <div class="button-container"> + <button autofocus id="warningButton" + data-l10n-id="about-config-intro-warning-button"></button> + </div> + </div> + + <template id="main"> + <div id="search-container"> + <!-- Use a unique ID to prevent showing autocomplete results from other + browser pages with similarly named fields. --> + <input type="text" id="about-config-search" + data-l10n-id="about-config-search-input1"> + </div> + + <table id="prefs"></table> + + <div class="config-background-wrapper"> + <button id="show-all" class="ghost-button" data-l10n-id="about-config-show-all"></button> + <div class="config-background"></div> + <p class="config-help-text" data-l10n-id="about-config-caution-text"></p> + </div> + </template> + </body> +</html> |