Chromium Code Reviews| 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 .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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 82 display: -webkit-box; | 82 display: -webkit-box; |
| 83 margin: 20px 0; | 83 margin: 20px 0; |
| 84 } | 84 } |
| 85 | 85 |
| 86 .choices > div > * { | 86 .choices > div > * { |
| 87 display: block; | 87 display: block; |
| 88 margin: 0 3px; | 88 margin: 0 3px; |
| 89 } | 89 } |
| 90 | 90 |
| 91 .choices label[for=import-photos-to-drive] { | 91 .choices label[for=import-photos-to-drive] { |
| 92 /* TODO(dgozman): change to the right one */ | |
| 93 background: | 92 background: |
| 94 url('chrome://theme/IDR_FILE_MANAGER_IMG_FILETYPE_GSHEET') no-repeat; | 93 url('chrome://theme/IDR_FILE_MANAGER_IMG_FILETYPE_DRIVE') no-repeat; |
|
Vladislav Kaznacheev
2012/09/17 19:46:14
How about supporting HiDPI here and below?
dgozman
2012/09/18 11:28:09
Done.
| |
| 95 padding-left: 20px; | 94 padding-left: 20px; |
| 96 } | 95 } |
| 97 | 96 |
| 98 .choices label[for=view-files] { | 97 .choices label[for=view-files] { |
| 99 /* TODO(dgozman): change to the right one */ | 98 background: url(../images/icon16.png) no-repeat; |
| 100 background: | |
| 101 url('chrome://theme/IDR_FILE_MANAGER_IMG_FILETYPE_GDOC') no-repeat; | |
| 102 padding-left: 20px; | 99 padding-left: 20px; |
| 103 } | 100 } |
| 104 | 101 |
| 102 .choices label[for=watch-single-video] { | |
| 103 background: | |
| 104 url('chrome://theme/IDR_FILE_MANAGER_IMG_FILETYPE_VIDEO') no-repeat; | |
| 105 padding-left: 20px; | |
| 106 } | |
| 107 | |
| 105 .footer { | 108 .footer { |
| 106 -webkit-box-orient: horizontal; | 109 -webkit-box-orient: horizontal; |
| 107 -webkit-box-pack: end; | 110 -webkit-box-pack: end; |
| 108 bottom: 10px; | 111 bottom: 10px; |
| 109 display: -webkit-box; | 112 display: -webkit-box; |
| 110 left: 10px; | 113 left: 10px; |
| 111 padding-bottom: 5px; | 114 padding-bottom: 5px; |
| 112 position: absolute; | 115 position: absolute; |
| 113 right: 10px; | 116 right: 10px; |
| 114 } | 117 } |
| 115 | 118 |
| 116 .footer button { | 119 .footer button { |
| 117 height: 24px; | 120 height: 24px; |
| 118 margin-left: 10px; | 121 margin-left: 10px; |
| 119 min-width: 80px; | 122 min-width: 80px; |
| 120 } | 123 } |
| OLD | NEW |