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 /* 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 Loading... | |
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 Loading... | |
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 } |
OLD | NEW |