yard 0.9.36 → 0.9.43

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (87) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +82 -1
  3. data/README.md +29 -25
  4. data/docs/GettingStarted.md +41 -15
  5. data/docs/Parser.md +17 -42
  6. data/docs/Tags.md +5 -5
  7. data/docs/Templates.md +5 -4
  8. data/docs/WhatsNew.md +59 -7
  9. data/docs/templates/default/yard_tags/html/setup.rb +1 -1
  10. data/lib/yard/autoload.rb +18 -0
  11. data/lib/yard/cli/diff.rb +7 -2
  12. data/lib/yard/code_objects/base.rb +1 -1
  13. data/lib/yard/code_objects/extra_file_object.rb +1 -0
  14. data/lib/yard/code_objects/macro_object.rb +0 -1
  15. data/lib/yard/code_objects/proxy.rb +1 -1
  16. data/lib/yard/docstring_parser.rb +0 -1
  17. data/lib/yard/handlers/base.rb +23 -1
  18. data/lib/yard/handlers/processor.rb +1 -1
  19. data/lib/yard/handlers/rbs/attribute_handler.rb +79 -0
  20. data/lib/yard/handlers/rbs/base.rb +38 -0
  21. data/lib/yard/handlers/rbs/constant_handler.rb +18 -0
  22. data/lib/yard/handlers/rbs/method_handler.rb +327 -0
  23. data/lib/yard/handlers/rbs/mixin_handler.rb +20 -0
  24. data/lib/yard/handlers/rbs/namespace_handler.rb +26 -0
  25. data/lib/yard/handlers/ruby/attribute_handler.rb +7 -4
  26. data/lib/yard/handlers/ruby/constant_handler.rb +24 -6
  27. data/lib/yard/handlers/ruby/legacy/visibility_handler.rb +2 -1
  28. data/lib/yard/handlers/ruby/visibility_handler.rb +14 -1
  29. data/lib/yard/i18n/locale.rb +1 -1
  30. data/lib/yard/i18n/pot_generator.rb +1 -1
  31. data/lib/yard/logging.rb +116 -61
  32. data/lib/yard/open_struct.rb +67 -0
  33. data/lib/yard/parser/rbs/rbs_parser.rb +325 -0
  34. data/lib/yard/parser/rbs/statement.rb +75 -0
  35. data/lib/yard/parser/ruby/ast_node.rb +5 -4
  36. data/lib/yard/parser/ruby/legacy/irb/slex.rb +19 -1
  37. data/lib/yard/parser/ruby/legacy/ruby_lex.rb +20 -5
  38. data/lib/yard/parser/ruby/ruby_parser.rb +109 -24
  39. data/lib/yard/parser/source_parser.rb +5 -4
  40. data/lib/yard/registry_resolver.rb +7 -0
  41. data/lib/yard/rubygems/specification.rb +1 -1
  42. data/lib/yard/server/commands/base.rb +1 -1
  43. data/lib/yard/server/library_version.rb +1 -1
  44. data/lib/yard/server/templates/default/fulldoc/html/css/custom.css +168 -88
  45. data/lib/yard/server/templates/default/fulldoc/html/js/autocomplete.js +203 -12
  46. data/lib/yard/server/templates/default/layout/html/breadcrumb.erb +1 -17
  47. data/lib/yard/server/templates/default/method_details/html/permalink.erb +4 -2
  48. data/lib/yard/server/templates/doc_server/library_list/html/headers.erb +3 -3
  49. data/lib/yard/server/templates/doc_server/library_list/html/library_list.erb +2 -3
  50. data/lib/yard/server/templates/doc_server/processing/html/processing.erb +22 -16
  51. data/lib/yard/tags/default_factory.rb +1 -0
  52. data/lib/yard/tags/directives.rb +7 -1
  53. data/lib/yard/tags/library.rb +3 -3
  54. data/lib/yard/tags/overload_tag.rb +2 -1
  55. data/lib/yard/tags/tag.rb +2 -1
  56. data/lib/yard/tags/types_explainer.rb +5 -4
  57. data/lib/yard/templates/engine.rb +0 -1
  58. data/lib/yard/templates/helpers/base_helper.rb +1 -1
  59. data/lib/yard/templates/helpers/html_helper.rb +21 -6
  60. data/lib/yard/templates/helpers/html_syntax_highlight_helper.rb +6 -1
  61. data/lib/yard/templates/helpers/markup/hybrid_markdown.rb +2147 -0
  62. data/lib/yard/templates/helpers/markup/rdoc_markup.rb +2 -0
  63. data/lib/yard/templates/helpers/markup_helper.rb +4 -2
  64. data/lib/yard/templates/template_options.rb +0 -1
  65. data/lib/yard/version.rb +1 -1
  66. data/po/ja.po +82 -82
  67. data/templates/default/fulldoc/html/css/common.css +1 -1
  68. data/templates/default/fulldoc/html/css/full_list.css +201 -53
  69. data/templates/default/fulldoc/html/css/style.css +991 -399
  70. data/templates/default/fulldoc/html/full_list.erb +8 -5
  71. data/templates/default/fulldoc/html/js/app.js +799 -312
  72. data/templates/default/fulldoc/html/js/full_list.js +332 -214
  73. data/templates/default/fulldoc/html/setup.rb +10 -2
  74. data/templates/default/layout/html/headers.erb +1 -1
  75. data/templates/default/layout/html/layout.erb +3 -1
  76. data/templates/default/method/html/header.erb +3 -3
  77. data/templates/default/module/html/defines.erb +3 -3
  78. data/templates/default/module/html/inherited_methods.erb +1 -0
  79. data/templates/default/module/html/method_summary.erb +8 -0
  80. data/templates/default/module/setup.rb +20 -0
  81. data/templates/default/onefile/html/headers.erb +2 -0
  82. data/templates/default/onefile/html/layout.erb +3 -4
  83. data/templates/default/tags/html/example.erb +2 -2
  84. data/templates/guide/fulldoc/html/css/style.css +347 -97
  85. data/templates/guide/fulldoc/html/js/app.js +61 -33
  86. data/templates/guide/layout/html/layout.erb +69 -72
  87. metadata +19 -8
@@ -1,497 +1,1089 @@
1
1
  html {
2
- width: 100%;
3
- height: 100%;
2
+ width: 100%;
3
+ height: 100%;
4
4
  }
5
5
  body {
6
- font-family: "Lucida Sans", "Lucida Grande", Verdana, Arial, sans-serif;
7
- font-size: 13px;
8
- width: 100%;
9
- margin: 0;
10
- padding: 0;
11
- display: flex;
12
- display: -webkit-flex;
13
- display: -ms-flexbox;
6
+ font-family: "Lucida Sans", "Lucida Grande", Verdana, Arial, sans-serif;
7
+ font-size: 13px;
8
+ width: 100%;
9
+ margin: 0;
10
+ padding: 0;
11
+ display: flex;
14
12
  }
15
13
 
16
14
  #nav {
17
- position: relative;
18
- width: 100%;
19
- height: 100%;
20
- border: 0;
21
- border-right: 1px dotted #eee;
22
- overflow: auto;
15
+ position: relative;
16
+ width: 100%;
17
+ height: 100%;
18
+ border: 0;
19
+ border-right: 1px dotted #eee;
20
+ overflow: auto;
23
21
  }
