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

Unified Diff: chrome/common/extensions/docs/static/css/site.css

Issue 11635032: Added introductory tables to Chrome apps APIs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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 05289996407ae343f11c42bac6b1e5204918f088..1697108891806d0043dd33d8c8dd3d81e485e312 100644
--- a/chrome/common/extensions/docs/static/css/site.css
+++ b/chrome/common/extensions/docs/static/css/site.css
@@ -313,6 +313,30 @@ span.displayModeWarning {
vertical-align: top;
}
+/* Provide an intro table for api reference docs. */
+#gc-pagecontent table.intro
+#gc-pagecontent table.intro th,
+#gc-pagecontent table.intro td {
+ border-collapse: separate;
+ border-style: none;
+}
+
+#gc-pagecontent table.intro {
+ padding: 0;
+}
+
+#gc-pagecontent table.intro th {
+ border-style: none;
+ padding: 6px 12px;
+ text-align: left;
+}
+
+#gc-pagecontent table.intro td {
+ border-bottom: 1px solid #E5E5E5;
+ padding: 6px 12px;
+ vertical-align: top;
+}
+
/* Provide a "simple" version of the table to use just for layout. */
#gc-pagecontent table.simple,
#gc-pagecontent table.simple th,

Powered by Google App Engine
This is Rietveld 408576698