Update subproject commit with dirty changes

This commit is contained in:
mauro-balades
2024-09-14 12:24:02 +02:00
parent 9de1e518d8
commit d4791df40b
3 changed files with 21 additions and 1 deletions

2
l10n

Submodule l10n updated: c3bb1570dc...fdbc3c70de

View File

@@ -153,6 +153,8 @@ pref('image.jxl.enabled', true);
pref("dom.ipc.processPriorityManager.backgroundUsesEcoQoS", false);
#endif
pref('browser.sessionstore.restore_pinned_tabs_on_demand', true);
// Enable experimental settings page (Usef for Zen Labs)
pref('browser.preferences.experimental', true);

View File

@@ -4,6 +4,8 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
@namespace html "http://www.w3.org/1999/xhtml";
:root {
--zen-settings-secondary-background: light-dark(#f2f4f4, color-mix(in srgb, var(--zen-colors-tertiary) 50%, #0f0f0f 50%));
}
@@ -21,6 +23,22 @@ description {
margin-top: 0 !important;
}
@keyframes dialogPopin {
0% {
transform: scale(0.9);
opacity: 0;
}
100% {
transform: scale(1);
opacity: 1;
}
}
html|dialog {
animation: dialogPopin 0.2s ease-out;
}
groupbox {
background: light-dark(white, color-mix(in srgb, var(--zen-primary-color) 2%, #1b1b1b 98%));
padding-inline: unset !important;