mirror of
https://github.com/zen-browser/desktop.git
synced 2026-01-16 18:07:11 +00:00
* chore: Sync upstream to `Firefox 147.0` * chore: Continued migration, b=no-bug, c=tests * chore: Finish migration without testing, b=no-bug, c=scripts, tabs, media, common, split-view * feat: Finish migration, b=no-bug, c=common, compact-mode, split-view, workspaces * feat: Finish basic migration, b=no-bug, c=kbs, common, folders * feat: Update surfer, b=no-bug, c=scripts
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 a1aec823d6266d69ff02aa8523d2da999a0871b9..559f2ea12e53dd19f24e7953db4388456b97f02c 100644
|
|
--- a/browser/components/preferences/preferences.xhtml
|
|
+++ b/browser/components/preferences/preferences.xhtml
|
|
@@ -46,6 +46,8 @@
|
|
<link rel="stylesheet" href="chrome://browser/content/preferences/widgets/setting-pane.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 -->
|
|
@@ -115,6 +117,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"
|
|
@@ -127,6 +134,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"
|
|
@@ -242,11 +293,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">
|
|
@@ -260,6 +306,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>
|