Browse Source

Fix hiding bot commands with disabled animations

master
Eduard Kuzmenko 2 years ago
parent
commit
edcb0ae873
  1. 2
      src/components/chat/input.ts
  2. 5
      src/scss/partials/_chatBotCommands.scss

2
src/components/chat/input.ts

@ -226,7 +226,7 @@ export default class ChatInput { @@ -226,7 +226,7 @@ export default class ChatInput {
private botCommandsToggle: HTMLElement;
private botCommands: ChatBotCommands;
private botCommandsIcon: HTMLDivElement;
hasBotCommands: number;
private hasBotCommands: number;
// private activeContainer: HTMLElement;

5
src/scss/partials/_chatBotCommands.scss

@ -24,7 +24,10 @@ @@ -24,7 +24,10 @@
animation: none !important;
visibility: visible !important;
transition: none !important;
display: flex !important;
@include animation-level(2) {
display: flex !important;
}
.scrollable {
background-color: var(--surface-color);

Loading…
Cancel
Save