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

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

Issue 15706010: Make the minimum progress bar state a rounded dot. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 border: 1px solid #555; 10 border: 1px solid #555;
(...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after
529 body[new-ui] .progress-bar { 529 body[new-ui] .progress-bar {
530 background-color: #e6e6e6; 530 background-color: #e6e6e6;
531 border-radius: 3px; 531 border-radius: 3px;
532 height: 6px; 532 height: 6px;
533 } 533 }
534 534
535 body[new-ui] .progress-track { 535 body[new-ui] .progress-track {
536 background-color: #888; 536 background-color: #888;
537 border-radius: 3px; 537 border-radius: 3px;
538 height: 6px; 538 height: 6px;
539 min-width: 6px;
539 } 540 }
540 541
541 .progress-track.smoothed { 542 .progress-track.smoothed {
542 transition: width 1s linear; 543 transition: width 1s linear;
543 } 544 }
544 545
545 /* Icons for the action choice dialog and choosing the default app. */ 546 /* Icons for the action choice dialog and choosing the default app. */
546 div.import-photos-to-drive-icon { 547 div.import-photos-to-drive-icon {
547 background-image: -webkit-image-set( 548 background-image: -webkit-image-set(
548 url('../images/media/drive.png') 1x, 549 url('../images/media/drive.png') 1x,
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
701 width: 44px; 702 width: 44px;
702 } 703 }
703 704
704 body[new-ui] .cr-dialog-close:hover { 705 body[new-ui] .cr-dialog-close:hover {
705 background-image: url('chrome://theme/IDR_CLOSE_DIALOG_H'); 706 background-image: url('chrome://theme/IDR_CLOSE_DIALOG_H');
706 } 707 }
707 708
708 body[new-ui] .cr-dialog-close:active { 709 body[new-ui] .cr-dialog-close:active {
709 background-image: url('chrome://theme/IDR_CLOSE_DIALOG_P'); 710 background-image: url('chrome://theme/IDR_CLOSE_DIALOG_P');
710 } 711 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698