summaryrefslogtreecommitdiffstats
path: root/chrome/test/data/extensions/samples/gmail/styles.css
diff options
context:
space:
mode:
authoraa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-29 20:03:07 +0000
committeraa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-29 20:03:07 +0000
commit072bbfa45e16385741fd00dede5c4c31e42438a6 (patch)
treef9bce083a9fc551dba0219582e1db774a18e64e9 /chrome/test/data/extensions/samples/gmail/styles.css
parentdacb10dd3adcd8bed394fef63657a0b8ad45ffe4 (diff)
downloadchromium_src-072bbfa45e16385741fd00dede5c4c31e42438a6.zip
chromium_src-072bbfa45e16385741fd00dede5c4c31e42438a6.tar.gz
chromium_src-072bbfa45e16385741fd00dede5c4c31e42438a6.tar.bz2
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
Diffstat (limited to 'chrome/test/data/extensions/samples/gmail/styles.css')
-rw-r--r--chrome/test/data/extensions/samples/gmail/styles.css16
1 files changed, 16 insertions, 0 deletions
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;
+}