fix(elements/appui): prevent scroll chaining on app UI components by adding overscroll-behavior: contain

This commit is contained in:
2026-01-03 02:50:37 +00:00
parent 74844492eb
commit ca4f994b55
7 changed files with 13 additions and 1 deletions

View File

@@ -122,6 +122,7 @@ export class DeesAppuiActivitylog extends DeesElement implements IActivityLogAPI
width: 100%;
padding: 8px 0;
overflow-y: auto;
overscroll-behavior: contain;
scrollbar-width: thin;
scrollbar-color: ${cssManager.bdTheme('#d4d4d4', '#333333')} transparent;
}

View File

@@ -164,6 +164,7 @@ export class DeesAppuiMainmenu extends DeesElement {
flex: 1;
overflow-y: auto;
overflow-x: hidden;
overscroll-behavior: contain;
padding: 8px 0;
}

View File

@@ -285,6 +285,7 @@ export class DeesAppuiProfileDropdown extends DeesElement {
max-width: calc(100vw - 32px);
max-height: calc(100vh - 32px);
overflow-y: auto;
overscroll-behavior: contain;
}
:host([isopen]) .dropdown {

View File

@@ -201,6 +201,7 @@ export class DeesAppuiSecondarymenu extends DeesElement {
flex: 1;
overflow-y: auto;
overflow-x: hidden;
overscroll-behavior: contain;
padding: 8px 0;
}

View File

@@ -116,6 +116,7 @@ export class DeesAppuiTabs extends DeesElement {
font-size: 14px;
overflow-x: auto;
overflow-y: hidden;
overscroll-behavior: contain;
scrollbar-width: thin;
scrollbar-color: transparent transparent;
height: 100%;