Skip to content

Commit 1956c60

Browse files
committed
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: Canonical link: https://commits.webkit.org/179461@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@205087 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent 71a070e commit 1956c60

2 files changed

Lines changed: 15 additions & 5 deletions

File tree

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

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,14 @@
5454
}
5555

5656
.popover.step-in {
57-
transition: opacity 0ms;
58-
/* This is a delay after popover creation. Popover tracking code may add a delay of its own before it decides to create the popover. */
57+
/* The delay is after popover creation. Popover tracking code may add a delay of its own before it decides to create the popover. */
5958
/* 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. */
60-
transition-delay: 800ms;
59+
transition: opacity 0ms 800ms;
6160
opacity: 1;
6261
}
6362

6463
.popover.fade-out {
65-
transition: opacity 500ms;
66-
transition-delay: 200ms;
64+
transition: opacity 500ms 200ms;
6765
opacity: 0;
6866
}
6967

Tools/ChangeLog

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
2016-08-27 Alexey Proskuryakov <ap@apple.com>
2+
3+
REGRESSION (r204052): Popovers on bot watcher's dashboard are broken
4+
https://bugs.webkit.org/show_bug.cgi?id=161254
5+
6+
Reviewed by Darin Adler.
7+
8+
Simplify the CSS. My understanding that the CSS was correct, and the root cause
9+
is tracked in bug 160478.
10+
11+
* BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Styles/Popover.css:
12+
113
2016-08-27 Simon Fraser <simon.fraser@apple.com>
214

315
Add run-webkit-tests --print-expectations to show expectations for all or a subset of tests

0 commit comments

Comments
 (0)