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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/common/extensions/docs/templates/intros/alarms.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 #gc-pagecontent th { 306 #gc-pagecontent th {
307 text-align: left; 307 text-align: left;
308 padding: 6px 12px; 308 padding: 6px 12px;
309 } 309 }
310 #gc-pagecontent td { 310 #gc-pagecontent td {
311 padding: 6px 12px; 311 padding: 6px 12px;
312 border: 1px solid #36C; 312 border: 1px solid #36C;
313 vertical-align: top; 313 vertical-align: top;
314 } 314 }
315 315
316 /* Provide an intro table for api reference docs. */
317 #gc-pagecontent table.intro
318 #gc-pagecontent table.intro th,
319 #gc-pagecontent table.intro td {
320 border-collapse: separate;
321 border-style: none;
322 }
miket_OOO 2012/12/20 23:25:36 Separate rules with new lines: http://google-style
mkearney1 2012/12/20 23:56:56 Done.
323 #gc-pagecontent table.intro {
324 padding: 0;
325 }
326 #gc-pagecontent table.intro th {
327 text-align: left;
328 padding: 6px 12px;
miket_OOO 2012/12/20 23:25:36 Alphabetize: http://google-styleguide.googlecode.c
mkearney1 2012/12/20 23:56:56 Done.
329 border-style: none;
330 }
331 #gc-pagecontent table.intro td {
332 padding: 6px 12px;
333 border-bottom: 1px solid #E5E5E5;
334 vertical-align: top;
335 }
336
316 /* Provide a "simple" version of the table to use just for layout. */ 337 /* Provide a "simple" version of the table to use just for layout. */
317 #gc-pagecontent table.simple, 338 #gc-pagecontent table.simple,
318 #gc-pagecontent table.simple th, 339 #gc-pagecontent table.simple th,
319 #gc-pagecontent table.simple td { 340 #gc-pagecontent table.simple td {
320 border-collapse: separate; 341 border-collapse: separate;
321 border-style: none; 342 border-style: none;
322 } 343 }
323 #gc-pagecontent table.simple { 344 #gc-pagecontent table.simple {
324 padding: 0; 345 padding: 0;
325 } 346 }
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
519 } 540 }
520 541
521 .imaged li img { 542 .imaged li img {
522 float: right; 543 float: right;
523 margin-bottom: 1em; 544 margin-bottom: 1em;
524 } 545 }
525 546
526 .imaged + p { 547 .imaged + p {
527 clear: right; 548 clear: right;
528 } 549 }
OLDNEW
« no previous file with comments | « no previous file | chrome/common/extensions/docs/templates/intros/alarms.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698