Chromium Code Reviews| 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 .hidden { | 6 .hidden { |
| 7 display: none; | 7 display: none; |
| 8 } | 8 } |
| 9 | 9 |
| 10 body { | 10 body { |
| (...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 554 } | 554 } |
| 555 | 555 |
| 556 .imaged li img { | 556 .imaged li img { |
| 557 float: right; | 557 float: right; |
| 558 margin-bottom: 1em; | 558 margin-bottom: 1em; |
| 559 } | 559 } |
| 560 | 560 |
| 561 .imaged + p { | 561 .imaged + p { |
| 562 clear: right; | 562 clear: right; |
| 563 } | 563 } |
| 564 | |
| 565 /* Tabbed pane with header (tabs) and content */ | |
| 566 tabs { | |
| 567 margin: 25px 0; | |
| 568 display: block; | |
| 569 } | |
| 570 tabs header { | |
| 571 display: inline-block; | |
| 572 padding: 10px; | |
| 573 border: 1px solid #ccc; | |
| 574 margin-bottom: 0; | |
| 575 background: inherit; | |
| 576 border-bottom: 1px solid white; | |
| 577 cursor: auto; | |
| 578 } | |
| 579 tabs header.unselected { | |
| 580 border-bottom: 1px solid #ccc; | |
| 581 background: #eee; | |
| 582 cursor: pointer; | |
| 583 } | |
| 584 tabs content { | |
| 585 display: block; | |
| 586 padding: 20px; | |
| 587 border: 1px solid #ccc; | |
| 588 margin-top: -1px; | |
| 589 } | |
| 590 tabs content.unselected { | |
| 591 display: none; | |
| 592 } | |
| 593 tabs content pre { | |
| 594 margin: 0; | |
| 595 padding: 10px; | |
| 596 } | |
|
Renato Mangini (chromium)
2013/04/09 17:32:32
lgtm
mkearney1
2013/04/10 17:59:58
Done.
| |
| OLD | NEW |