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

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

Issue 14348017: Restyled the auto-completion box for Files.app's new UI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added missing files. Created 7 years, 8 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 /* This file contains "borrowed" copy of standard styles. To simplify merging, 5 /* This file contains "borrowed" copy of standard styles. To simplify merging,
6 * when altering, please preserve original property value by adding comments. */ 6 * when altering, please preserve original property value by adding comments. */
7 input.common[type='checkbox'], 7 input.common[type='checkbox'],
8 input.common[type='radio'] { 8 input.common[type='radio'] {
9 -webkit-appearance: none; 9 -webkit-appearance: none;
10 -webkit-border-radius: 1px; 10 -webkit-border-radius: 1px;
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 border-radius: 3px; 280 border-radius: 3px;
281 outline: none; 281 outline: none;
282 padding: 2px 0; 282 padding: 2px 0;
283 z-index: 15; 283 z-index: 15;
284 } 284 }
285 285
286 body[new-ui] menu.chrome-menu { 286 body[new-ui] menu.chrome-menu {
287 -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .5); 287 -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .5);
288 background-color: rgb(250, 250, 250); 288 background-color: rgb(250, 250, 250);
289 border: 1px solid rgb(255, 255, 255); 289 border: 1px solid rgb(255, 255, 255);
290 color: rgb(34, 34, 34);
290 overflow: hidden; 291 overflow: hidden;
291 padding: 5px 0; 292 padding: 5px 0;
292 } 293 }
293 294
294 menu.chrome-menu[hidden] { 295 menu.chrome-menu[hidden] {
295 display: block; 296 display: block;
296 opacity: 0; 297 opacity: 0;
297 pointer-events: none; 298 pointer-events: none;
298 visibility: hidden; 299 visibility: hidden;
299 } 300 }
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
481 background-image: -webkit-image-set( 482 background-image: -webkit-image-set(
482 url('../images/icon32.png') 1x, 483 url('../images/icon32.png') 1x,
483 url('../images/icon64.png') 2x); 484 url('../images/icon64.png') 2x);
484 } 485 }
485 486
486 div.watch-single-video-icon { 487 div.watch-single-video-icon {
487 background-image: -webkit-image-set( 488 background-image: -webkit-image-set(
488 url('../images/media/watch.png') 1x, 489 url('../images/media/watch.png') 1x,
489 url('../images/media/2x/watch.png') 2x); 490 url('../images/media/2x/watch.png') 2x);
490 } 491 }
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/resources/file_manager/css/file_manager.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698