| OLD | NEW |
| (Empty) |
| 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 | |
| 3 * found in the LICENSE file. | |
| 4 */ | |
| 5 | |
| 6 .type_name, | |
| 7 .variable, | |
| 8 .property { | |
| 9 font-style: italic; | |
| 10 } | |
| 11 | |
| 12 .api_reference div.summary { | |
| 13 border: 1px solid #93B4D9; | |
| 14 font-family: "Courier New", courier, monospace; | |
| 15 padding: 0.5em 0.5em 0.5em 2em; | |
| 16 text-indent: -1.5em; | |
| 17 background-color: #CADEF4; | |
| 18 margin-top: 1em; | |
| 19 } | |
| 20 | |
| 21 /* This style is used because types with functions prefix the function with the | |
| 22 * type name, using a lowercase first letter. | |
| 23 */ | |
| 24 .api_reference .uncapitalize:first-letter { | |
| 25 text-transform: lowercase; | |
| 26 } | |
| 27 | |
| 28 .api_reference .capitalize:first-letter { | |
| 29 text-transform: uppercase; | |
| 30 } | |
| 31 | |
| 32 .api_reference div.description { | |
| 33 margin-left: 2em; | |
| 34 } | |
| 35 | |
| 36 div.summary .subdued { | |
| 37 color: #7594B8; | |
| 38 } | |
| 39 | |
| 40 .optional { | |
| 41 color: #7D7D7D; | |
| 42 } | |
| OLD | NEW |