[ui] Remove animation from task logs sidebar (#15146)
* Remove animation from task logs sidebar * changelog
This commit is contained in:
parent
9e1c0b46d8
commit
85521c49c4
|
@ -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
|
||||
```
|
|
@ -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%);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue