mirror of
https://github.com/zen-browser/desktop.git
synced 2026-04-04 14:49:38 +00:00
Fixed workspaces creation not opening and polished glance!
This commit is contained in:
Submodule src/browser/base/content/zen-components updated: 5d631354e5...078e617cc8
@@ -303,8 +303,8 @@
|
||||
}
|
||||
|
||||
to {
|
||||
width: calc(100% - var(--zen-element-separation));
|
||||
height: calc(100% - var(--zen-element-separation));
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0;
|
||||
left: 0;
|
||||
opacity: 1;
|
||||
|
||||
@@ -2,6 +2,11 @@
|
||||
|
||||
@media (-moz-bool-pref: 'zen.view.compact') {
|
||||
:root:not([customizing]):not([inDOMFullscreen='true']) {
|
||||
#zen-glance-overlay {
|
||||
height: calc(100% - var(--zen-element-separation) * 2);
|
||||
width: calc(100% - var(--zen-element-separation) * 2);
|
||||
}
|
||||
|
||||
@media (-moz-bool-pref: 'zen.view.compact.hide-tabbar') {
|
||||
#zen-sidebar-web-panel-wrapper:has(#zen-sidebar-web-panel[pinned='true']) {
|
||||
margin-left: calc(var(--zen-sidebar-web-panel-spacing) * 2) !important;
|
||||
@@ -11,6 +16,11 @@
|
||||
padding-inline-start: calc(var(--zen-toolbox-padding) - var(--toolbarbutton-outer-padding)) !important;
|
||||
}
|
||||
|
||||
&:not([inDOMFullscreen='true']) #zen-glance-overlay {
|
||||
margin-left: var(--zen-element-separation) !important;
|
||||
padding-right: var(--zen-element-separation) !important;
|
||||
}
|
||||
|
||||
/* Set the extra paddings */
|
||||
#tabbrowser-tabpanels {
|
||||
:root:not([inDOMFullscreen='true']) #browser:has(#navigator-toolbox[zen-right-side='true']) & {
|
||||
@@ -107,6 +117,10 @@
|
||||
padding-top: var(--zen-element-separation) !important;
|
||||
}
|
||||
|
||||
&:not([inDOMFullscreen='true']) #zen-glance-overlay {
|
||||
margin-top: var(--zen-element-separation) !important;
|
||||
}
|
||||
|
||||
#sidebar-box,
|
||||
#zen-sidebar-web-panel-wrapper:has(#zen-sidebar-web-panel:not([pinned='true'])) {
|
||||
margin-top: var(--zen-element-separation) !important;
|
||||
|
||||
@@ -1,13 +1,17 @@
|
||||
|
||||
#zen-glance-overlay {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
height: calc(100% - var(--zen-element-separation));
|
||||
width: calc(100% - var(--zen-element-separation));
|
||||
display: flex;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 3;
|
||||
|
||||
#browser:has(#navigator-toolbox[zen-right-side='true']) & {
|
||||
margin-left: var(--zen-element-separation);
|
||||
}
|
||||
|
||||
&:not(:has([animate-full-end='true'])):not(:has([animate-full='true'])) {
|
||||
background: color-mix(in srgb, var(--zen-colors-secondary) 30%, transparent 70%);
|
||||
backdrop-filter: blur(2px);
|
||||
|
||||
Reference in New Issue
Block a user