| 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 border-top: 1px solid #eee; | 95 border-top: 1px solid #eee; |
| 96 padding-top: 8px; | 96 padding-top: 8px; |
| 97 } | 97 } |
| 98 | 98 |
| 99 #user-dns-settings:not([selected]) { | 99 #user-dns-settings:not([selected]) { |
| 100 display: none; | 100 display: none; |
| 101 } | 101 } |
| 102 | 102 |
| 103 .dns-display { | 103 .dns-display { |
| 104 -webkit-margin-start: 24px; | 104 -webkit-margin-start: 24px; |
| 105 -webkit-transition: opacity 150ms ease-in-out; | |
| 106 color: #bbb; | 105 color: #bbb; |
| 107 font-style: italic; | 106 font-style: italic; |
| 107 transition: opacity 150ms ease-in-out; |
| 108 } | 108 } |
| 109 | 109 |
| 110 .dns-display:not([selected]) { | 110 .dns-display:not([selected]) { |
| 111 -webkit-transition: opacity 150ms ease-in-out; | |
| 112 display: none; | 111 display: none; |
| 112 transition: opacity 150ms ease-in-out; |
| 113 } | 113 } |
| 114 | 114 |
| 115 .proxy-subsection { | 115 .proxy-subsection { |
| 116 padding-left: 24px; | 116 padding-left: 24px; |
| 117 } | 117 } |
| OLD | NEW |