Chromium Code Reviews| Index: chrome/browser/resources/file_manager/css/action_choice.css |
| =================================================================== |
| --- chrome/browser/resources/file_manager/css/action_choice.css (revision 157111) |
| +++ chrome/browser/resources/file_manager/css/action_choice.css (working copy) |
| @@ -89,19 +89,24 @@ |
| } |
| .choices label[for=import-photos-to-drive] { |
| - /* TODO(dgozman): change to the right one */ |
| - background: |
| - url('chrome://theme/IDR_FILE_MANAGER_IMG_FILETYPE_GSHEET') no-repeat; |
| + background: -webkit-image-set( |
| + url('chrome://theme/IDR_FILE_MANAGER_IMG_FILETYPE_DRIVE') 1x, |
| + url('chrome://theme/IDR_FILE_MANAGER_IMG_FILETYPE_DRIVE@2x') 2x) no-repeat; |
| padding-left: 20px; |
| } |
| .choices label[for=view-files] { |
| - /* TODO(dgozman): change to the right one */ |
| - background: |
| - url('chrome://theme/IDR_FILE_MANAGER_IMG_FILETYPE_GDOC') no-repeat; |
| + background: url(../images/icon16.png) no-repeat; |
|
Vladislav Kaznacheev
2012/09/18 11:41:49
Don't we have 2x for this icon as well?
dgozman
2012/09/18 11:42:34
We only have 16 and 128.
|
| padding-left: 20px; |
| } |
| +.choices label[for=watch-single-video] { |
| + background: -webkit-image-set( |
| + url('chrome://theme/IDR_FILE_MANAGER_IMG_FILETYPE_VIDEO') 1x, |
| + url('chrome://theme/IDR_FILE_MANAGER_IMG_FILETYPE_VIDEO@2x') 2x) no-repeat; |
| + padding-left: 20px; |
| +} |
| + |
| .footer { |
| -webkit-box-orient: horizontal; |
| -webkit-box-pack: end; |