summaryrefslogtreecommitdiffstats
path: root/toolkit/components/aboutconfig/content/aboutconfig.html
blob: 8962cdd86d802f536dbef9cad8928d3e7a4eebf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!-- 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" />
    <meta name="color-scheme" content="light dark" />
    <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://global/content/aboutconfig/aboutconfig.css"
    />
    <link rel="localization" href="branding/brand.ftl" />
    <link rel="localization" href="toolkit/about/config.ftl" />
    <link rel="icon" href="chrome://global/skin/icons/settings.svg" />
    <script src="chrome://global/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
          id="warningButton"
          class="primary"
          data-l10n-id="about-config-intro-warning-button"
        ></button>
      </div>
    </div>

    <template id="main">
      <div id="toolbar">
        <!-- 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"
        />
        <label class="checkbox-container">
          <input type="checkbox" id="about-config-show-only-modified" />
          <span data-l10n-id="about-config-show-only-modified"></span>
        </label>
      </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>