24
22
  .nav_wrap {
25
- margin: 0;
26
- padding: 0;
27
- width: 20%;
28
- height: 100%;
29
- position: relative;
30
- display: flex;
31
- display: -webkit-flex;
32
- display: -ms-flexbox;
33
- flex-shrink: 0;
34
- -webkit-flex-shrink: 0;
35
- -ms-flex: 1 0;
23
+ margin: 0;
24
+ padding: 0;
25
+ width: 20%;
26
+ height: 100%;
27
+ position: relative;
28
+ display: flex;
29
+ flex-shrink: 0;
36
30
  }
37
31
  #resizer {
38
- position: absolute;
39
- right: -5px;
40
- top: 0;
41
- width: 10px;
42
- height: 100%;
43
- cursor: col-resize;
44
- z-index: 9999;
32
+ position: absolute;
33
+ right: -5px;
34
+ top: 0;
35
+ width: 10px;
36
+ height: 100%;
37
+ cursor: col-resize;
38
+ z-index: 9999;
45
39
  }
46
40
  #main {
47
- flex: 5 1;
48
- -webkit-flex: 5 1;
49
- -ms-flex: 5 1;
50
- outline: none;
51
- position: relative;
52
- background: #fff;
53
- padding: 1.2em;
54
- padding-top: 0.2em;
55
- box-sizing: border-box;
41
+ flex: 5 1;
42
+ outline: none;
43
+ position: relative;
44
+ background: #fff;
45
+ padding: 1.2em;
46
+ padding-top: 0.2em;
47
+ box-sizing: border-box;
48
+ }
49
+ #main_progress {
50
+ position: fixed;
51
+ top: 0;
52
+ left: 0;
53
+ width: 100%;
54
+ height: 3px;
55
+ overflow: hidden;
56
+ opacity: 0;
57
+ z-index: 10001;
58
+ pointer-events: none;
59
+ transition: opacity 0.18s ease;
60
+ }
61
+ #main_progress::before {
62
+ content: "";
63
+ display: block;
64
+ width: var(--yard-progress, 0%);
65
+ height: 100%;
66
+ background: linear-gradient(90deg, #1b6ac9 0%, #4ea3ff 100%);
67
+ transition: width 0.08s linear;
68
+ }
69
+ body.loading #main_progress {
70
+ opacity: 1;
71
+ }
72
+ body.loading #main_progress::before {
73
+ animation: yard-progress-breathe 1.6s ease-in-out infinite;
74
+ }
75
+
76
+ @keyframes yard-progress-breathe {
77
+ 0% {
78
+ filter: saturate(0.92) brightness(0.94);
79
+ }
80
+ 50% {
81
+ filter: saturate(1.08) brightness(1.08);
82
+ }
83
+ 100% {
84
+ filter: saturate(0.92) brightness(0.94);
85
+ }
56
86
  }
57
87
 
58
88
  @media (max-width: 920px) {
59
- .nav_wrap { width: 100%; top: 0; right: 0; overflow: visible; position: absolute; }
60
- #resizer { display: none; }
61
- #nav {
62
- z-index: 9999;
63
- background: #fff;
64
- display: none;
65
- position: absolute;
66
- top: 40px;
67
- right: 12px;
68
- width: 500px;
69
- max-width: 80%;
70
- height: 80%;
71
- overflow-y: scroll;
72
- border: 1px solid #999;
73
- border-collapse: collapse;
74
- box-shadow: -7px 5px 25px #aaa;
75
- border-radius: 2px;
76
- }
89
+ body {
90
+ display: block;
91
+ }
92
+ .nav_wrap {
93
+ width: 80vw;
94
+ top: 0;
95
+ right: 0;
96
+ overflow: visible;
97
+ position: absolute;
98
+ }
99
+ #resizer {
100
+ display: none;
101
+ }
102
+ #nav {
103
+ z-index: 9999;
104
+ background: #fff;
105
+ display: none;
106
+ position: absolute;
107
+ top: 40px;
108
+ right: 12px;
109
+ width: 500px;
110
+ max-width: 80%;
111
+ height: 80%;
112
+ overflow-y: scroll;
113
+ border: 1px solid #999;
114
+ border-collapse: collapse;
115
+ box-shadow: -7px 5px 25px #aaa;
116
+ border-radius: 2px;
117
+ }
77
118
  }
78
119
 
79
120
  @media (min-width: 920px) {
80
- body { height: 100%; overflow: hidden; }
81
- #main { height: 100%; overflow: auto; }
82
- #search { display: none; }
121
+ body {
122
+ height: 100%;
123
+ overflow: hidden;
124
+ }
125
+ #main {
126
+ height: 100%;
127
+ overflow: auto;
128
+ }
129
+ #search {
130
+ display: none;
131
+ }
83
132
  }
84
133
 
