Remove all dropdown animations and set display: none if they're not open

This commit is contained in:
Annabel Dunstone Gray 2017-12-15 13:46:16 -07:00
parent 52fe6522bd
commit 36b3dbf29a
No known key found for this signature in database
GPG key ID: 7C8C78A372AD7A2D
2 changed files with 2 additions and 14 deletions

View file

@ -16,20 +16,12 @@
@mixin set-visible {
transform: translateY(0);
visibility: visible;
opacity: 1;
transition-duration: 100ms, 150ms, 25ms;
transition-delay: 35ms, 50ms, 25ms;
display: block;
}
@mixin set-invisible {
transform: translateY(-10px);
visibility: hidden;
opacity: 0;
transition-property: opacity, transform, visibility;
transition-duration: 70ms, 250ms, 250ms;
transition-timing-function: linear, $dropdown-animation-timing;
transition-delay: 25ms, 50ms, 0ms;
display: none;
}
.open {

View file

@ -499,10 +499,6 @@
.with-performance-bar .right-sidebar {
top: $header-height + $performance-bar-height;
.issuable-sidebar {
height: calc(100% - #{$header-height} - #{$performance-bar-height});
}
}
.sidebar-move-issue-confirmation-button {