From 072bbfa45e16385741fd00dede5c4c31e42438a6 Mon Sep 17 00:00:00 2001 From: "aa@chromium.org" Date: Wed, 29 Apr 2009 20:03:07 +0000 Subject: Part 1 of sample sprucing. Also, change chromium_extension.py to generate a random ID if the manifest doesn't have one. * Create a test/data/extensions/samples directory and add Reader and Gmail samples to it. * Minor fixes to buildbot sample to fit better visually. * Minor fixes to bookmarks sample to use new button styles. * Workaround for bug in bookmark sample where extension APIs do not load the first time. * Move Resizer extension into samples/. * Fix TabsAPI sample to not use old deprecated manifest properties anymore. Part 2 will move the remaining samples into samples/ (don't want to do that at the same time because git-cl doesn't know how to tell Rietveld about moves and it would be confusing to review). Review URL: http://codereview.chromium.org/99172 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14872 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/test/data/extensions/samples/gmail/styles.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 chrome/test/data/extensions/samples/gmail/styles.css (limited to 'chrome/test/data/extensions/samples/gmail/styles.css') diff --git a/chrome/test/data/extensions/samples/gmail/styles.css b/chrome/test/data/extensions/samples/gmail/styles.css new file mode 100644 index 0000000..5587c1f --- /dev/null +++ b/chrome/test/data/extensions/samples/gmail/styles.css @@ -0,0 +1,16 @@ +.base-flip { + opacity: 1; +} + +.mid-flip { + opacity: .1; + color:red; + -webkit-transform: rotate(180deg) scale(1.3); + -webkit-transition: all .5s ease-in; +} + +.post-flip { + opacity: 1; + -webkit-transform: rotate(360deg) scale(1); + -webkit-transition: all .5s ease-out; +} -- cgit v1.1