85
- #main img { max-width: 100%; }
86
- h1 { font-size: 25px; margin: 1em 0 0.5em; padding-top: 4px; border-top: 1px dotted #d5d5d5; }
87
- h1.noborder { border-top: 0px; margin-top: 0; padding-top: 4px; }
88
- h1.title { margin-bottom: 10px; }
89
- h1.alphaindex { margin-top: 0; font-size: 22px; }
134
+ @media (max-width: 320px) {
135
+ body {
136
+ height: 100%;
137
+ overflow: hidden;
138
+ overflow-wrap: break-word;
139
+ }
140
+ #main {
141
+ height: 100%;
142
+ overflow: auto;
143
+ }
144
+ }
145
+
146
+ #main img {
147
+ max-width: 100%;
148
+ }
149
+ h1 {
150
+ font-size: 25px;
151
+ margin: 1em 0 0.5em;
152
+ padding-top: 4px;
153
+ border-top: 1px dotted #d5d5d5;
154
+ }
155
+ h1.noborder {
156
+ border-top: 0px;
157
+ margin-top: 0;
158
+ padding-top: 4px;
159
+ }
160
+ h1.title {
161
+ margin-bottom: 10px;
162
+ }
163
+ h1.alphaindex {
164
+ margin-top: 0;
165
+ font-size: 22px;
166
+ }
90
167
  h2 {
91
- padding: 0;
92
- padding-bottom: 3px;
93
- border-bottom: 1px #aaa solid;
94
- font-size: 1.4em;
95
- margin: 1.8em 0 0.5em;
96
- position: relative;
97
- }
98
- h2 small { font-weight: normal; font-size: 0.7em; display: inline; position: absolute; right: 0; }
168
+ padding: 0;
169
+ padding-bottom: 3px;
170
+ border-bottom: 1px #aaa solid;
171
+ font-size: 1.4em;
172
+ margin: 1.8em 0 0.5em;
173
+ position: relative;
174
+ }
175
+ h2 small {
176
+ font-weight: normal;
177
+ font-size: 0.7em;
178
+ display: inline;
179
+ position: absolute;
180
+ right: 0;
181
+ }
182
+ a {
183
+ font-weight: 550;
184
+ }
99
185
  h2 small a {
100
- display: block;
101
- height: 20px;
102
- border: 1px solid #aaa;
103
- border-bottom: 0;
104
- border-top-left-radius: 5px;
105
- background: #f8f8f8;
106
- position: relative;
107
- padding: 2px 7px;
108
- }
109
- .clear { clear: both; }
110
- .inline { display: inline; }
111
- .inline p:first-child { display: inline; }
112
- .docstring, .tags, #filecontents { font-size: 15px; line-height: 1.5145em; }
113
- .docstring p > code, .docstring p > tt, .tags p > code, .tags p > tt {
114
- color: #c7254e; background: #f9f2f4; padding: 2px 4px; font-size: 1em;
115
- border-radius: 4px;
116
- }
117
- .docstring h1, .docstring h2, .docstring h3, .docstring h4 { padding: 0; border: 0; border-bottom: 1px dotted #bbb; }
118
- .docstring h1 { font-size: 1.2em; }
119
- .docstring h2 { font-size: 1.1em; }
120
- .docstring h3, .docstring h4 { font-size: 1em; border-bottom: 0; padding-top: 10px; }
121
- .summary_desc .object_link a, .docstring .object_link a {
122
- font-family: monospace; font-size: 1.05em;
123
- color: #05a; background: #EDF4FA; padding: 2px 4px; font-size: 1em;
124
- border-radius: 4px;
125
- }
126
- .rdoc-term { padding-right: 25px; font-weight: bold; }
127
- .rdoc-list p { margin: 0; padding: 0; margin-bottom: 4px; }
128
- .summary_desc pre.code .object_link a, .docstring pre.code .object_link a {
129
- padding: 0px; background: inherit; color: inherit; border-radius: inherit;
186
+ display: block;
187
+ height: 20px;
188
+ border: 1px solid #aaa;
189
+ border-bottom: 0;
190
+ border-top-left-radius: 5px;
191
+ background: #f8f8f8;
192
+ position: relative;
193
+ padding: 2px 7px;
194
+ }
195
+ .clear {
196
+ clear: both;
197
+ }
198
+ .inline {
199
+ display: inline;
200
+ }
201
+ .inline p:first-child {
202
+ display: inline;
203
+ }
204
+ .docstring,
205
+ .tags,
206
+ #filecontents {
207
+ font-size: 15px;
208
+ line-height: 1.5145em;
209
+ }
210
+ *:not(pre) > code {
211
+ padding: 1px 3px 1px 3px;
212
+ border: 1px solid #e1e1e8;
213
+ background: #f7f7f9;
214
+ border-radius: 4px;
215
+ }
216
+ .summary_desc tt {
217
+ font-size: 0.9em;
218
+ }
219
+ .docstring p > code,
220
+ .docstring p > tt,
221
+ .tags p > code,
222
+ .tags p > tt {
223
+ color: #c7254e;
224
+ background: #f9f2f4;
225
+ padding: 2px 4px;
226
+ font-size: 1em;
227
+ border-radius: 4px;
228
+ }
229
+ .docstring h1,
230
+ .docstring h2,
231
+ .docstring h3,
232
+ .docstring h4 {
233
+ padding: 0;
234
+ border: 0;
235
+ border-bottom: 1px dotted #bbb;
236
+ }
237
+ .docstring h1 {
238
+ font-size: 1.2em;
239
+ }
240
+ .docstring h2 {
241
+ font-size: 1.1em;
242
+ }
243
+ .docstring h3,
244
+ .docstring h4 {
245
+ font-size: 1em;
246
+ border-bottom: 0;
247
+ padding-top: 10px;
248
+ }
249
+ .summary_desc .object_link a,
250
+ .docstring .object_link a {
251
+ font-family: monospace;
252
+ color: #05a;
253
+ background: #edf4fa;
254
+ padding: 2px 4px;
255
+ font-size: 1em;
256
+ border-radius: 4px;
257
+ }
258
+ .rdoc-term {
259
+ padding-right: 25px;
260
+ font-weight: bold;
261
+ }
262
+ .rdoc-list p {
263
+ margin: 0;
264
+ padding: 0;
265
+ margin-bottom: 4px;
266
+ }
267
+ .summary_desc pre.code .object_link a,
268
+ .docstring pre.code .object_link a {
269
+ padding: 0px;
270
+ background: inherit;
271
+ color: inherit;
272
+ border-radius: inherit;
130
273
  }
131
274
 
132
275
  /* style for <table> */
133
- #filecontents table, .docstring table { border-collapse: collapse; }
134
- #filecontents table th, #filecontents table td,
135
- .docstring table th, .docstring table td { border: 1px solid #ccc; padding: 8px; padding-right: 17px; }
136
- #filecontents table tr:nth-child(odd),
137
- .docstring table tr:nth-child(odd) { background: #eee; }
138
- #filecontents table tr:nth-child(even),
139
- .docstring table tr:nth-child(even) { background: #fff; }
140
- #filecontents table th, .docstring table th { background: #fff; }
141
-
142
- /* style for <ul> */
143
- #filecontents li > p, .docstring li > p { margin: 0px; }
144
- #filecontents ul, .docstring ul { padding-left: 20px; }
145
- /* style for <dl> */
146
- #filecontents dl, .docstring dl { border: 1px solid #ccc; }
147
- #filecontents dt, .docstring dt { background: #ddd; font-weight: bold; padding: 3px 5px; }
148
- #filecontents dd, .docstring dd { padding: 5px 0px; margin-left: 18px; }
149
- #filecontents dd > p, .docstring dd > p { margin: 0px; }
276
+ .docstring table,
277
+ #filecontents table {
278
+ border-collapse: collapse;
279
+ }
280
+ .docstring table th,
281
+ .docstring table td,
282
+ #filecontents table th,
283
+ #filecontents table td {
284
+ border: 1px solid #ccc;
285
+ padding: 8px;
286
+ padding-right: 17px;
287
+ }
288
+ .docstring table tr:nth-child(odd),
289
+ #filecontents table tr:nth-child(odd) {
290
+ background: #eee;
291
+ }
292
+ .docstring table tr:nth-child(even),
293
+ #filecontents table tr:nth-child(even) {
294
+ background: #fff;
295
+ }
296
+ .docstring table th,
297
+ #filecontents table th {
298
+ background: #fff;
299
+ }
150
300
 
151
301
  .note {
152
- color: #222;
153
- margin: 20px 0;
154
- padding: 10px;
155
- border: 1px solid #eee;
156
- border-radius: 3px;
157
- display: block;
302
+ color: #222;
303
+ margin: 20px 0;
304
+ padding: 10px;
305
+ border: 1px solid #eee;
306
+ border-radius: 3px;
307
+ display: block;
158
308
  }
