Title: [205087] trunk/Tools
Revision
205087
Author
[email protected]
Date
2016-08-27 17:11:49 -0700 (Sat, 27 Aug 2016)

Log Message

REGRESSION (r204052): Popovers on bot watcher's dashboard are broken
https://bugs.webkit.org/show_bug.cgi?id=161254

Reviewed by Darin Adler.

Simplify the CSS. My understanding that the CSS was correct, and the root cause
is tracked in bug 160478.

* BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Styles/Popover.css:

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Styles/Popover.css (205086 => 205087)


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Styles/Popover.css	2016-08-28 00:10:29 UTC (rev 205086)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Styles/Popover.css	2016-08-28 00:11:49 UTC (rev 205087)
@@ -54,16 +54,14 @@
 }
 
 .popover.step-in {
-    transition: opacity 0ms;
-    /* This is a delay after popover creation. Popover tracking code may add a delay of its own before it decides to create the popover. */
+    /* The delay is after popover creation. Popover tracking code may add a delay of its own before it decides to create the popover. */
     /* It is useful to separate the delays because popover creation can be costly, e.g. it can lazily load data from network during the transition. */
-    transition-delay: 800ms;
+    transition: opacity 0ms 800ms;
     opacity: 1;
 }
 
 .popover.fade-out {
-    transition: opacity 500ms;
-    transition-delay: 200ms;
+    transition: opacity 500ms 200ms;
     opacity: 0;
 }
 

Modified: trunk/Tools/ChangeLog (205086 => 205087)


--- trunk/Tools/ChangeLog	2016-08-28 00:10:29 UTC (rev 205086)
+++ trunk/Tools/ChangeLog	2016-08-28 00:11:49 UTC (rev 205087)
@@ -1,3 +1,15 @@
+2016-08-27  Alexey Proskuryakov  <[email protected]>
+
+        REGRESSION (r204052): Popovers on bot watcher's dashboard are broken
+        https://bugs.webkit.org/show_bug.cgi?id=161254
+
+        Reviewed by Darin Adler.
+
+        Simplify the CSS. My understanding that the CSS was correct, and the root cause
+        is tracked in bug 160478.
+
+        * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Styles/Popover.css:
+
 2016-08-27  Simon Fraser  <[email protected]>
 
         Add run-webkit-tests --print-expectations to show expectations for all or a subset of tests
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to