| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 } | 46 } |
| 47 | 47 |
| 48 #vpn-tab td { | 48 #vpn-tab td { |
| 49 padding: 0; | 49 padding: 0; |
| 50 } | 50 } |
| 51 | 51 |
| 52 #vpn-tab .option-value:not(input) { | 52 #vpn-tab .option-value:not(input) { |
| 53 padding: 4px; | 53 padding: 4px; |
| 54 } | 54 } |
| 55 | 55 |
| 56 #vpn-tab.third-party-vpn-provider tr.built-in-vpn-provider-only { |
| 57 display: none; |
| 58 } |
| 59 |
| 60 #vpn-tab:not(.third-party-vpn-provider) tr.third-party-vpn-provider-only { |
| 61 display: none; |
| 62 } |
| 63 |
| 56 #ip-config-list { | 64 #ip-config-list { |
| 57 min-height: 96px !important; | 65 min-height: 96px !important; |
| 58 } | 66 } |
| 59 | 67 |
| 60 /* Minimum and maximum height are integer multiples of the height of a list | 68 /* Minimum and maximum height are integer multiples of the height of a list |
| 61 entry. */ | 69 entry. */ |
| 62 #ignored-host-list { | 70 #ignored-host-list { |
| 63 -webkit-margin-start: 0; | 71 -webkit-margin-start: 0; |
| 64 border: 1px solid #bfbfbf; | 72 border: 1px solid #bfbfbf; |
| 65 min-height: 64px; | 73 min-height: 64px; |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 } | 108 } |
| 101 | 109 |
| 102 .dns-display:not([selected]) { | 110 .dns-display:not([selected]) { |
| 103 -webkit-transition: opacity 150ms ease-in-out; | 111 -webkit-transition: opacity 150ms ease-in-out; |
| 104 display: none; | 112 display: none; |
| 105 } | 113 } |
| 106 | 114 |
| 107 .proxy-subsection { | 115 .proxy-subsection { |
| 108 padding-left: 24px; | 116 padding-left: 24px; |
| 109 } | 117 } |
| OLD | NEW |