fix: Start working on more eslint rules, p=#11874

* fix: Start working on more eslint rules, b=no-bug, c=common, mods, workspaces

* chore: Continue migration, b=no-bug, c=workflows, windows, glance, mods, welcome, workspaces, common, compact-mode, folders, tests, kbs, media, split-view, tabs

* chore: Finish, b=no-bug, c=common, compact-mode, folders, glance, tests, kbs, media, mods, split-view, tabs, workspaces, welcome

* fix: Fix installing deps, b=no-bug, c=common

* feat: Dont initialize git on download checks, b=no-bug, c=workflows

* feat: Remove empty JS docs, b=no-bug, c=common, compact-mode, folders, glance, kbs, media, mods, split-view, tabs, tests, workspaces

* chore: Run lint, b=no-bug, c=common, folders, glance, kbs, mods, split-view, tabs, workspaces
This commit is contained in:
mr. m
2026-01-12 15:11:43 +01:00
committed by GitHub
parent fd82ad95b7
commit 37eed5fcfe
200 changed files with 15153 additions and 12664 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -4,7 +4,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
@namespace html 'http://www.w3.org/1999/xhtml';
@namespace html "http://www.w3.org/1999/xhtml";
:root {
--in-content-box-background: var(--zen-colors-tertiary) !important;
@@ -78,7 +78,7 @@ groupbox h2 {
}
#categories > .category[selected]::before {
content: '';
content: "";
display: block;
height: 70%;
width: 5px;
@@ -89,7 +89,7 @@ groupbox h2 {
}
#languagesGroup::before {
content: '';
content: "";
display: block;
height: 1px;
background-color: light-dark(rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.1));
@@ -123,7 +123,7 @@ groupbox h2 {
}
#category-zen-looks > .category-icon {
list-style-image: url('chrome://browser/skin/customize.svg');
list-style-image: url("chrome://browser/skin/customize.svg");
}
#zenLooksAndFeelGroup > html|div:last-of-type {
@@ -176,7 +176,7 @@ groupbox h2 {
/* Workspace */
#category-zen-tabs-management > .category-icon {
list-style-image: url('chrome://browser/skin/window.svg');
list-style-image: url("chrome://browser/skin/window.svg");
}
#zenTabsUnloadDelayContainer {
@@ -191,7 +191,7 @@ groupbox h2 {
/* CKS */
#category-zen-CKS > .category-icon {
list-style-image: url('chrome://browser/skin/quickactions.svg');
list-style-image: url("chrome://browser/skin/quickactions.svg");
}
.zenCKSOption-input {
@@ -325,7 +325,7 @@ groupbox h2 {
/* THemes marketplace */
#category-zen-marketplace > .category-icon {
list-style-image: url('chrome://mozapps/skin/extensions/category-themes.svg');
list-style-image: url("chrome://mozapps/skin/extensions/category-themes.svg");
}
.zenThemeMarketplaceItem {
@@ -347,14 +347,14 @@ groupbox h2 {
cursor: pointer;
&::before {
content: '';
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 18px;
height: 18px;
background-image: url('chrome://browser/skin/home.svg');
background-image: url("chrome://browser/skin/home.svg");
background-repeat: no-repeat;
background-size: cover;
fill: currentColor;
@@ -369,14 +369,14 @@ groupbox h2 {
cursor: pointer;
&::before {
content: '';
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 15px;
height: 15px;
background-image: url('chrome://global/skin/icons/settings.svg');
background-image: url("chrome://global/skin/icons/settings.svg");
background-repeat: no-repeat;
background-size: cover;
}
@@ -493,7 +493,7 @@ groupbox h2 {
font-weight: 600;
cursor: pointer;
&[disabled='true'] {
&[disabled="true"] {
opacity: 0.7;
cursor: not-allowed;
}
@@ -532,16 +532,16 @@ groupbox h2 {
.sync-engine-workspaces .checkbox-icon,
.sync-engine-workspaces.sync-engine-image {
list-style-image: url('chrome://devtools/skin/images/tool-storage.svg');
list-style-image: url("chrome://devtools/skin/images/tool-storage.svg");
}
@media -moz-pref('zen.theme.disable-lightweight') {
html|div[data-l10n-id='preferences-web-appearance-footer'] {
@media -moz-pref("zen.theme.disable-lightweight") {
html|div[data-l10n-id="preferences-web-appearance-footer"] {
display: none;
}
}
@media -moz-pref('zen.urlbar.replace-newtab') {
@media -moz-pref("zen.urlbar.replace-newtab") {
#category-home {
display: none !important;
}

File diff suppressed because it is too large Load Diff