159
309
  .docstring .note {
160
- border-left-color: #ccc;
161
- border-left-width: 5px;
162
- }
163
- .note.todo { background: #ffffc5; border-color: #ececaa; }
164
- .note.returns_void { background: #efefef; }
165
- .note.deprecated { background: #ffe5e5; border-color: #e9dada; }
166
- .note.title.deprecated { background: #ffe5e5; border-color: #e9dada; }
167
- .note.private { background: #ffffc5; border-color: #ececaa; }
168
- .note.title { padding: 3px 6px; font-size: 0.9em; font-family: "Lucida Sans", "Lucida Grande", Verdana, Arial, sans-serif; display: inline; }
169
- .summary_signature + .note.title { margin-left: 7px; }
170
- h1 .note.title { font-size: 0.5em; font-weight: normal; padding: 3px 5px; position: relative; top: -3px; text-transform: capitalize; }
171
- .note.title { background: #efefef; }
172
- .note.title.constructor { color: #fff; background: #6a98d6; border-color: #6689d6; }
173
- .note.title.writeonly { color: #fff; background: #45a638; border-color: #2da31d; }
174
- .note.title.readonly { color: #fff; background: #6a98d6; border-color: #6689d6; }
175
- .note.title.private { background: #d5d5d5; border-color: #c5c5c5; }
176
- .note.title.not_defined_here { background: transparent; border: none; font-style: italic; }
177
- .discussion .note { margin-top: 6px; }
178
- .discussion .note:first-child { margin-top: 0; }
310
+ border-left-color: #ccc;
311
+ border-left-width: 5px;
312
+ }
313
+ .note.todo {
314
+ background: #ffffc5;
315
+ border-color: #ececaa;
316
+ }
317
+ .note.returns_void {
318
+ background: #efefef;
319
+ }
320
+ .note.deprecated {
321
+ background: #ffe5e5;
322
+ border-color: #e9dada;
323
+ }
324
+ .note.title.deprecated {
325
+ background: #ffe5e5;
326
+ border-color: #e9dada;
327
+ }
328
+ .note.private {
329
+ background: #ffffc5;
330
+ border-color: #ececaa;
331
+ }
332
+ .note.title {
333
+ padding: 3px 6px;
334
+ font-size: 0.9em;
335
+ font-family: "Lucida Sans", "Lucida Grande", Verdana, Arial, sans-serif;
336
+ display: inline;
337
+ }
338
+ .summary_signature + .note.title {
339
+ margin-left: 7px;
340
+ }
341
+ h1 .note.title {
342
+ font-size: 0.5em;
343
+ font-weight: normal;
344
+ padding: 3px 5px;
345
+ position: relative;
346
+ top: -3px;
347
+ text-transform: capitalize;
348
+ }
349
+ .note.title {
350
+ background: #efefef;
351
+ }
352
+ .note.title.constructor {
353
+ color: #fff;
354
+ background: #6a98d6;
355
+ border-color: #6689d6;
356
+ }
357
+ .note.title.writeonly {
358
+ color: #fff;
359
+ background: #45a638;
360
+ border-color: #2da31d;
361
+ }
362
+ .note.title.readonly {
363
+ color: #fff;
364
+ background: #6a98d6;
365
+ border-color: #6689d6;
366
+ }
367
+ .note.title.private {
368
+ background: #d5d5d5;
369
+ border-color: #c5c5c5;
370
+ }
371
+ .note.title.not_defined_here {
372
+ background: transparent;
373
+ border: none;
374
+ font-style: italic;
375
+ }
376
+ .discussion .note {
377
+ margin-top: 6px;
378
+ }
379
+ .discussion .note:first-child {
380
+ margin-top: 0;
381
+ }
179
382
 
180
383
  h3.inherited {
181
- font-style: italic;
182
- font-family: "Lucida Sans", "Lucida Grande", Verdana, Arial, sans-serif;
183
- font-weight: normal;
184
- padding: 0;
185
- margin: 0;
186
- margin-top: 12px;
187
- margin-bottom: 3px;
188
- font-size: 13px;
384
+ font-style: italic;
385
+ font-family: "Lucida Sans", "Lucida Grande", Verdana, Arial, sans-serif;
386
+ font-weight: normal;
387
+ padding: 0;
388
+ margin: 0;
389
+ margin-top: 12px;
390
+ margin-bottom: 3px;
391
+ font-size: 13px;
189
392
  }
190
393
  p.inherited {
191
- padding: 0;
192
- margin: 0;
193
- margin-left: 25px;
394
+ padding: 0;
395
+ margin: 0;
396
+ margin-left: 25px;
194
397
  }
195
398
 
196
399
  .box_info dl {
197
- margin: 0;
198
- border: 0;
199
- width: 100%;
200
- font-size: 1em;
201
- display: flex;
202
- display: -webkit-flex;
203
- display: -ms-flexbox;
400
+ margin: 0;
401
+ border: 0;
402
+ width: 100%;
403
+ font-size: 1em;
404
+ display: flex;
204
405
  }
205
406
  .box_info dl dt {
206
- flex-shrink: 0;
207
- -webkit-flex-shrink: 1;
208
- -ms-flex-shrink: 1;
209
- width: 100px;
210
- text-align: right;
211
- font-weight: bold;
212
- border: 1px solid #aaa;
213
- border-width: 1px 0px 0px 1px;
214
- padding: 6px 0;
215
- padding-right: 10px;
407
+ flex-shrink: 0;
408
+ width: 100px;
409
+ text-align: right;
410
+ font-weight: bold;
411
+ border: 1px solid #aaa;
412
+ border-width: 1px 0px 0px 1px;
413
+ padding: 6px 0;
414
+ padding-right: 10px;
216
415
  }
217
416
  .box_info dl dd {
218
- flex-grow: 1;
219
- -webkit-flex-grow: 1;
220
- -ms-flex: 1;
221
- max-width: 420px;
222
- padding: 6px 0;
223
- padding-right: 20px;
224
- border: 1px solid #aaa;
225
- border-width: 1px 1px 0 0;
226
- overflow: hidden;
227
- position: relative;
417
+ flex-grow: 1;
418
+ max-width: 420px;
419
+ padding: 6px 0;
420
+ padding-right: 20px;
421
+ border: 1px solid #aaa;
422
+ border-width: 1px 1px 0 0;
423
+ overflow: hidden;
424
+ position: relative;
425
+ }
426
+ .box_info dl > * {
427
+ margin: 0;
228
428
  }
229
429
  .box_info dl:last-child > * {
230
- border-bottom: 1px solid #aaa;
430
+ border-bottom: 1px solid #aaa;
431
+ }
432
+ .box_info dl:nth-child(odd) > * {
433
+ background: #eee;
434
+ }
435
+ .box_info dl:nth-child(even) > * {
436
+ background: #fff;
231
437
  }
232
- .box_info dl:nth-child(odd) > * { background: #eee; }
233
- .box_info dl:nth-child(even) > * { background: #fff; }
234
- .box_info dl > * { margin: 0; }
235
438
 
236
- ul.toplevel { list-style: none; padding-left: 0; font-size: 1.1em; }
237
- .index_inline_list { padding-left: 0; font-size: 1.1em; }
439
+ ul.toplevel {
440
+ list-style: none;
441
+ padding-left: 0;
442
+ font-size: 1.1em;
443
+ }
444
+ .index_inline_list {
445
+ padding-left: 0;
446
+ font-size: 1.1em;
447
+ }
238
448
 
239
449
  .index_inline_list li {
240
- list-style: none;
241
- display: inline-block;
242
- padding: 0 12px;
243
- line-height: 30px;
244
- margin-bottom: 5px;
450
+ list-style: none;
451
+ display: inline-block;
452
+ padding: 0 12px;
453
+ line-height: 30px;
454
+ margin-bottom: 5px;
245
455
  }
246
456
 
247
- dl.constants { margin-left: 10px; }
248
- dl.constants dt { font-weight: bold; font-size: 1.1em; margin-bottom: 5px; }
249
- dl.constants.compact dt { display: inline-block; font-weight: normal }
250
- dl.constants dd { width: 75%; white-space: pre; font-family: monospace; margin-bottom: 18px; }
251
- dl.constants .docstring .note:first-child { margin-top: 5px; }
457
+ dl.constants {
458
+ margin-left: 10px;
459
+ }
460
+ dl.constants dt {
461
+ font-weight: bold;
462
+ font-size: 1.1em;
463
+ margin-bottom: 5px;
464
+ }
465
+ dl.constants.compact dt {
466
+ display: inline-block;
467
+ font-weight: normal;
468
+ }
469
+ dl.constants dd {
470
+ width: 75%;
471
+ white-space: pre;
472
+ font-family: monospace;
473
+ margin-bottom: 18px;
474
+ }
475
+ dl.constants .docstring .note:first-child {
476
+ margin-top: 5px;
477
+ }
252
478
 
253
479
  .summary_desc {
254
- margin-left: 32px;
255
- display: block;
256
- font-family: sans-serif;
257
- font-size: 1.1em;
258
- margin-top: 8px;
259
- line-height: 1.5145em;
260
- margin-bottom: 0.8em;
261
- }
262
- .summary_desc tt { font-size: 0.9em; }
263
- dl.constants .note { padding: 2px 6px; padding-right: 12px; margin-top: 6px; }
264
- dl.constants .docstring { margin-left: 32px; font-size: 0.9em; font-weight: normal; }
265
- dl.constants .tags { padding-left: 32px; font-size: 0.9em; line-height: 0.8em; }
266
- dl.constants .discussion *:first-child { margin-top: 0; }
267
- dl.constants .discussion *:last-child { margin-bottom: 0; }
268
-
269
- .method_details { border-top: 1px dotted #ccc; margin-top: 25px; padding-top: 0; }
270
- .method_details.first { border: 0; margin-top: 5px; }
271
- .method_details.first h3.signature { margin-top: 1em; }
272
- p.signature, h3.signature {
273
- font-size: 1.1em; font-weight: normal; font-family: Monaco, Consolas, Courier, monospace;
274
- padding: 6px 10px; margin-top: 1em;
275
- background: #E8F4FF; border: 1px solid #d8d8e5; border-radius: 5px;
480
+ margin-left: 32px;
481
+ display: block;
482
+ font-family: sans-serif;
483
+ font-size: 1.1em;
484
+ margin-top: 8px;
485
+ line-height: 1.5145em;
486
+ margin-bottom: 0.8em;
487
+ }
488
+ dl.constants .note {
489
+ padding: 2px 6px;
490
+ padding-right: 12px;
491
+ margin-top: 6px;
492
+ }
493
+ dl.constants .docstring {
494
+ margin-left: 32px;
495
+ font-size: 0.9em;
496
+ font-weight: normal;
497
+ }
498
+ dl.constants .tags {
499
+ padding-left: 32px;
500
+ font-size: 0.9em;
501
+ line-height: 0.8em;
502
+ }
503
+ dl.constants .discussion *:first-child {
504
+ margin-top: 0;
505
+ }
506
+ dl.constants .discussion *:last-child {
507
+ margin-bottom: 0;
508
+ }
509
+
510
+ .method_details {
511
+ border-top: 1px dotted #ccc;
512
+ margin-top: 25px;
513
+ padding-top: 0;
514
+ }
515
+ .method_details.first {
516
+ border: 0;
517
+ margin-top: 5px;
518
+ }
519
+ p.signature,
520
+ h3.signature {
521
+ font-size: 1.1em;
522
+ font-weight: normal;
523
+ font-family: Monaco, Consolas, Courier, monospace;
524
+ padding: 6px 10px;
525
+ margin-top: 1em;
526
+ background: #e8f4ff;
527
+ border: 1px solid #d8d8e5;
528
+ border-radius: 5px;
529
+ }
530
+ .method_details.first h3.signature {
531
+ margin-top: 1em;
276
532
  }
277
533
  p.signature tt,
278
- h3.signature tt { font-family: Monaco, Consolas, Courier, monospace; }
534
+ h3.signature tt {
535
+ font-family: Monaco, Consolas, Courier, monospace;
536
+ }
279
537
  p.signature .overload,
280
- h3.signature .overload { display: block; }
538
+ h3.signature .overload {
539
+ display: block;
540
+ }
281
541
  p.signature .extras,
282
- h3.signature .extras { font-weight: normal; font-family: sans-serif; color: #444; font-size: 1em; }
542
+ h3.signature .extras {
543
+ font-weight: normal;
544
+ font-family: sans-serif;
545
+ color: #444;
546
+ font-size: 1em;
547
+ }
283
548
  p.signature .not_defined_here,
284
549
  h3.signature .not_defined_here,
285
550
  p.signature .aliases,
286
- h3.signature .aliases { display: block; font-weight: normal; font-size: 0.9em; font-family: sans-serif; margin-top: 0px; color: #555; }
551
+ h3.signature .aliases {
552
+ display: block;
553
+ font-weight: normal;
554
+ font-size: 0.9em;
555
+ font-family: sans-serif;
556
+ margin-top: 0px;
557
+ color: #555;
558
+ }
287
559
  p.signature .aliases .names,
288
- h3.signature .aliases .names { font-family: Monaco, Consolas, Courier, monospace; font-weight: bold; color: #000; font-size: 1.2em; }
560
+ h3.signature .aliases .names {
561
+ font-family: Monaco, Consolas, Courier, monospace;
562
+ font-weight: bold;
563
+ color: #000;
564
+ font-size: 1.2em;
565
+ }
289
566
 
290
- .tags .tag_title { font-size: 1.05em; margin-bottom: 0; font-weight: bold; }
291
- .tags .tag_title tt { color: initial; padding: initial; background: initial; }
292
- .tags ul { margin-top: 5px; padding-left: 30px; list-style: square; }
293
- .tags ul li { margin-bottom: 3px; }
294
- .tags ul .name { font-family: monospace; font-weight: bold; }
295
- .tags ul .note { padding: 3px 6px; }
296
- .tags { margin-bottom: 12px; }
567
+ .tags .tag_title {
568
+ font-size: 1.05em;
569
+ margin-bottom: 0;
570
+ font-weight: bold;
571
+ }
572
+ .tags .tag_title tt {
573
+ color: initial;
574
+ padding: initial;
575
+ background: initial;
576
+ }
577
+ .tags ul {
578
+ margin-top: 5px;
579
+ padding-left: 30px;
580
+ list-style: square;
581
+ }
582
+ .tags ul li {
583
+ margin-bottom: 3px;
584
+ }
585
+ .tags ul .name {
586
+ font-family: monospace;
587
+ font-weight: bold;
588
+ }
589
+ .tags ul .note {
590
+ padding: 3px 6px;
591
+ }
592
+ .tags {
593
+ margin-bottom: 12px;
594
+ }
297
595
 
298
- .tags .examples .tag_title { margin-bottom: 10px; font-weight: bold; }
299
- .tags .examples .inline p { padding: 0; margin: 0; font-weight: bold; font-size: 1em; }
300
- .tags .examples .inline p:before { content: "▸"; font-size: 1em; margin-right: 5px; }
596
+ .tags .examples .tag_title {
597
+ margin-bottom: 10px;
598
+ font-weight: bold;
599
+ }
600
+ .tags .examples .inline p {
601
+ padding: 0;
602
+ margin: 0;
603
+ font-weight: bold;
604
+ font-size: 1em;
605
+ }
606
+ .tags .examples .inline p:before {
607
+ content: "▸";
608
+ font-size: 1em;
609
+ margin-right: 5px;
610
+ }
301
611
 
302
- .tags .overload .overload_item { list-style: none; margin-bottom: 25px; }
612
+ .tags .overload .signature {
613
+ margin-left: -15px;
614
+ font-family: monospace;
615
+ display: block;
616
+ font-size: 1.1em;
617
+ }
618
+ .tags .overload .overload_item {
619
+ list-style: none;
620
+ margin-bottom: 25px;
621
+ }
303
622
  .tags .overload .overload_item .signature {
304
- padding: 2px 8px;
305
- background: #F1F8FF; border: 1px solid #d8d8e5; border-radius: 3px;
623
+ padding: 2px 8px;
624
+ background: #f1f8ff;
625
+ border: 1px solid #d8d8e5;
626
+ border-radius: 3px;
627
+ }
628
+ .tags .overload .docstring {
629
+ margin-top: 15px;
306
630
  }
307
- .tags .overload .signature { margin-left: -15px; font-family: monospace; display: block; font-size: 1.1em; }
308
- .tags .overload .docstring { margin-top: 15px; }
309
631
 
310
- .defines { display: none; }
632
+ .defines {
633
+ display: none;
634
+ }
311
635
 
312
- #method_missing_details .notice.this { position: relative; top: -8px; color: #888; padding: 0; margin: 0; }
636
+ #method_missing_details .notice.this {
637
+ position: relative;
638
+ top: -8px;
639
+ color: #888;
640
+ padding: 0;
641
+ margin: 0;
642
+ }
313
643
 
314
- .showSource { font-size: 0.9em; }
315
- .showSource a, .showSource a:visited { text-decoration: none; color: #666; }
644
+ .showSource {
645
+ font-size: 0.9em;
646
+ }
647
+ .showSource a,
648
+ .showSource a:visited {
649
+ text-decoration: none;
650
+ color: #666;
651
+ }
316
652
 
317
- #content a, #content a:visited { text-decoration: none; color: #05a; }
318
- #content a:hover { background: #ffffa5; }
653
+ #content a,
654
+ #content a:visited {
655
+ text-decoration: none;
656
+ color: #05a;
657
+ }
658
+ #content a:hover {
659
+ background: #ffffa5;
660
+ }
319
661
 
320
662
  ul.summary {
321
- list-style: none;
322
- font-family: monospace;
323
- font-size: 1em;
324
- line-height: 1.5em;
325
- padding-left: 0px;
326
- }
327
- ul.summary a, ul.summary a:visited {
328
- text-decoration: none; font-size: 1.1em;
329
- }
330
- ul.summary li { margin-bottom: 5px; }
331
- .summary_signature { padding: 4px 8px; background: #f8f8f8; border: 1px solid #f0f0f0; border-radius: 5px; }
332
- .summary_signature:hover { background: #CFEBFF; border-color: #A4CCDA; cursor: pointer; }
333
- .summary_signature.deprecated { background: #ffe5e5; border-color: #e9dada; }
334
- ul.summary.compact li { display: inline-block; margin: 0px 5px 0px 0px; line-height: 2.6em;}
335
- ul.summary.compact .summary_signature { padding: 5px 7px; padding-right: 4px; }
663
+ list-style: none;
664
+ font-family: monospace;
665
+ font-size: 1em;
666
+ line-height: 1.5em;
667
+ padding-left: 0px;
668
+ }
669
+ ul.summary a,
670
+ ul.summary a:visited {
671
+ text-decoration: none;
672
+ font-size: 1.1em;
673
+ }
674
+ ul.summary li {
675
+ margin-bottom: 5px;
676
+ }
677
+ .summary_signature {
678
+ padding: 4px 8px;
679
+ background: #f8f8f8;
680
+ border: 1px solid #f0f0f0;
681
+ border-radius: 5px;
682
+ }
683
+ .summary_signature:hover {
684
+ background: #cfebff;
685
+ border-color: #a4ccda;
686
+ cursor: pointer;
687
+ }
688
+ .summary_signature.deprecated {
689
+ background: #ffe5e5;
690
+ border-color: #e9dada;
691
+ }
692
+ ul.summary.compact li {
693
+ display: inline-block;
694
+ margin: 0px 5px 0px 0px;
695
+ line-height: 2.6em;
696
+ }
697
+ ul.summary.compact .summary_signature {
698
+ padding: 5px 7px;
699
+ padding-right: 4px;
700
+ }
336
701
  #content .summary_signature:hover a,
337
702
  #content .summary_signature:hover a:visited {
338
- background: transparent;
339
- color: #049;
703
+ background: transparent;
704
+ color: #049;
340
705
  }
341
706
 
342
- p.inherited a { font-family: monospace; font-size: 0.9em; }
343
- p.inherited { word-spacing: 5px; font-size: 1.2em; }
707
+ p.inherited a {
708
+ font-family: monospace;
709
+ font-size: 0.9em;
710
+ }
711
+ p.inherited {
712
+ word-spacing: 5px;
713
+ font-size: 1.2em;
714
+ }
344
715
 
345
- p.children { font-size: 1.2em; }
346
- p.children a { font-size: 0.9em; }
347
- p.children strong { font-size: 0.8em; }
348
- p.children strong.modules { padding-left: 5px; }
716
+ p.children {
717
+ font-size: 1.2em;
718
+ }
719
+ p.children a {
720
+ font-size: 0.9em;
721
+ }
722
+ p.children strong {
723
+ font-size: 0.8em;
724
+ }
725
+ p.children strong.modules {
726
+ padding-left: 5px;
727
+ }
349
728
 
350
- ul.fullTree { display: none; padding-left: 0; list-style: none; margin-left: 0; margin-bottom: 10px; }
351
- ul.fullTree ul { margin-left: 0; padding-left: 0; list-style: none; }
352
- ul.fullTree li { text-align: center; padding-top: 18px; padding-bottom: 12px; background: url(data:image/gif;base64,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) no-repeat top center; }
353
- ul.fullTree li:first-child { padding-top: 0; background: transparent; }
354
- ul.fullTree li:last-child { padding-bottom: 0; }
355
- .showAll ul.fullTree { display: block; }
356
- .showAll .inheritName { display: none; }
729
+ ul.fullTree {
730
+ display: none;
731
+ padding-left: 0;
732
+ list-style: none;
733
+ margin-left: 0;
734
+ margin-bottom: 10px;
735
+ }
736
+ ul.fullTree ul {
737
+ margin-left: 0;
738
+ padding-left: 0;
739
+ list-style: none;
740
+ }
741
+ ul.fullTree li {
742
+ text-align: center;
743
+ padding-top: 18px;
744
+ padding-bottom: 12px;
745
+ background: url(data:image/gif;base64,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)
746
+ no-repeat top center;
747
+ }
748
+ ul.fullTree li:first-child {
749
+ padding-top: 0;
750
+ background: transparent;
751
+ }
752
+ ul.fullTree li:last-child {
753
+ padding-bottom: 0;
754
+ }
755
+ .showAll ul.fullTree {
756
+ display: block;
757
+ }
758
+ .showAll .inheritName {
759
+ display: none;
760
+ }
761
+
762
+ /* style for <ul> */
763
+ .docstring li > p,
764
+ #filecontents li > p {
765
+ margin: 0px;
766
+ }
767
+ .docstring ul,
768
+ #filecontents ul {
769
+ padding-left: 20px;
770
+ }
771
+ /* style for <dl> */
772
+ .docstring dl,
773
+ #filecontents dl {
774
+ border: 1px solid #ccc;
775
+ }
776
+ .docstring dl dt,
777
+ #filecontents dt {
778
+ background: #ddd;
779
+ font-weight: bold;
780
+ padding: 3px 5px;
781
+ }
782
+ .docstring dl dd,
783
+ #filecontents dd {
784
+ padding: 5px 0px;
785
+ margin-left: 18px;
786
+ }
787
+ .docstring dl dd > p,
788
+ #filecontents dd > p {
789
+ margin: 0px;
790
+ }
357
791
 
358
- #search { position: absolute; right: 12px; top: 0px; z-index: 9000; }
792
+ #search {
793
+ position: absolute;
794
+ right: 12px;
795
+ top: 0px;
796
+ z-index: 9000;
797
+ }
359
798
  #search a {
360
- display: block; float: left;
361
- padding: 4px 8px; text-decoration: none; color: #05a; fill: #05a;
362
- border: 1px solid #d8d8e5;
363
- border-bottom-left-radius: 3px; border-bottom-right-radius: 3px;
364
- background: #F1F8FF;
365
- box-shadow: -1px 1px 3px #ddd;
366
- }
367
- #search a:hover { background: #f5faff; color: #06b; fill: #06b; }
799
+ display: block;
800
+ float: left;
801
+ padding: 4px 8px;
802
+ text-decoration: none;
803
+ color: #05a;
804
+ fill: #05a;
805
+ border: 1px solid #d8d8e5;
806
+ border-bottom-left-radius: 3px;
807
+ border-bottom-right-radius: 3px;
808
+ background: #f1f8ff;
809
+ box-shadow: -1px 1px 3px #ddd;
810
+ }
811
+ #search a:hover {
812
+ background: #f5faff;
813
+ color: #06b;
814
+ fill: #06b;
815
+ }
368
816
  #search a.active {
369
- background: #568; padding-bottom: 20px; color: #fff; fill: #fff;
370
- border: 1px solid #457;
371
- border-top-left-radius: 5px; border-top-right-radius: 5px;
372
- }
373
- #search a.inactive { color: #999; fill: #999; }
374
- .inheritanceTree, .toggleDefines {
375
- float: right;
376
- border-left: 1px solid #aaa;
377
- position: absolute; top: 0; right: 0;
378
- height: 100%;
379
- background: #f6f6f6;
380
- padding: 5px;
381
- min-width: 55px;
382
- text-align: center;
383
- }
384
-
385
- #menu { font-size: 1.3em; color: #bbb; }
386
- #menu .title, #menu a { font-size: 0.7em; }
387
- #menu .title a { font-size: 1em; }
388
- #menu .title { color: #555; }
389
- #menu a, #menu a:visited { color: #333; text-decoration: none; border-bottom: 1px dotted #bbd; }
390
- #menu a:hover { color: #05a; }
391
-
392
- #footer { margin-top: 15px; border-top: 1px solid #ccc; text-align: center; padding: 7px 0; color: #999; }
393
- #footer a, #footer a:visited { color: #444; text-decoration: none; border-bottom: 1px dotted #bbd; }
394
- #footer a:hover { color: #05a; }
395
-
396
- #listing ul.alpha { font-size: 1.1em; }
397
- #listing ul.alpha { margin: 0; padding: 0; padding-bottom: 10px; list-style: none; }
398
- #listing ul.alpha li.letter { font-size: 1.4em; padding-bottom: 10px; }
399
- #listing ul.alpha ul { margin: 0; padding-left: 15px; }
400
- #listing ul small { color: #666; font-size: 0.7em; }
401
-
402
- li.r1 { background: #f0f0f0; }
403
- li.r2 { background: #fafafa; }
817
+ background: #568;
818
+ padding-bottom: 20px;
819
+ color: #fff;
820
+ fill: #fff;
821
+ border: 1px solid #457;
822
+ border-top-left-radius: 5px;
823
+ border-top-right-radius: 5px;
824
+ }
825
+ #search a.inactive {
826
+ color: #999;
827
+ fill: #999;
828
+ }
829
+ .inheritanceTree,
830
+ .toggleDefines {
831
+ float: right;
832
+ border-left: 1px solid #aaa;
833
+ position: absolute;
834
+ top: 0;
835
+ right: 0;
836
+ height: 100%;
837
+ background: #f6f6f6;
838
+ padding: 5px;
839
+ min-width: 55px;
840
+ text-align: center;
841
+ }
842
+
843
+ #menu {
844
+ font-size: 1.3em;
845
+ color: #bbb;
846
+ }
847
+ #menu .title,
848
+ #menu a {
849
+ font-size: 0.7em;
850
+ }
851
+ #menu .title a {
852
+ font-size: 1em;
853
+ }
854
+ #menu .title {
855
+ color: #555;
856
+ }
857
+ #menu a,
858
+ #menu a:visited {
859
+ color: #333;
860
+ text-decoration: none;
861
+ border-bottom: 1px dotted #bbd;
862
+ }
863
+ #menu a:hover {
864
+ color: #05a;
865
+ }
866
+
867
+ #footer {
868
+ margin-top: 15px;
869
+ border-top: 1px solid #ccc;
870
+ text-align: center;
871
+ padding: 7px 0;
872
+ color: #999;
873
+ }
874
+ #footer a,
875
+ #footer a:visited {
876
+ color: #444;
877
+ text-decoration: none;
878
+ border-bottom: 1px dotted #bbd;
879
+ }
880
+ #footer a:hover {
881
+ color: #05a;
882
+ }
883
+
884
+ #listing ul.alpha {
885
+ font-size: 1.1em;
886
+ }
887
+ #listing ul.alpha {
888
+ margin: 0;
889
+ padding: 0;
890
+ padding-bottom: 10px;
891
+ list-style: none;
892
+ }
893
+ #listing ul.alpha li.letter {
894
+ font-size: 1.4em;
895
+ padding-bottom: 10px;
896
+ }
897
+ #listing ul.alpha ul {
898
+ margin: 0;
899
+ padding-left: 15px;
900
+ }
901
+ #listing ul small {
902
+ color: #666;
903
+ font-size: 0.7em;
904
+ }
905
+
906
+ li.r1 {
907
+ background: #f0f0f0;
908
+ }
909
+ li.r2 {
910
+ background: #fafafa;
911
+ }
404
912
 
