Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(202)

Side by Side Diff: chrome/common/extensions/docs/static/css/site.css

Issue 13248004: Cleaning up apps codelab (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698