Chromium Code Reviews| 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 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 404 | 404 |
| 405 #error-action-area { | 405 #error-action-area { |
| 406 margin-top: 10px; | 406 margin-top: 10px; |
| 407 } | 407 } |
| 408 | 408 |
| 409 /* TODO(estade): unfork this code. */ | 409 /* TODO(estade): unfork this code. */ |
| 410 .button-strip { | 410 .button-strip { |
| 411 -webkit-box-orient: horizontal; | 411 -webkit-box-orient: horizontal; |
| 412 -webkit-box-pack: end; | 412 -webkit-box-pack: end; |
| 413 display: -webkit-box; | 413 display: -webkit-box; |
| 414 -webkit-box-direction: reverse; | |
| 415 } | |
| 416 | |
| 417 .button-strip button { | |
| 418 display: block; | |
| 414 } | 419 } |
| 415 | 420 |
| 416 html[toolkit=views] .button-strip { | 421 html[toolkit=views] .button-strip { |
|
Evan Stade
2011/12/06 23:24:33
can't you use toolkit!=views or something
| |
| 417 -webkit-box-direction: reverse; | 422 -webkit-box-direction: normal; |
| 418 } | 423 } |
| OLD | NEW |