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

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

Issue 10939019: [filemanager] HiDPI icon for filemanager. (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 .action-choice { 5 .action-choice {
6 -webkit-box-align: center; 6 -webkit-box-align: center;
7 -webkit-box-orient: vertical; 7 -webkit-box-orient: vertical;
8 -webkit-user-select: none; 8 -webkit-user-select: none;
9 background: white; 9 background: white;
10 bottom: 0; 10 bottom: 0;
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 } 89 }
90 90
91 .choices label[for=import-photos-to-drive] { 91 .choices label[for=import-photos-to-drive] {
92 background: -webkit-image-set( 92 background: -webkit-image-set(
93 url('chrome://theme/IDR_FILE_MANAGER_IMG_FILETYPE_DRIVE') 1x, 93 url('chrome://theme/IDR_FILE_MANAGER_IMG_FILETYPE_DRIVE') 1x,
94 url('chrome://theme/IDR_FILE_MANAGER_IMG_FILETYPE_DRIVE@2x') 2x) no-repeat; 94 url('chrome://theme/IDR_FILE_MANAGER_IMG_FILETYPE_DRIVE@2x') 2x) no-repeat;
95 padding-left: 20px; 95 padding-left: 20px;
96 } 96 }
97 97
98 .choices label[for=view-files] { 98 .choices label[for=view-files] {
99 background: url(../images/icon16.png) no-repeat; 99 background: -webkit-image-set(
100 url('../images/icon16.png') 1x,
101 url('../images/icon32.png') 2x) no-repeat;
100 padding-left: 20px; 102 padding-left: 20px;
101 } 103 }
102 104
103 .choices label[for=watch-single-video] { 105 .choices label[for=watch-single-video] {
104 background: -webkit-image-set( 106 background: -webkit-image-set(
105 url('chrome://theme/IDR_FILE_MANAGER_IMG_FILETYPE_VIDEO') 1x, 107 url('chrome://theme/IDR_FILE_MANAGER_IMG_FILETYPE_VIDEO') 1x,
106 url('chrome://theme/IDR_FILE_MANAGER_IMG_FILETYPE_VIDEO@2x') 2x) no-repeat; 108 url('chrome://theme/IDR_FILE_MANAGER_IMG_FILETYPE_VIDEO@2x') 2x) no-repeat;
107 padding-left: 20px; 109 padding-left: 20px;
108 } 110 }
109 111
110 .footer { 112 .footer {
111 -webkit-box-orient: horizontal; 113 -webkit-box-orient: horizontal;
112 -webkit-box-pack: end; 114 -webkit-box-pack: end;
113 bottom: 10px; 115 bottom: 10px;
114 display: -webkit-box; 116 display: -webkit-box;
115 left: 10px; 117 left: 10px;
116 padding-bottom: 5px; 118 padding-bottom: 5px;
117 position: absolute; 119 position: absolute;
118 right: 10px; 120 right: 10px;
119 } 121 }
120 122
121 .footer button { 123 .footer button {
122 height: 24px; 124 height: 24px;
123 margin-left: 10px; 125 margin-left: 10px;
124 min-width: 80px; 126 min-width: 80px;
125 } 127 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/component_extension_resources.grd ('k') | chrome/browser/resources/file_manager/images/icon32.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698