[ui] Remove animation from task logs sidebar (#15146)

* Remove animation from task logs sidebar

* changelog
This commit is contained in:
Phil Renaud 2022-11-07 10:11:18 -05:00 committed by GitHub
parent 9e1c0b46d8
commit 85521c49c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 13 deletions

3
.changelog/15146.txt Normal file
View File

@ -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
```

View File

@ -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%);
}
}