mirror of
https://github.com/zen-browser/desktop.git
synced 2025-09-06 11:28:28 +00:00
fix: Fixed glance flashing when fully expanding, b=no-bug, c=folders, glance, tabs
This commit is contained in:
@@ -23,6 +23,10 @@ tab-group[split-view-group] {
|
||||
transition: margin-inline-start 0.15s ease-in-out;
|
||||
}
|
||||
|
||||
& .tab-group-label {
|
||||
height: 100% !important;
|
||||
}
|
||||
|
||||
& .tab-group-container {
|
||||
display: flex;
|
||||
flex-wrap: nowrap;
|
||||
@@ -208,7 +212,7 @@ zen-folder {
|
||||
|
||||
:root:not([zen-sidebar-expanded]) & {
|
||||
width: var(--tab-min-width) !important;
|
||||
margin: var(--tab-block-margin) auto !important;
|
||||
margin: 0 !important;
|
||||
|
||||
& .tab-group-label {
|
||||
visibility: hidden !important;
|
||||
|
@@ -149,7 +149,6 @@
|
||||
|
||||
this.browserWrapper?.removeAttribute('animate');
|
||||
this.browserWrapper?.removeAttribute('animate-end');
|
||||
this.browserWrapper?.removeAttribute('animate-full');
|
||||
this.browserWrapper?.removeAttribute('has-finished-animation');
|
||||
this.overlay?.removeAttribute('post-fade-out');
|
||||
|
||||
@@ -610,7 +609,6 @@
|
||||
finishOpeningGlance() {
|
||||
gBrowser.tabContainer._invalidateCachedTabs();
|
||||
gZenWorkspaces.updateTabsContainers();
|
||||
this.browserWrapper.removeAttribute('animate-full');
|
||||
this.overlay.classList.remove('zen-glance-overlay');
|
||||
this._clearContainerStyles(this.browserWrapper);
|
||||
this.animatingFullOpen = false;
|
||||
@@ -627,8 +625,6 @@
|
||||
const browserRect = window.windowUtils.getBoundsWithoutFlushing(this.browserWrapper);
|
||||
this.#currentTab.removeAttribute('zen-glance-tab');
|
||||
this._clearContainerStyles(this.browserWrapper);
|
||||
this.browserWrapper.removeAttribute('has-finished-animation');
|
||||
this.browserWrapper.setAttribute('animate-full', true);
|
||||
this.#currentTab.removeAttribute('glance-id');
|
||||
this.#currentParentTab.removeAttribute('glance-id');
|
||||
gBrowser.selectedTab = this.#currentTab;
|
||||
@@ -651,6 +647,7 @@
|
||||
return;
|
||||
}
|
||||
// Write the styles early to avoid flickering
|
||||
this.browserWrapper.style.opacity = 1;
|
||||
this.browserWrapper.style.width = `${browserRect.width}px`;
|
||||
this.browserWrapper.style.height = `${browserRect.height}px`;
|
||||
await gZenUIManager.motion.animate(
|
||||
@@ -660,10 +657,13 @@
|
||||
height: ['100%', '100%'],
|
||||
},
|
||||
{
|
||||
duration: 0.4,
|
||||
duration: 0.5,
|
||||
type: 'spring',
|
||||
}
|
||||
);
|
||||
this.browserWrapper.style.width = '';
|
||||
this.browserWrapper.style.height = '';
|
||||
this.browserWrapper.style.opacity = '';
|
||||
gZenViewSplitter.deactivateCurrentSplitView({ removeDeckSelected: true });
|
||||
this.finishOpeningGlance();
|
||||
}
|
||||
|
@@ -142,13 +142,6 @@
|
||||
transition: opacity 0.2s ease-in-out;
|
||||
}
|
||||
|
||||
&[animate-full='true'] {
|
||||
transform: translate(-50%, -50%);
|
||||
& .zen-glance-sidebar-container {
|
||||
opacity: 0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
&[animate='true'] {
|
||||
position: absolute;
|
||||
}
|
||||
|
@@ -331,7 +331,7 @@ var ZenPinnedTabsStorage = {
|
||||
}
|
||||
|
||||
if (!tabCheck[0].getResultByName('folder_parent_uuid')) {
|
||||
throw new Error(`Tab with UUID ${tabUuid} is not in a group`);
|
||||
return;
|
||||
}
|
||||
|
||||
const now = Date.now();
|
||||
|
Reference in New Issue
Block a user