| OLD | NEW |
| 1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 #about-container { | 5 #about-container { |
| 6 align-items: center; | 6 align-items: center; |
| 7 display: flex; | 7 display: flex; |
| 8 } | 8 } |
| 9 | 9 |
| 10 #page-container #about-container { | 10 #page-container #about-container { |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 #more-info-expander { | 113 #more-info-expander { |
| 114 -webkit-padding-start: 0; | 114 -webkit-padding-start: 0; |
| 115 margin-top: 10px; | 115 margin-top: 10px; |
| 116 } | 116 } |
| 117 | 117 |
| 118 #more-info-container.visible { | 118 #more-info-container.visible { |
| 119 margin-bottom: 10px; | 119 margin-bottom: 10px; |
| 120 } | 120 } |
| 121 | 121 |
| 122 #more-info-container { | 122 #more-info-container { |
| 123 -webkit-transition: all 200ms; | |
| 124 height: 0; | 123 height: 0; |
| 125 margin-bottom: 0; | 124 margin-bottom: 0; |
| 126 overflow: hidden; | 125 overflow: hidden; |
| 126 transition: all 200ms; |
| 127 } | 127 } |
| 128 | 128 |
| 129 #build-date-container.empty { | 129 #build-date-container.empty { |
| 130 visibility: hidden; | 130 visibility: hidden; |
| 131 } | 131 } |
| 132 | 132 |
| 133 #channel-change-confirmation { | 133 #channel-change-confirmation { |
| 134 margin-top: 5px; | 134 margin-top: 5px; |
| 135 } | 135 } |
| 136 | 136 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 161 } | 161 } |
| 162 | 162 |
| 163 #regulatory-label-container { | 163 #regulatory-label-container { |
| 164 padding-top: 32px; | 164 padding-top: 32px; |
| 165 } | 165 } |
| 166 | 166 |
| 167 #regulatory-label { | 167 #regulatory-label { |
| 168 display: block; | 168 display: block; |
| 169 width: 330px; | 169 width: 330px; |
| 170 } | 170 } |
| OLD | NEW |