From 00c1fbb2fb46d8e1f3c08a369b5138f85f81ef29 Mon Sep 17 00:00:00 2001 From: Suguru Hirahara Date: Tue, 27 Dec 2016 13:32:16 +0900 Subject: [PATCH] Fixed the bookmark hanger being faded in Fixes #6380 Auditors: Test Plan: 1. Bookmark a page with the star icon on the URL bar 2. Make sure that "Bookmark Added" dialog is instantly displayed without animation --- less/navigationBar.less | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/less/navigationBar.less b/less/navigationBar.less index c6be3fddc0..67abf9ae2c 100644 --- a/less/navigationBar.less +++ b/less/navigationBar.less @@ -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;