405
913
  #content ul.summary li.deprecated .summary_signature a,
406
- #content ul.summary li.deprecated .summary_signature a:visited { text-decoration: line-through; font-style: italic; }
914
+ #content ul.summary li.deprecated .summary_signature a:visited {
915
+ text-decoration: line-through;
916
+ font-style: italic;
917
+ }
407
918
 
408
919
  #toc {
409
- position: relative;
410
- float: right;
411
- overflow-x: auto;
412
- right: -3px;
413
- margin-left: 20px;
414
- margin-bottom: 20px;
415
- padding: 20px; padding-right: 30px;
416
- max-width: 300px;
417
- z-index: 5000;
418
- background: #fefefe;
419
- border: 1px solid #ddd;
420
- box-shadow: -2px 2px 6px #bbb;
421
- }
422
- #toc .title { margin: 0; }
423
- #toc ol { padding-left: 1.8em; }
424
- #toc li { font-size: 1.1em; line-height: 1.7em; }
425
- #toc > ol > li { font-size: 1.1em; font-weight: bold; }
426
- #toc ol > li > ol { font-size: 0.9em; }
427
- #toc ol ol > li > ol { padding-left: 2.3em; }
428
- #toc ol + li { margin-top: 0.3em; }
429
- #toc.hidden { padding: 10px; background: #fefefe; box-shadow: none; }
430
- #toc.hidden:hover { background: #fafafa; }
431
- #filecontents h1 + #toc.nofloat { margin-top: 0; }
920
+ position: relative;
921
+ float: right;
922
+ overflow-x: auto;
923
+ right: -3px;
924
+ margin-left: 20px;
925
+ margin-bottom: 20px;
926
+ padding: 20px;
927
+ padding-right: 30px;
928
+ max-width: 300px;
929
+ z-index: 5000;
930
+ background: #fefefe;
931
+ border: 1px solid #ddd;
932
+ box-shadow: -2px 2px 6px #bbb;
933
+ }
934
+ #toc .title {
935
+ margin: 0;
936
+ }
937
+ #toc ol {
938
+ padding-left: 1.8em;
939
+ }
940
+ #toc li {
941
+ font-size: 1.1em;
942
+ line-height: 1.7em;
943
+ }
944
+ #toc > ol > li {
945
+ font-size: 1.1em;
946
+ font-weight: bold;
947
+ }
948
+ #toc ol > li > ol {
949
+ font-size: 0.9em;
950
+ }
951
+ #toc ol ol > li > ol {
952
+ padding-left: 2.3em;
953
+ }
954
+ #toc ol + li {
955
+ margin-top: 0.3em;
956
+ }
957
+ #toc.hidden {
958
+ padding: 10px;
959
+ background: #fefefe;
960
+ box-shadow: none;
961
+ }
962
+ #toc.hidden:hover {
963
+ background: #fafafa;
964
+ }
965
+ #filecontents h1 + #toc.nofloat {
966
+ margin-top: 0;
967
+ }
432
968
  @media (max-width: 560px) {
433
- #toc {
434
- margin-left: 0;
435
- margin-top: 16px;
436
- float: none;
437
- max-width: none;
438
- }
969
+ #toc {
970
+ margin-left: 0;
971
+ margin-top: 16px;
972
+ float: none;
973
+ max-width: none;
974
+ }
439
975
  }
