OLD | NEW |
| (Empty) |
1 <div id="personal-page" class="page" hidden> | |
2 <h1 i18n-content="personalPage"></h1> | |
3 <div class="displaytable"> | |
4 <if expr="pp_ifdef('chromeos')"> | |
5 <section> | |
6 <h3 i18n-content="account"></h3> | |
7 <div> | |
8 <span id="account-picture-wrapper"> | |
9 <img id="account-picture" | |
10 src="chrome://theme/IDR_PROFILE_PICTURE_LOADING"> | |
11 </span> | |
12 <label> | |
13 <input id="enable-screen-lock" type="checkbox" | |
14 pref="settings.enable_screen_lock"> | |
15 <span i18n-content="enableScreenlock"></span> | |
16 </label> | |
17 <br> | |
18 <button id="change-picture-button" i18n-content="changePicture"> | |
19 </button> | |
20 </div> | |
21 </section> | |
22 </if> | |
23 <if expr="not pp_ifdef('chromeos')"> | |
24 <section> | |
25 <h3 i18n-content="browsingData"></h3> | |
26 <div> | |
27 <button id="import-data" i18n-content="importData"></button> | |
28 </div> | |
29 </section> | |
30 </if> | |
31 <if expr="not pp_ifdef('toolkit_views') and is_posix and not is_macosx"> | |
32 <section> | |
33 <h3 i18n-content="appearance"></h3> | |
34 <div> | |
35 <div> | |
36 <button id="themes-GTK-button" | |
37 i18n-content="themesGTKButton"></button> | |
38 <button id="themes-reset" | |
39 i18n-content="themesSetClassic"></button> | |
40 </div> | |
41 <div id="themes-gallery-div"> | |
42 <a id="themes-gallery" i18n-content="themesGallery" | |
43 i18n-values="href:themesGalleryURL" target="_blank"></a> | |
44 </div> | |
45 <div class="radio"> | |
46 <label> | |
47 <input name="decorations_radio" | |
48 pref="browser.custom_chrome_frame" | |
49 type="radio" value="false" metric="Options_CustomFrame"> | |
50 <span i18n-content="showWindowDecorations"></span> | |
51 </label> | |
52 </div> | |
53 <div class="radio"> | |
54 <label> | |
55 <input name="decorations_radio" | |
56 pref="browser.custom_chrome_frame" | |
57 type="radio" value="true" metric="Options_CustomFrame"> | |
58 <span i18n-content="hideWindowDecorations"></span> | |
59 </label> | |
60 </div> | |
61 </div> | |
62 </section> | |
63 </if> | |
64 <if expr="pp_ifdef('toolkit_views') or os == 'win32' or os == 'darwin'"> | |
65 <section> | |
66 <h3 i18n-content="themes"></h3> | |
67 <div> | |
68 <div> | |
69 <button id="themes-reset" i18n-content="themesReset"></button> | |
70 </div> | |
71 <div id="themes-gallery-div"> | |
72 <a id="themes-gallery" i18n-content="themesGallery" | |
73 i18n-values="href:themesGalleryURL" target="_blank"></a> | |
74 </div> | |
75 </div> | |
76 </section> | |
77 </if> | |
78 </div> | |
79 </div> | |
OLD | NEW |