Skip to content

Commit 9329f9e

Browse files
authored
Merge pull request #1689 from nextcloud/fix/modal-height
fix: ensure modal always has a min height to prevent jumping
2 parents 84abb8e + c9640fb commit 9329f9e

8 files changed

+12
-11
lines changed

css/firstrunwizard-style.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/firstrunwizard-about.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=[window.OC.filePath('firstrunwizard', '', 'js/main-CKfS-00g.chunk.mjs'),window.OC.filePath('firstrunwizard', '', 'js/NcModal-DKjyRKQe-BOPnIq6D.chunk.mjs'),window.OC.filePath('firstrunwizard', '', 'js/index-DfQpeuDm.chunk.mjs')])))=>i.map(i=>d[i]);
2-
import{_ as u}from"./modulepreload-polyfill-CBWYtosv.chunk.mjs";import{s as i}from"./index-DfQpeuDm.chunk.mjs";document.addEventListener("DOMContentLoaded",function(){const e=()=>document.querySelector("#firstrunwizard_about"),t=()=>{e().addEventListener("click",async function(o){o.stopPropagation(),o.preventDefault();const n=document.querySelector('[aria-controls="header-menu-user-menu"]')??void 0,{open:r}=await u(async()=>{const{open:a}=await import("./main-CKfS-00g.chunk.mjs");return{open:a}},__vite__mapDeps([0,1,2]),import.meta.url);r(n),OC.hideMenus(()=>!1)})};e()?t():i("core:user-menu:mounted",t)});
1+
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=[window.OC.filePath('firstrunwizard', '', 'js/main-DWPJOU1j.chunk.mjs'),window.OC.filePath('firstrunwizard', '', 'js/NcModal-DKjyRKQe-BOPnIq6D.chunk.mjs'),window.OC.filePath('firstrunwizard', '', 'js/index-DfQpeuDm.chunk.mjs')])))=>i.map(i=>d[i]);
2+
import{_ as u}from"./modulepreload-polyfill-CBWYtosv.chunk.mjs";import{s as i}from"./index-DfQpeuDm.chunk.mjs";document.addEventListener("DOMContentLoaded",function(){const e=()=>document.querySelector("#firstrunwizard_about"),t=()=>{e().addEventListener("click",async function(o){o.stopPropagation(),o.preventDefault();const n=document.querySelector('[aria-controls="header-menu-user-menu"]')??void 0,{open:r}=await u(async()=>{const{open:a}=await import("./main-DWPJOU1j.chunk.mjs");return{open:a}},__vite__mapDeps([0,1,2]),import.meta.url);r(n),OC.hideMenus(()=>!1)})};e()?t():i("core:user-menu:mounted",t)});
33
//# sourceMappingURL=firstrunwizard-about.mjs.map

js/firstrunwizard-activate.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=[window.OC.filePath('firstrunwizard', '', 'js/main-CKfS-00g.chunk.mjs'),window.OC.filePath('firstrunwizard', '', 'js/NcModal-DKjyRKQe-BOPnIq6D.chunk.mjs'),window.OC.filePath('firstrunwizard', '', 'js/index-DfQpeuDm.chunk.mjs')])))=>i.map(i=>d[i]);
2-
import{_ as t}from"./modulepreload-polyfill-CBWYtosv.chunk.mjs";document.addEventListener("DOMContentLoaded",async function(){(await t(()=>import("./main-CKfS-00g.chunk.mjs"),__vite__mapDeps([0,1,2]),import.meta.url)).open()});
1+
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=[window.OC.filePath('firstrunwizard', '', 'js/main-DWPJOU1j.chunk.mjs'),window.OC.filePath('firstrunwizard', '', 'js/NcModal-DKjyRKQe-BOPnIq6D.chunk.mjs'),window.OC.filePath('firstrunwizard', '', 'js/index-DfQpeuDm.chunk.mjs')])))=>i.map(i=>d[i]);
2+
import{_ as t}from"./modulepreload-polyfill-CBWYtosv.chunk.mjs";document.addEventListener("DOMContentLoaded",async function(){(await t(()=>import("./main-DWPJOU1j.chunk.mjs"),__vite__mapDeps([0,1,2]),import.meta.url)).open()});
33
//# sourceMappingURL=firstrunwizard-activate.mjs.map
Lines changed: 5 additions & 5 deletions
Large diffs are not rendered by default.
Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/SlideShow.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ function goToPage(pageId: string) {
162162
flex-direction: column;
163163
justify-content: space-between;
164164
width: 100%;
165+
min-height: min(590px, calc(100dvh - 2 * var(--header-height)));
165166
}
166167
167168
.background_circle {

0 commit comments

Comments
 (0)