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 /* Force tab strip to extend to the left and right edges of the window. */ | 5 /* Force tab strip to extend to the left and right edges of the window. */ |
6 #internet-details-content-area { | 6 #internet-details-content-area { |
7 -webkit-box-orient: vertical; | 7 -webkit-box-orient: vertical; |
8 display: -webkit-box; | 8 display: -webkit-box; |
9 padding: 6px 0 0 0; | 9 padding: 6px 0 0 0; |
10 } | 10 } |
(...skipping 13 matching lines...) Expand all Loading... |
24 color: rgb(53, 174, 71); | 24 color: rgb(53, 174, 71); |
25 } | 25 } |
26 | 26 |
27 | 27 |
28 /* Fix the height of the subpages so that the dialog does not resize when the | 28 /* Fix the height of the subpages so that the dialog does not resize when the |
29 user switches tabs. */ | 29 user switches tabs. */ |
30 #internet-details-content-area > .subpages-tab-contents { | 30 #internet-details-content-area > .subpages-tab-contents { |
31 -webkit-box-flex: 1; | 31 -webkit-box-flex: 1; |
32 -webkit-box-sizing: border-box; | 32 -webkit-box-sizing: border-box; |
33 -webkit-padding-end: 10px; | 33 -webkit-padding-end: 10px; |
34 height: 380px; | 34 height: 390px; |
35 min-width: 480px; | 35 min-width: 480px; |
36 overflow-y: auto; | 36 overflow-y: auto; |
37 } | 37 } |
38 | 38 |
39 /* Avoid additional margins between text fields and controlled setting | 39 /* Avoid additional margins between text fields and controlled setting |
40 indicators as the fields in these dialogs have sufficient spacing around | 40 indicators as the fields in these dialogs have sufficient spacing around |
41 them already. */ | 41 them already. */ |
42 #internet-details-content-area | 42 #internet-details-content-area |
43 input:-webkit-any([type='text'],[type='url'],:not([type])) + | 43 input:-webkit-any([type='text'],[type='url'],:not([type])) + |
44 .controlled-setting-indicator { | 44 .controlled-setting-indicator { |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 -webkit-margin-start: 24px; | 90 -webkit-margin-start: 24px; |
91 -webkit-transition: opacity 150ms ease-in-out; | 91 -webkit-transition: opacity 150ms ease-in-out; |
92 color: #bbb; | 92 color: #bbb; |
93 font-style: italic; | 93 font-style: italic; |
94 } | 94 } |
95 | 95 |
96 .dns-display:not([selected]) { | 96 .dns-display:not([selected]) { |
97 -webkit-transition: opacity 150ms ease-in-out; | 97 -webkit-transition: opacity 150ms ease-in-out; |
98 display: none; | 98 display: none; |
99 } | 99 } |
OLD | NEW |