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

Side by Side Diff: chrome/browser/resources/contextual_search/promo.css

Issue 456833003: [Search] Make the text swoosh away off the screen when the user taps the opt-in link. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: addressed comments Created 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* Copyright 2014 The Chromium Authors. All rights reserved. 1 /* Copyright 2014 The Chromium Authors. All rights reserved.
2 Use of this source code is governed by a BSD-style license that can be 2 Use of this source code is governed by a BSD-style license that can be
3 found in the LICENSE file. 3 found in the LICENSE file.
4 */ 4 */
5 @font-face { 5 @font-face {
6 font-family: 'Roboto2'; 6 font-family: 'Roboto2';
7 font-weight: 400; 7 font-weight: 400;
8 src: local('Roboto'), local('Roboto2-Regular'), 8 src: local('Roboto'), local('Roboto2-Regular'),
9 url(/roboto.woff2) format('woff2'), url(/roboto.woff) format('woff'); 9 url(/roboto.woff2) format('woff2'), url(/roboto.woff) format('woff');
10 } 10 }
(...skipping 28 matching lines...) Expand all
39 text-decoration: none; 39 text-decoration: none;
40 text-transform: uppercase; 40 text-transform: uppercase;
41 } 41 }
42 42
43 #button-container { 43 #button-container {
44 position: fixed; 44 position: fixed;
45 text-align: right; 45 text-align: right;
46 top: calc(70% - 76px /* action bar */ - 69px /* height of content */); 46 top: calc(70% - 76px /* action bar */ - 69px /* height of content */);
47 width: 100%; 47 width: 100%;
48 } 48 }
49
50 #container.fadeout {
51 opacity: 0;
pedro (no code reviews) 2014/08/11 21:38:02 Nit: prefixed properties (-webkit) should come fir
Mathieu 2014/08/12 12:39:46 Done.
52 -webkit-transform: scale(0.95);
53 -webkit-transition-property: opacity, -webkit-transform;
54 -webkit-transition-duration: 218ms;
55 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698