Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(166)

Unified Diff: tools/skpdiff/viewer_style.css

Issue 20654006: download and rebaseline images using server (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: fix other missing filepath Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/skpdiff/viewer.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/skpdiff/viewer_style.css
diff --git a/tools/skpdiff/viewer_style.css b/tools/skpdiff/viewer_style.css
index 140deaa55b9962adb87e533dcb618295731ddbd0..81b4f906c99b31e333c2a3bf4523d40bca2a51a8 100644
--- a/tools/skpdiff/viewer_style.css
+++ b/tools/skpdiff/viewer_style.css
@@ -35,6 +35,36 @@ thead > tr > td {
text-align: right;
}
+.success-flash {
+ -webkit-animation-duration: 0.5s;
+ -webkit-animation-name: greenflash;
+}
+
+.failure-flash {
+ -webkit-animation-duration: 0.8s;
+ -webkit-animation-name: redflash;
+}
+
+@-webkit-keyframes greenflash {
+ from {
+ background-color: #8F8;
+ }
+
+ to {
+ background-color: #FFF
+ }
+}
+
+@-webkit-keyframes redflash {
+ from {
+ background-color: #F88;
+ }
+
+ to {
+ background-color: #FFF
+ }
+}
+
.result {
padding: 8px;
cursor: default;
« no previous file with comments | « tools/skpdiff/viewer.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698