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

Side by Side Diff: chrome/browser/resources/file_manager/css/gdrive_welcome.css

Issue 10912061: Revert r154623 - "Adds clouds.png in shared location." (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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 (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 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 /* Google Drive welcome banners.*/ 5 /* Google Drive welcome banners.*/
6 .gdrive-welcome-wrapper { 6 .gdrive-welcome-wrapper {
7 /* This image looks good in high DPI as is. */ 7 /* This image looks good in high DPI as is. */
8 background-image: url(chrome://resources/images/clouds.png); 8 background-image: url('../images/files/ui/clouds.png');
9 background-repeat: repeat-x; 9 background-repeat: repeat-x;
10 color: #333; 10 color: #333;
11 } 11 }
12 12
13 .gdrive-welcome-icon { 13 .gdrive-welcome-icon {
14 background-image: -webkit-image-set( 14 background-image: -webkit-image-set(
15 url('../images/files/ui/gdrive_logo.png') 1x, 15 url('../images/files/ui/gdrive_logo.png') 1x,
16 url('../images/files/ui/2x/gdrive_logo.png') 2x); 16 url('../images/files/ui/2x/gdrive_logo.png') 2x);
17 background-repeat: no-repeat; 17 background-repeat: no-repeat;
18 } 18 }
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 margin-left: 20px; 179 margin-left: 20px;
180 } 180 }
181 181
182 body:not([type='full-page']) .gdrive-welcome.page .gdrive-welcome-wrapper { 182 body:not([type='full-page']) .gdrive-welcome.page .gdrive-welcome-wrapper {
183 background-position: 0 0; 183 background-position: 0 0;
184 } 184 }
185 185
186 body:not([type='full-page']) .gdrive-welcome.page .gdrive-welcome-icon { 186 body:not([type='full-page']) .gdrive-welcome.page .gdrive-welcome-icon {
187 height: 200px; 187 height: 200px;
188 } 188 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698