440
976
 
441
977
  /* syntax highlighting */
442
- .source_code { display: none; padding: 3px 8px; border-left: 8px solid #ddd; margin-top: 5px; }
443
- #filecontents pre.code, .docstring pre.code, .source_code pre { font-family: monospace; }
444
- #filecontents pre.code, .docstring pre.code { display: block; }
445
- .source_code .lines { padding-right: 12px; color: #555; text-align: right; }
446
- #filecontents pre.code, .docstring pre.code,
978
+ .source_code {
979
+ display: none;
980
+ padding: 3px 8px;
981
+ border-left: 8px solid #ddd;
982
+ margin-top: 5px;
983
+ }
984
+ pre.code {
985
+ color: #000;
986
+ tab-size: 2;
987
+ }
988
+ pre.code a {
989
+ border-bottom: 1px dotted #bbf;
990
+ }
991
+ .docstring pre.code,
992
+ #filecontents pre.code,
993
+ .source_code pre {
994
+ font-family: monospace;
995
+ }
996
+ .docstring pre.code,
997
+ #filecontents pre.code {
998
+ display: block;
999
+ }
1000
+ .source_code .lines {
1001
+ padding-right: 12px;
1002
+ color: #555;
1003
+ text-align: right;
1004
+ }
1005
+ .docstring pre.code,
1006
+ #filecontents pre.code,
447
1007
  .tags pre.example {
448
- padding: 9px 14px;
449
- margin-top: 4px;
450
- border: 1px solid #e1e1e8;
451
- background: #f7f7f9;
452
- border-radius: 4px;
453
- font-size: 1em;
454
- overflow-x: auto;
455
- line-height: 1.2em;
456
- }
457
- pre.code { color: #000; tab-size: 2; }
458
- pre.code .info.file { color: #555; }
459
- pre.code .val { color: #036A07; }
1008
+ padding: 9px 14px;
1009
+ margin-top: 4px;
1010
+ border: 1px solid #e1e1e8;
1011
+ background: #f7f7f9;
1012
+ border-radius: 4px;
1013
+ font-size: 1em;
1014
+ overflow-x: auto;
1015
+ line-height: 1.2em;
1016
+ }
1017
+ pre.code .info.file {
1018
+ color: #555;
1019
+ }
1020
+ pre.code .val {
1021
+ color: #036a07;
1022
+ }
460
1023
  pre.code .tstring_content,
461
- pre.code .heredoc_beg, pre.code .heredoc_end,
462
- pre.code .qwords_beg, pre.code .qwords_end, pre.code .qwords_sep,
463
- pre.code .words_beg, pre.code .words_end, pre.code .words_sep,
464
- pre.code .qsymbols_beg, pre.code .qsymbols_end, pre.code .qsymbols_sep,
465
- pre.code .symbols_beg, pre.code .symbols_end, pre.code .symbols_sep,
466
- pre.code .tstring, pre.code .dstring { color: #036A07; }
467
- pre.code .fid, pre.code .rubyid_new, pre.code .rubyid_to_s,
468
- pre.code .rubyid_to_sym, pre.code .rubyid_to_f,
1024
+ pre.code .heredoc_beg,
1025
+ pre.code .heredoc_end,
1026
+ pre.code .qwords_beg,
1027
+ pre.code .qwords_end,
1028
+ pre.code .qwords_sep,
1029
+ pre.code .words_beg,
1030
+ pre.code .words_end,
1031
+ pre.code .words_sep,
1032
+ pre.code .qsymbols_beg,
1033
+ pre.code .qsymbols_end,
1034
+ pre.code .qsymbols_sep,
1035
+ pre.code .symbols_beg,
1036
+ pre.code .symbols_end,
1037
+ pre.code .symbols_sep,
1038
+ pre.code .tstring,
1039
+ pre.code .dstring {
1040
+ color: #036a07;
1041
+ }
1042
+ pre.code .fid,
1043
+ pre.code .rubyid_new,
1044
+ pre.code .rubyid_to_s,
1045
+ pre.code .rubyid_to_sym,
1046
+ pre.code .rubyid_to_f,
469
1047
  pre.code .dot + pre.code .id,
470
- pre.code .rubyid_to_i pre.code .rubyid_each { color: #0085FF; }
471
- pre.code .comment { color: #0066FF; }
472
- pre.code .const, pre.code .constant { color: #585CF6; }
1048
+ pre.code .rubyid_to_i pre.code .rubyid_each {
1049
+ color: #0085ff;
1050
+ }
1051
+ pre.code .comment {
1052
+ color: #0066ff;
1053
+ }
1054
+ pre.code .const,
1055
+ pre.code .constant {
1056
+ color: #585cf6;
1057
+ }
473
1058
  pre.code .label,
474
- pre.code .symbol { color: #C5060B; }
1059
+ pre.code .symbol {
1060
+ color: #c5060b;
1061
+ }
475
1062
  pre.code .kw,
476
1063
  pre.code .rubyid_require,
477
1064
  pre.code .rubyid_extend,
478
- pre.code .rubyid_include { color: #0000FF; }
479
- pre.code .ivar { color: #318495; }
1065
+ pre.code .rubyid_include {
1066
+ color: #0000ff;
1067
+ }
1068
+ pre.code .ivar {
1069
+ color: #318495;
1070
+ }
480
1071
  pre.code .gvar,
481
1072
  pre.code .rubyid_backref,
482
- pre.code .rubyid_nth_ref { color: #6D79DE; }
483
- pre.code .regexp, .dregexp { color: #036A07; }
484
- pre.code a { border-bottom: 1px dotted #bbf; }
485
- /* inline code */
486
- *:not(pre) > code {
487
- padding: 1px 3px 1px 3px;
488
- border: 1px solid #E1E1E8;
489
- background: #F7F7F9;
490
- border-radius: 4px;
1073
+ pre.code .rubyid_nth_ref {
1074
+ color: #6d79de;
1075
+ }
1076
+ pre.code .regexp,
1077
+ .dregexp {
1078
+ color: #036a07;
491
1079
  }
492
1080
 
493
1081
  /* Color fix for links */
494
- #content .summary_desc pre.code .id > .object_link a, /* identifier */
495
- #content .docstring pre.code .id > .object_link a { color: #0085FF; }
496
- #content .summary_desc pre.code .const > .object_link a, /* constant */
497
- #content .docstring pre.code .const > .object_link a { color: #585CF6; }
1082
+ #content .summary_desc pre.code .id > .object_link a /* identifier */,
1083
+ #content .docstring pre.code .id > .object_link a {
1084
+ color: #0085ff;
1085
+ }
1086
+ #content .summary_desc pre.code .const > .object_link a /* constant */,
1087
+ #content .docstring pre.code .const > .object_link a {
1088
+ color: #585cf6;
1089
+ }