| OLD | NEW |
| 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 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 html { | 6 html { |
| 7 height: 100%; | 7 height: 100%; |
| 8 } | 8 } |
| 9 | 9 |
| 10 body { | 10 body { |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 span.hint.closing { | 159 span.hint.closing { |
| 160 -webkit-transition: margin 150ms, height 150ms, opacity 150ms; | 160 -webkit-transition: margin 150ms, height 150ms, opacity 150ms; |
| 161 background: transparent; | 161 background: transparent; |
| 162 height: 0 !important; | 162 height: 0 !important; |
| 163 margin-bottom: 0; | 163 margin-bottom: 0; |
| 164 margin-top: 0; | 164 margin-top: 0; |
| 165 opacity: 0; | 165 opacity: 0; |
| 166 } | 166 } |
| 167 | 167 |
| 168 .collapsible { | 168 .collapsible { |
| 169 -webkit-transition: color 200ms; | |
| 170 height: 0; | 169 height: 0; |
| 171 overflow: hidden; | 170 overflow: hidden; |
| 172 } | 171 } |
| 173 | 172 |
| 174 .collapsible.visible { | 173 .collapsible.visible { |
| 175 -webkit-animation-duration: 200ms; | 174 -webkit-animation-duration: 200ms; |
| 176 -webkit-animation-fill-mode: forwards; | 175 -webkit-animation-fill-mode: forwards; |
| 177 height: auto; | 176 height: auto; |
| 178 } | 177 } |
| 179 | 178 |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 410 /* TODO(estade): unfork this code. */ | 409 /* TODO(estade): unfork this code. */ |
| 411 .button-strip { | 410 .button-strip { |
| 412 -webkit-box-orient: horizontal; | 411 -webkit-box-orient: horizontal; |
| 413 -webkit-box-pack: end; | 412 -webkit-box-pack: end; |
| 414 display: -webkit-box; | 413 display: -webkit-box; |
| 415 } | 414 } |
| 416 | 415 |
| 417 html[toolkit=views] .button-strip { | 416 html[toolkit=views] .button-strip { |
| 418 -webkit-box-direction: reverse; | 417 -webkit-box-direction: reverse; |
| 419 } | 418 } |
| OLD | NEW |