From 85521c49c4b1f3bbb9fe57d21930a03f94d9818c Mon Sep 17 00:00:00 2001 From: Phil Renaud Date: Mon, 7 Nov 2022 10:11:18 -0500 Subject: [PATCH] [ui] Remove animation from task logs sidebar (#15146) * Remove animation from task logs sidebar * changelog --- .changelog/15146.txt | 3 +++ ui/app/styles/components/sidebar.scss | 13 ------------- 2 files changed, 3 insertions(+), 13 deletions(-) create mode 100644 .changelog/15146.txt diff --git a/.changelog/15146.txt b/.changelog/15146.txt new file mode 100644 index 000000000..e64010a78 --- /dev/null +++ b/.changelog/15146.txt @@ -0,0 +1,3 @@ +```release-note:bug +ui: Fixed a bug where the task log sidebar would close and re-open if the parent job state changed +``` diff --git a/ui/app/styles/components/sidebar.scss b/ui/app/styles/components/sidebar.scss index 21c08bf1e..9c1c36294 100644 --- a/ui/app/styles/components/sidebar.scss +++ b/ui/app/styles/components/sidebar.scss @@ -58,10 +58,6 @@ $subNavOffset: 49px; } .task-context-sidebar { - animation-name: slideFromRight; - animation-duration: 150ms; - animation-fill-mode: both; - header { display: grid; justify-content: left; @@ -122,12 +118,3 @@ $subNavOffset: 49px; ); } } - -@keyframes slideFromRight { - from { - transform: translateX(100%); - } - to { - transform: translateX(0%); - } -}