| 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 | 5 |
| 6 body { | 6 body { |
| 7 -webkit-user-select: text; | 7 -webkit-user-select: text; |
| 8 } | 8 } |
| 9 | 9 |
| 10 #about-container { | 10 #about-container { |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 #more-info-container.visible { | 83 #more-info-container.visible { |
| 84 margin-bottom: 1.5em; | 84 margin-bottom: 1.5em; |
| 85 } | 85 } |
| 86 | 86 |
| 87 #more-info-container { | 87 #more-info-container { |
| 88 -webkit-transition: all 500ms linear; | 88 -webkit-transition: all 500ms linear; |
| 89 height: 0; | 89 height: 0; |
| 90 margin-bottom: 0; | 90 margin-bottom: 0; |
| 91 overflow: hidden; | 91 overflow: hidden; |
| 92 } | 92 } |
| 93 |
| 94 #last-updated-container.empty { |
| 95 visibility: hidden; |
| 96 } |
| OLD | NEW |