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

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

Issue 16014003: Adjust style of the popup dialogs's title in Files.app. (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 640 matching lines...) Expand 10 before | Expand all | Expand 10 after
651 } 651 }
652 652
653 body[new-ui] [hidden] { 653 body[new-ui] [hidden] {
654 display: none; 654 display: none;
655 } 655 }
656 656
657 body[new-ui] .cr-dialog-title { 657 body[new-ui] .cr-dialog-title {
658 -webkit-margin-after: 10px; 658 -webkit-margin-after: 10px;
659 -webkit-margin-end: 20px; 659 -webkit-margin-end: 20px;
660 display: block; 660 display: block;
661 font-size: 120%; 661 font-size: 125%;
hirono 2013/05/29 04:03:02 Cannot we specify the direct value '15px'?
662 font-weight: bold;
663 white-space: nowrap; 662 white-space: nowrap;
664 word-wrap: normal; 663 word-wrap: normal;
665 } 664 }
666 665
667 body[new-ui] .cr-dialog-text { 666 body[new-ui] .cr-dialog-text {
668 margin: 13px 0; 667 margin: 13px 0;
669 } 668 }
670 669
671 body[new-ui] .cr-dialog-text, 670 body[new-ui] .cr-dialog-text,
672 body[new-ui] .cr-dialog-title { 671 body[new-ui] .cr-dialog-title {
(...skipping 29 matching lines...) Expand all
702 width: 44px; 701 width: 44px;
703 } 702 }
704 703
705 body[new-ui] .cr-dialog-close:hover { 704 body[new-ui] .cr-dialog-close:hover {
706 background-image: url('chrome://theme/IDR_CLOSE_DIALOG_H'); 705 background-image: url('chrome://theme/IDR_CLOSE_DIALOG_H');
707 } 706 }
708 707
709 body[new-ui] .cr-dialog-close:active { 708 body[new-ui] .cr-dialog-close:active {
710 background-image: url('chrome://theme/IDR_CLOSE_DIALOG_P'); 709 background-image: url('chrome://theme/IDR_CLOSE_DIALOG_P');
711 } 710 }
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