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

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

Issue 10804010: HiDPI assets for Chrome OS Files app (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Changed ID ranges to accommodate new resources Created 8 years, 5 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 .photo-import { 5 .photo-import {
6 -webkit-user-select: none; 6 -webkit-user-select: none;
7 background: black; 7 background: black;
8 bottom: 0; 8 bottom: 0;
9 color: white; 9 color: white;
10 font-family: Open Sans, Droid Sans Fallback, sans-serif; 10 font-family: Open Sans, Droid Sans Fallback, sans-serif;
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 } 94 }
95 95
96 button.import[pressed] { 96 button.import[pressed] {
97 /* TODO */ 97 /* TODO */
98 background-image: url(../images/gallery/icon_crop_selected.png); 98 background-image: url(../images/gallery/icon_crop_selected.png);
99 } 99 }
100 100
101 101
102 102
103 .spinner { 103 .spinner {
104 background-image: url(../images/gallery/spinner_white.svg); 104 background-image: url(../images/common/spinner_white.svg);
105 background-size: 100%; 105 background-size: 100%;
106 height: 22px; 106 height: 22px;
107 left: 50%; 107 left: 50%;
108 margin-left: -11px; 108 margin-left: -11px;
109 margin-top: -11px; 109 margin-top: -11px;
110 position: absolute; 110 position: absolute;
111 top: 50%; 111 top: 50%;
112 width: 22px; 112 width: 22px;
113 } 113 }
114 114
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 -webkit-user-drag: none; 180 -webkit-user-drag: none;
181 border: 2px solid transparent; 181 border: 2px solid transparent;
182 box-sizing: border-box; 182 box-sizing: border-box;
183 position: absolute; 183 position: absolute;
184 } 184 }
185 185
186 .grid-item[selected] img, 186 .grid-item[selected] img,
187 .grid-item:hover img { 187 .grid-item:hover img {
188 outline: 2px solid rgb(51, 153, 255); 188 outline: 2px solid rgb(51, 153, 255);
189 } 189 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698