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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/docs/static/css/site.css
diff --git a/chrome/common/extensions/docs/static/css/site.css b/chrome/common/extensions/docs/static/css/site.css
index 9833d069c4c4267cb6b8995bfb6069faa0101de5..6bc2a1abce65bfed1335731f60284efcb5a45e3d 100644
--- a/chrome/common/extensions/docs/static/css/site.css
+++ b/chrome/common/extensions/docs/static/css/site.css
@@ -561,3 +561,36 @@ dd {
.imaged + p {
clear: right;
}
+
+/* Tabbed pane with header (tabs) and content */
+tabs {
+ margin: 25px 0;
+ display: block;
+}
+tabs header {
+ display: inline-block;
+ padding: 10px;
+ border: 1px solid #ccc;
+ margin-bottom: 0;
+ background: inherit;
+ border-bottom: 1px solid white;
+ cursor: auto;
+}
+tabs header.unselected {
+ border-bottom: 1px solid #ccc;
+ background: #eee;
+ cursor: pointer;
+}
+tabs content {
+ display: block;
+ padding: 20px;
+ border: 1px solid #ccc;
+ margin-top: -1px;
+}
+tabs content.unselected {
+ display: none;
+}
+tabs content pre {
+ margin: 0;
+ padding: 10px;
+}
Renato Mangini (chromium) 2013/04/09 17:32:32 lgtm
mkearney1 2013/04/10 17:59:58 Done.

Powered by Google App Engine
This is Rietveld 408576698