diff --git a/package.json b/package.json index 0f6a2347..c4554aef 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@fuse/starter", - "version": "13.6.0", + "version": "13.6.1", "description": "Fuse - Angular Admin Template and Starter Project", "author": "https://themeforest.net/user/srcn", "license": "https://themeforest.net/licenses/standard", diff --git a/src/@fuse/version/fuse-version.ts b/src/@fuse/version/fuse-version.ts index e5745d8c..48095f0f 100644 --- a/src/@fuse/version/fuse-version.ts +++ b/src/@fuse/version/fuse-version.ts @@ -1,3 +1,3 @@ import { Version } from '@fuse/version/version'; -export const FUSE_VERSION = new Version('13.6.0').full; +export const FUSE_VERSION = new Version('13.6.1').full; diff --git a/src/app/layout/common/quick-chat/quick-chat.component.html b/src/app/layout/common/quick-chat/quick-chat.component.html index 7b55c534..9af73b71 100644 --- a/src/app/layout/common/quick-chat/quick-chat.component.html +++ b/src/app/layout/common/quick-chat/quick-chat.component.html @@ -1,6 +1,6 @@ -
+
diff --git a/src/app/layout/common/quick-chat/quick-chat.component.scss b/src/app/layout/common/quick-chat/quick-chat.component.scss index 62befd66..a59ee18e 100644 --- a/src/app/layout/common/quick-chat/quick-chat.component.scss +++ b/src/app/layout/common/quick-chat/quick-chat.component.scss @@ -1,5 +1,25 @@ quick-chat { z-index: 399; + + > div { + overflow: hidden; + } + + &.quick-chat-opened { + + > div { + overflow: visible; + } + } + + :not(&.quick-chat-opened) { + + > div { + overflow: visible; + animation: addOverflowHidden 1ms linear 400ms; + animation-fill-mode: forwards; + } + } } /* Adjustments depending on the selected layout */ @@ -24,3 +44,15 @@ quick-chat { opacity: 1; background-color: transparent; } + +@keyframes addOverflowHidden { + 0% { + overflow: visible + } + 99% { + overflow: visible; + } + 100% { + overflow: hidden; + } +}