| 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 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 559 | 559 |
| 560 .imaged li img { | 560 .imaged li img { |
| 561 float: right; | 561 float: right; |
| 562 margin-bottom: 1em; | 562 margin-bottom: 1em; |
| 563 } | 563 } |
| 564 | 564 |
| 565 .imaged + p { | 565 .imaged + p { |
| 566 clear: right; | 566 clear: right; |
| 567 } | 567 } |
| 568 | 568 |
| 569 /* small indent for better visual distinction |
| 570 (e.g., in a long list) */ |
| 571 .indent-small { |
| 572 margin-left: 2em; |
| 573 } |
| 574 |
| 569 /* Tabbed pane with header (tabs) and content */ | 575 /* Tabbed pane with header (tabs) and content */ |
| 570 tabs { | 576 tabs { |
| 571 margin: 25px 0; | 577 margin: 25px 0; |
| 572 display: block; | 578 display: block; |
| 573 } | 579 } |
| 574 tabs header { | 580 tabs header { |
| 575 display: inline-block; | 581 display: inline-block; |
| 576 padding: 10px; | 582 padding: 10px; |
| 577 border: 1px solid #ccc; | 583 border: 1px solid #ccc; |
| 578 margin-bottom: 0; | 584 margin-bottom: 0; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 591 border: 1px solid #ccc; | 597 border: 1px solid #ccc; |
| 592 margin-top: -1px; | 598 margin-top: -1px; |
| 593 } | 599 } |
| 594 tabs content.unselected { | 600 tabs content.unselected { |
| 595 display: none; | 601 display: none; |
| 596 } | 602 } |
| 597 tabs content pre { | 603 tabs content pre { |
| 598 margin: 0; | 604 margin: 0; |
| 599 padding: 10px; | 605 padding: 10px; |
| 600 } | 606 } |
| OLD | NEW |