| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2014 The Chromium Authors. All rights reserved. | 2 * Copyright 2014 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 .documentation-code { | 7 .documentation-code { |
| 8 border: 1px dotted black; | 8 border: 1px solid gray; |
| 9 border-radius: 6px; | 9 border-radius: 6px; |
| 10 padding: 10px; | 10 padding: 10px; |
| 11 margin-bottom: 10px; | 11 margin-bottom: 10px; |
| 12 } | 12 } |
| 13 | 13 |
| 14 .documentation-section-title { | 14 .documentation-section-title { |
| 15 font-size: 120%; | 15 font-size: 120%; |
| 16 padding-bottom: 4px; | 16 padding-bottom: 4px; |
| 17 font-weight: bold; | 17 font-weight: bold; |
| 18 } | 18 } |
| 19 | 19 |
| 20 .documentation-link { | 20 .documentation-link { |
| 21 margin-left: 0.5em; | 21 margin-left: 5px; |
| 22 } | 22 } |
| 23 | 23 |
| 24 .documentation-highlighted-text { | 24 .documentation-highlighted-text { |
| 25 font-weight: bold; | 25 font-weight: bold; |
| 26 } | 26 } |
| 27 | 27 |
| 28 .documentation-parameter { | 28 .documentation-view .documentation-method-signature.monospace { |
| 29 margin-left: 5px; | 29 font-size: 120% !important; |
| 30 border: 1px solid gray; |
| 31 border-radius: 6px; |
| 32 padding: 10px; |
| 30 } | 33 } |
| 31 | 34 |
| 32 .documentation-section { | 35 .documentation-section { |
| 33 margin-bottom: 15px; | 36 margin-bottom: 15px; |
| 34 } | 37 } |
| 35 | 38 |
| 39 .documentation-section-content { |
| 40 margin-left: 16px; |
| 41 } |
| 42 |
| 36 .documentation-code-tag { | 43 .documentation-code-tag { |
| 37 font-weight: bold; | 44 font-weight: bold; |
| 38 } | 45 } |
| 39 | 46 |
| 40 .documentation-parameter-optional { | 47 .documentation-parameter-optional { |
| 41 background-color: rgb(219, 234, 249); | 48 background-color: rgb(219, 234, 249); |
| 42 } | 49 } |
| 43 | 50 |
| 44 .documentation-parameter-data-type-value { | 51 .documentation-parameter-data-type-value { |
| 45 background-color: rgb(254, 254, 202); | 52 background-color: rgb(254, 254, 202); |
| (...skipping 14 matching lines...) Expand all Loading... |
| 60 -webkit-user-select: text; | 67 -webkit-user-select: text; |
| 61 padding: 10px; | 68 padding: 10px; |
| 62 } | 69 } |
| 63 | 70 |
| 64 .documentation-example-description-section { | 71 .documentation-example-description-section { |
| 65 margin-bottom: 20px; | 72 margin-bottom: 20px; |
| 66 } | 73 } |
| 67 | 74 |
| 68 .documentation-example-link { | 75 .documentation-example-link { |
| 69 float: right; | 76 float: right; |
| 70 background-color: rgb(241, 246, 251); | 77 background-color: rgb(219, 234, 249); |
| 78 } |
| 79 |
| 80 .documentation-example-link:visited { |
| 81 color: rgb(109, 114, 255); |
| 82 } |
| 83 |
| 84 .documentation-text { |
| 85 line-height: 1.5; |
| 71 } | 86 } |
| 72 | 87 |
| 73 .documentation-box { | 88 .documentation-box { |
| 74 padding: 6px; | 89 padding: 6px; |
| 90 padding-left: 10px; |
| 91 padding-right: 10px; |
| 75 text-decoration: none; | 92 text-decoration: none; |
| 76 margin-left: 10px; | 93 margin-left: 10px; |
| 77 margin-top: 5px; | 94 margin-top: 5px; |
| 78 border-radius: 5px; | 95 border-radius: 5px; |
| 79 } | 96 } |
| OLD | NEW |