mirror of
https://github.com/zen-browser/desktop.git
synced 2025-12-14 10:25:31 +00:00
100 lines
4.0 KiB
C++
100 lines
4.0 KiB
C++
diff --git a/browser/components/preferences/preferences.xhtml b/browser/components/preferences/preferences.xhtml
|
|
index 993554d64efa6ce39fbcc01d4676a69199e158ff..e69aec388162997ef7cb93481cfedb9d102b4fe0 100644
|
|
--- a/browser/components/preferences/preferences.xhtml
|
|
+++ b/browser/components/preferences/preferences.xhtml
|
|
@@ -45,6 +45,8 @@
|
|
<link rel="stylesheet" href="chrome://browser/content/preferences/widgets/setting-group.css" />
|
|
<link rel="stylesheet" href="chrome://browser/content/preferences/widgets/setting-control.css" />
|
|
|
|
+#include zen-preferences-links.xhtml
|
|
+
|
|
<link rel="localization" href="branding/brand.ftl"/>
|
|
<link rel="localization" href="browser/browser.ftl"/>
|
|
<!-- Used by fontbuilder.js -->
|
|
@@ -113,6 +115,11 @@
|
|
<hbox flex="1">
|
|
|
|
<vbox class="navigation">
|
|
+ <html:moz-input-search
|
|
+ id="searchInput"
|
|
+ data-l10n-id="search-input-box2"
|
|
+ data-l10n-attrs="placeholder, style"
|
|
+ />
|
|
<!-- category list -->
|
|
<richlistbox id="categories" data-l10n-id="category-list" data-l10n-attrs="aria-label">
|
|
<richlistitem id="category-general"
|
|
@@ -125,6 +132,50 @@
|
|
<label class="category-name" flex="1" data-l10n-id="pane-general-title"></label>
|
|
</richlistitem>
|
|
|
|
+ <richlistitem id="category-zen-looks"
|
|
+ class="category"
|
|
+ value="paneZenLooks"
|
|
+ helpTopic="prefs-main"
|
|
+ data-l10n-id="category-zen-looks"
|
|
+ data-l10n-attrs="tooltiptext"
|
|
+ align="center">
|
|
+ <image class="category-icon"/>
|
|
+ <label class="category-name" flex="1" data-l10n-id="pane-zen-looks-title"></label>
|
|
+ </richlistitem>
|
|
+
|
|
+ <richlistitem id="category-zen-tabs-management"
|
|
+ class="category"
|
|
+ value="paneZenTabManagement"
|
|
+ helpTopic="prefs-main"
|
|
+ data-l10n-id="category-zen-workspaces"
|
|
+ data-l10n-attrs="tooltiptext"
|
|
+ align="center">
|
|
+ <image class="category-icon"/>
|
|
+ <label class="category-name" flex="1" data-l10n-id="pane-zen-tabs-title"></label>
|
|
+ </richlistitem>
|
|
+
|
|
+ <richlistitem id="category-zen-CKS"
|
|
+ class="category"
|
|
+ value="paneZenCKS"
|
|
+ helpTopic="prefs-main"
|
|
+ data-l10n-id="category-zen-CKS"
|
|
+ data-l10n-attrs="tooltiptext"
|
|
+ align="center">
|
|
+ <image class="category-icon"/>
|
|
+ <label class="category-name" flex="1" data-l10n-id="pane-zen-CKS-title"></label>
|
|
+ </richlistitem>
|
|
+
|
|
+ <richlistitem id="category-zen-marketplace"
|
|
+ class="category"
|
|
+ value="paneZenMarketplace"
|
|
+ helpTopic="prefs-main"
|
|
+ data-l10n-id="category-zen-marketplace"
|
|
+ data-l10n-attrs="tooltiptext"
|
|
+ align="center">
|
|
+ <image class="category-icon"/>
|
|
+ <label class="category-name" flex="1" data-l10n-id="pane-zen-marketplace-title"></label>
|
|
+ </richlistitem>
|
|
+
|
|
<richlistitem id="category-home"
|
|
class="category"
|
|
value="paneHome"
|
|
@@ -236,11 +287,6 @@
|
|
<html:a href="about:policies" target="_blank" data-l10n-id="managed-notice"/>
|
|
</hbox>
|
|
</hbox>
|
|
- <html:moz-input-search
|
|
- id="searchInput"
|
|
- data-l10n-id="search-input-box2"
|
|
- data-l10n-attrs="placeholder, style"
|
|
- />
|
|
</hbox>
|
|
</hbox>
|
|
<vbox id="mainPrefPane">
|
|
@@ -254,6 +300,10 @@
|
|
#include sync.inc.xhtml
|
|
#include experimental.inc.xhtml
|
|
#include moreFromMozilla.inc.xhtml
|
|
+#include zenLooksAndFeel.inc.xhtml
|
|
+#include zenKeyboardShortcuts.inc.xhtml
|
|
+#include zenTabsManagement.inc.xhtml
|
|
+#include zenMarketplace.inc.xhtml
|
|
</vbox>
|
|
</vbox>
|
|
</vbox>
|