Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Fixed the bookmark hanger being faded in #6382

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion less/navigationBar.less
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,10 @@
}

&:not(.titleMode) {
> * {

// Animate all direct descendants except for the bookmark bar
// PR #6382
> *:not(.bookmarkHanger) {
animation: fadeIn .6s;
opacity: 0;
animation-fill-mode: forwards;
Expand Down