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

Side by Side Diff: chrome/browser/resources/local_ntp/local_ntp.css

Issue 450313002: [Resources] Update the Google logo assets to the proper representations (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
« no previous file with comments | « chrome/app/theme/default_200_percent/common/ntp_google_logo.png ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright 2013 The Chromium Authors. All rights reserved. 1 /* Copyright 2013 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 body { 4 body {
5 background-attachment: fixed !important; 5 background-attachment: fixed !important;
6 background-color: white; 6 background-color: white;
7 cursor: default; 7 cursor: default;
8 font-family: arial, sans-serif; 8 font-family: arial, sans-serif;
9 font-size: small; 9 font-size: small;
10 margin: 0; 10 margin: 0;
(...skipping 18 matching lines...) Expand all
29 body.fakebox-disable #fakebox { 29 body.fakebox-disable #fakebox {
30 border-color: rgb(238, 238, 238); 30 border-color: rgb(238, 238, 238);
31 cursor: default; 31 cursor: default;
32 } 32 }
33 33
34 body.fakebox-disable #fakebox > input { 34 body.fakebox-disable #fakebox > input {
35 cursor: default; 35 cursor: default;
36 } 36 }
37 37
38 #logo { 38 #logo {
39 background-image: -webkit-image-set( 39 background-image: url('images/google_logo.png@2x');
40 url('images/google_logo.png') 1x,
41 url('images/google_logo.png@2x') 2x);
42 background-repeat: no-repeat; 40 background-repeat: no-repeat;
43 background-size: 269px 95px; 41 background-size: 269px 95px;
44 height: 95px; 42 height: 95px;
45 margin-bottom: 24px; 43 margin-bottom: 24px;
46 margin-top: 157px; 44 margin-top: 157px;
47 width: 269px; 45 width: 269px;
48 } 46 }
49 47
50 body.alternate-logo #logo { 48 body.alternate-logo #logo {
51 background-image: url(images/white_google_logo.png); 49 background-image: url('images/white_google_logo.png@2x');
52 } 50 }
53 51
54 #fakebox { 52 #fakebox {
55 /* Use GPU compositing if available. */ 53 /* Use GPU compositing if available. */
56 -webkit-transform: translate3d(0, 0, 0); 54 -webkit-transform: translate3d(0, 0, 0);
57 -webkit-transition: -webkit-transform 100ms linear, border-color 100ms linear; 55 -webkit-transition: -webkit-transform 100ms linear, border-color 100ms linear;
58 background-color: #fff; 56 background-color: #fff;
59 border: 1px solid rgb(185, 185, 185); 57 border: 1px solid rgb(185, 185, 185);
60 border-radius: 1px; 58 border-radius: 1px;
61 border-top-color: rgb(160, 160, 160); 59 border-top-color: rgb(160, 160, 160);
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 opacity: 0.9; 332 opacity: 0.9;
335 padding: 3px; 333 padding: 3px;
336 position: fixed; 334 position: fixed;
337 right: 8px; 335 right: 8px;
338 } 336 }
339 337
340 body.rtl #attribution,body.rtl #recent-tabs { 338 body.rtl #attribution,body.rtl #recent-tabs {
341 left: 8px; 339 left: 8px;
342 right: auto; 340 right: auto;
343 } 341 }
OLDNEW
« no previous file with comments | « chrome/app/theme/default_200_percent/common/ntp_google_logo.png ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698