OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |