| 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 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 } |
| 323 |
| 324 #gc-pagecontent table.intro { |
| 325 padding: 0; |
| 326 } |
| 327 |
| 328 #gc-pagecontent table.intro th { |
| 329 border-style: none; |
| 330 padding: 6px 12px; |
| 331 text-align: left; |
| 332 } |
| 333 |
| 334 #gc-pagecontent table.intro td { |
| 335 border-bottom: 1px solid #E5E5E5; |
| 336 padding: 6px 12px; |
| 337 vertical-align: top; |
| 338 } |
| 339 |
| 316 /* Provide a "simple" version of the table to use just for layout. */ | 340 /* Provide a "simple" version of the table to use just for layout. */ |
| 317 #gc-pagecontent table.simple, | 341 #gc-pagecontent table.simple, |
| 318 #gc-pagecontent table.simple th, | 342 #gc-pagecontent table.simple th, |
| 319 #gc-pagecontent table.simple td { | 343 #gc-pagecontent table.simple td { |
| 320 border-collapse: separate; | 344 border-collapse: separate; |
| 321 border-style: none; | 345 border-style: none; |
| 322 } | 346 } |
| 323 #gc-pagecontent table.simple { | 347 #gc-pagecontent table.simple { |
| 324 padding: 0; | 348 padding: 0; |
| 325 } | 349 } |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 519 } | 543 } |
| 520 | 544 |
| 521 .imaged li img { | 545 .imaged li img { |
| 522 float: right; | 546 float: right; |
| 523 margin-bottom: 1em; | 547 margin-bottom: 1em; |
| 524 } | 548 } |
| 525 | 549 |
| 526 .imaged + p { | 550 .imaged + p { |
| 527 clear: right; | 551 clear: right; |
| 528 } | 552 } |
| OLD | NEW |