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 solid gray; | 8 border: 1px solid rgba(128, 128, 128, 0.4); |
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; | |
17 font-weight: bold; | 16 font-weight: bold; |
| 17 padding-top: 5px; |
| 18 } |
| 19 |
| 20 .documentation-section-content.documentation-return-value { |
| 21 margin-top: 10px; |
| 22 } |
| 23 |
| 24 .documentation-parameter-header { |
| 25 margin-top: 10px; |
18 } | 26 } |
19 | 27 |
20 .documentation-link { | 28 .documentation-link { |
21 margin-left: 5px; | 29 margin-left: 5px; |
22 } | 30 } |
23 | 31 |
24 .documentation-highlighted-text { | 32 .documentation-highlighted-text { |
25 font-weight: bold; | 33 font-weight: bold; |
26 } | 34 } |
27 | 35 |
28 .documentation-view .documentation-method-signature.monospace { | 36 .documentation-view .documentation-method-signature.monospace { |
29 font-size: 120% !important; | 37 font-size: 120% !important; |
30 border: 1px solid gray; | 38 border: 1px solid rgba(128, 128, 128, 0.4); |
31 border-radius: 6px; | 39 border-radius: 6px; |
32 padding: 10px; | 40 padding: 10px; |
33 } | 41 } |
34 | 42 |
35 .documentation-section { | 43 .documentation-section { |
36 margin-bottom: 15px; | 44 margin-bottom: 15px; |
37 } | 45 } |
38 | 46 |
39 .documentation-section-content { | 47 .documentation-section-content { |
40 margin-left: 16px; | 48 margin-left: 16px; |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 } | 115 } |
108 | 116 |
109 .documentation-empty-page { | 117 .documentation-empty-page { |
110 display: flex; | 118 display: flex; |
111 flex-direction: column !important; | 119 flex-direction: column !important; |
112 } | 120 } |
113 | 121 |
114 .documentation-empty-page-align { | 122 .documentation-empty-page-align { |
115 flex-grow: 3; | 123 flex-grow: 3; |
116 } | 124 } |
OLD | NEW |