activeadmin 1.0.0.pre5 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of activeadmin might be problematic. Click here for more details.

Files changed (155) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +27 -0
  3. data/.travis.yml +21 -23
  4. data/Appraisals +12 -74
  5. data/CHANGELOG.md +21 -5
  6. data/CONTRIBUTING.md +2 -2
  7. data/Gemfile +8 -9
  8. data/README.md +19 -56
  9. data/Rakefile +1 -1
  10. data/activeadmin.gemspec +4 -4
  11. data/app/assets/stylesheets/active_admin/_forms.scss +10 -0
  12. data/config/locales/ca.yml +1 -1
  13. data/config/locales/da.yml +44 -12
  14. data/config/locales/el.yml +1 -1
  15. data/config/locales/en.yml +2 -0
  16. data/config/locales/fr.yml +16 -2
  17. data/config/locales/ja.yml +1 -0
  18. data/config/locales/zh-CN.yml +4 -0
  19. data/docs/12-arbre-components.md +23 -0
  20. data/docs/14-gotchas.md +1 -1
  21. data/docs/2-resource-customization.md +2 -5
  22. data/docs/5-forms.md +19 -0
  23. data/docs/6-show-pages.md +0 -28
  24. data/docs/9-batch-actions.md +0 -1
  25. data/docs/CNAME +1 -1
  26. data/docs/_includes/head.html +4 -4
  27. data/docs/_includes/toc.html +2 -1
  28. data/docs/documentation.md +2 -2
  29. data/docs/index.html +1 -6
  30. data/docs/stylesheets/main.css +172 -219
  31. data/features/belongs_to.feature +5 -5
  32. data/features/comments/commenting.feature +0 -13
  33. data/features/create_another.feature +55 -0
  34. data/features/development_reloading.feature +2 -4
  35. data/features/edit_page.feature +6 -7
  36. data/features/favicon.feature +2 -2
  37. data/features/i18n.feature +1 -0
  38. data/features/index/filters.feature +18 -0
  39. data/features/index/format_as_csv.feature +3 -3
  40. data/features/index/formats.feature +22 -0
  41. data/features/index/index_as_table.feature +6 -6
  42. data/features/index/page_title.feature +1 -2
  43. data/features/menu.feature +20 -1
  44. data/features/new_page.feature +6 -8
  45. data/features/registering_assets.feature +4 -4
  46. data/features/registering_pages.feature +18 -0
  47. data/features/renamed_resource.feature +2 -4
  48. data/features/show/page_title.feature +1 -2
  49. data/features/step_definitions/attribute_steps.rb +1 -1
  50. data/features/step_definitions/configuration_steps.rb +2 -2
  51. data/features/step_definitions/format_steps.rb +4 -0
  52. data/features/step_definitions/index_scope_steps.rb +1 -1
  53. data/features/step_definitions/menu_steps.rb +2 -2
  54. data/features/step_definitions/user_steps.rb +1 -1
  55. data/features/step_definitions/web_steps.rb +6 -5
  56. data/features/sti_resource.feature +2 -2
  57. data/features/strong_parameters.feature +0 -4
  58. data/features/support/env.rb +5 -19
  59. data/features/support/paths.rb +6 -9
  60. data/gemfiles/rails_42.gemfile +15 -23
  61. data/gemfiles/rails_50.gemfile +15 -16
  62. data/gemfiles/rails_51.gemfile +45 -0
  63. data/lib/active_admin/application.rb +4 -0
  64. data/lib/active_admin/base_controller.rb +2 -7
  65. data/lib/active_admin/base_controller/menu.rb +1 -5
  66. data/lib/active_admin/csv_builder.rb +2 -2
  67. data/lib/active_admin/dependency.rb +4 -8
  68. data/lib/active_admin/devise.rb +1 -1
  69. data/lib/active_admin/error.rb +1 -1
  70. data/lib/active_admin/filters/active.rb +2 -10
  71. data/lib/active_admin/filters/resource_extension.rb +1 -10
  72. data/lib/active_admin/inputs/filters/date_range_input.rb +1 -1
  73. data/lib/active_admin/inputs/filters/select_input.rb +1 -2
  74. data/lib/active_admin/inputs/filters/text_input.rb +2 -2
  75. data/lib/active_admin/menu.rb +1 -1
  76. data/lib/active_admin/namespace.rb +14 -7
  77. data/lib/active_admin/orm/active_record/comments.rb +2 -7
  78. data/lib/active_admin/orm/active_record/comments/comment.rb +2 -12
  79. data/lib/active_admin/page.rb +5 -0
  80. data/lib/active_admin/page_controller.rb +1 -5
  81. data/lib/active_admin/resource.rb +28 -5
  82. data/lib/active_admin/resource/attributes.rb +44 -0
  83. data/lib/active_admin/resource/menu.rb +4 -1
  84. data/lib/active_admin/resource/routes.rb +2 -3
  85. data/lib/active_admin/resource_controller.rb +13 -0
  86. data/lib/active_admin/resource_controller/data_access.rb +18 -9
  87. data/lib/active_admin/resource_dsl.rb +21 -18
  88. data/lib/active_admin/version.rb +1 -1
  89. data/lib/active_admin/view_helpers/breadcrumb_helper.rb +1 -1
  90. data/lib/active_admin/view_helpers/display_helper.rb +10 -12
  91. data/lib/active_admin/view_helpers/download_format_links_helper.rb +12 -0
  92. data/lib/active_admin/view_helpers/fields_for.rb +1 -2
  93. data/lib/active_admin/view_helpers/form_helper.rb +1 -1
  94. data/lib/active_admin/views/components/active_admin_form.rb +28 -2
  95. data/lib/active_admin/views/components/paginated_collection.rb +3 -8
  96. data/lib/active_admin/views/components/table_for.rb +1 -1
  97. data/lib/active_admin/views/index_as_table.rb +2 -2
  98. data/lib/active_admin/views/pages/layout.rb +1 -1
  99. data/lib/active_admin/views/pages/show.rb +1 -1
  100. data/lib/bug_report_templates/rails_5_master.rb +1 -3
  101. data/lib/generators/active_admin/devise/devise_generator.rb +1 -1
  102. data/lib/generators/active_admin/install/templates/active_admin.rb.erb +7 -0
  103. data/lib/generators/active_admin/install/templates/admin_user.rb.erb +0 -2
  104. data/lib/generators/active_admin/install/templates/migrations/create_active_admin_comments.rb.erb +5 -7
  105. data/lib/generators/active_admin/resource/resource_generator.rb +1 -1
  106. data/lib/generators/active_admin/resource/templates/{admin.rb → admin.rb.erb} +0 -2
  107. data/lib/ransack_ext.rb +2 -2
  108. data/spec/rails_helper.rb +1 -19
  109. data/spec/requests/default_namespace_spec.rb +40 -8
  110. data/spec/support/active_admin_integration_spec_helper.rb +9 -2
  111. data/spec/support/rails_template.rb +17 -20
  112. data/spec/support/rails_template_with_data.rb +3 -9
  113. data/spec/support/templates/admin/stores.rb +1 -3
  114. data/spec/unit/application_spec.rb +19 -8
  115. data/spec/unit/belongs_to_spec.rb +6 -2
  116. data/spec/unit/comments_spec.rb +0 -19
  117. data/spec/unit/controller_filters_spec.rb +5 -5
  118. data/spec/unit/csv_builder_spec.rb +7 -4
  119. data/spec/unit/filters/active_spec.rb +1 -8
  120. data/spec/unit/filters/filter_form_builder_spec.rb +2 -3
  121. data/spec/unit/filters/resource_spec.rb +3 -4
  122. data/spec/unit/form_builder_spec.rb +39 -11
  123. data/spec/unit/namespace/register_page_spec.rb +1 -1
  124. data/spec/unit/pretty_format_spec.rb +39 -35
  125. data/spec/unit/resource/attributes_spec.rb +50 -0
  126. data/spec/unit/resource/includes_spec.rb +1 -1
  127. data/spec/unit/resource/ordering_spec.rb +1 -1
  128. data/spec/unit/resource/routes_spec.rb +2 -2
  129. data/spec/unit/resource_controller/data_access_spec.rb +51 -10
  130. data/spec/unit/resource_controller/decorators_spec.rb +2 -2
  131. data/spec/unit/resource_controller/sidebars_spec.rb +3 -3
  132. data/spec/unit/resource_controller_spec.rb +16 -5
  133. data/spec/unit/resource_spec.rb +12 -38
  134. data/spec/unit/routing_spec.rb +2 -2
  135. data/spec/unit/view_helpers/breadcrumbs_spec.rb +36 -1
  136. data/spec/unit/view_helpers/display_helper_spec.rb +17 -2
  137. data/spec/unit/view_helpers/fields_for_spec.rb +1 -1
  138. data/spec/unit/view_helpers/form_helper_spec.rb +3 -3
  139. data/spec/unit/view_helpers/method_or_proc_helper_spec.rb +2 -2
  140. data/spec/unit/views/components/attributes_table_spec.rb +2 -2
  141. data/spec/unit/views/components/index_list_spec.rb +1 -1
  142. data/spec/unit/views/components/paginated_collection_spec.rb +4 -4
  143. data/spec/unit/views/components/table_for_spec.rb +1 -1
  144. data/spec/unit/views/components/unsupported_browser_spec.rb +1 -1
  145. data/spec/unit/views/pages/form_spec.rb +4 -1
  146. data/spec/unit/views/pages/index_spec.rb +1 -1
  147. data/spec/unit/views/pages/show_spec.rb +2 -3
  148. data/tasks/lint.rake +8 -0
  149. metadata +22 -29
  150. data/features/step_definitions/symbol_leak_steps.rb +0 -3
  151. data/features/symbol_leak.feature +0 -35
  152. data/gemfiles/rails_32.gemfile +0 -54
  153. data/gemfiles/rails_40.gemfile +0 -53
  154. data/gemfiles/rails_41.gemfile +0 -53
  155. data/spec/support/deferred_garbage_collection.rb +0 -19
@@ -2,13 +2,8 @@
2
2
  ---
3
3
  <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
4
4
  <html>
5
- <head>
6
- <title></title>
7
- </head>
5
+ {% include head.html %}
8
6
  <body>
9
- <p>
10
- {% include head.html %}
11
- </p>
12
7
  <div id="wrapper">
13
8
  {% include top-menu.html %}
14
9
  <div id="main-content">
@@ -1,4 +1,3 @@
1
- /* line 17, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
2
1
  html, body, div, span, applet, object, iframe,
3
2
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
4
3
  a, abbr, acronym, address, big, cite, code,
@@ -20,51 +19,43 @@ time, mark, audio, video {
20
19
  vertical-align: baseline;
21
20
  }
22
21
 
23
- /* line 20, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
24
22
  body {
25
23
  line-height: 1;
26
24
  }
27
25
 
28
- /* line 22, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
29
26
  ol, ul {
30
27
  list-style: none;
31
28
  }
32
29
 
33
- /* line 24, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
34
30
  table {
35
31
  border-collapse: collapse;
36
32
  border-spacing: 0;
37
33
  }
38
34
 
39
- /* line 26, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
40
35
  caption, th, td {
41
36
  text-align: left;
42
37
  font-weight: normal;
43
38
  vertical-align: middle;
44
39
  }
45
40
 
46
- /* line 28, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
47
41
  q, blockquote {
48
42
  quotes: none;
49
43
  }
50
- /* line 101, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
44
+
51
45
  q:before, q:after, blockquote:before, blockquote:after {
52
46
  content: "";
53
47
  content: none;
54
48
  }
55
49
 
56
- /* line 30, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
57
50
  a img {
58
51
  border: none;
59
52
  }
60
53
 
61
- /* line 115, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
62
54
  article, aside, details, figcaption, figure,
63
55
  footer, header, hgroup, menu, nav, section {
64
56
  display: block;
65
57
  }
66
58
 
67
- /* line 1, ../_sass/_highlight.scss */
68
59
  #dsl {
69
60
  /* Comment */
70
61
  /* Error */
@@ -125,250 +116,249 @@ footer, header, hgroup, menu, nav, section {
125
116
  /* Name.Variable.Instance */
126
117
  /* Literal.Number.Integer.Long */
127
118
  }
128
- /* line 2, ../_sass/_highlight.scss */
119
+
129
120
  #dsl .highlight .hll {
130
121
  background-color: #49483e;
131
122
  }
132
- /* line 3, ../_sass/_highlight.scss */
123
+
133
124
  #dsl .highlight {
134
125
  background: #272822;
135
126
  color: #f8f8f2;
136
127
  }
137
- /* line 4, ../_sass/_highlight.scss */
128
+
138
129
  #dsl .highlight .c {
139
130
  color: #75715e;
140
131
  }
141
- /* line 5, ../_sass/_highlight.scss */
132
+
142
133
  #dsl .highlight .err {
143
134
  color: #960050;
144
135
  background-color: #1e0010;
145
136
  }
146
- /* line 6, ../_sass/_highlight.scss */
137
+
147
138
  #dsl .highlight .k {
148
139
  color: #66d9ef;
149
140
  }
150
- /* line 7, ../_sass/_highlight.scss */
141
+
151
142
  #dsl .highlight .l {
152
143
  color: #ae81ff;
153
144
  }
154
- /* line 8, ../_sass/_highlight.scss */
145
+
155
146
  #dsl .highlight .n {
156
147
  color: #f8f8f2;
157
148
  }
158
- /* line 9, ../_sass/_highlight.scss */
149
+
159
150
  #dsl .highlight .o {
160
151
  color: #f92672;
161
152
  }
162
- /* line 10, ../_sass/_highlight.scss */
153
+
163
154
  #dsl .highlight .p {
164
155
  color: #f8f8f2;
165
156
  }
166
- /* line 11, ../_sass/_highlight.scss */
157
+
167
158
  #dsl .highlight .cm {
168
159
  color: #75715e;
169
160
  }
170
- /* line 12, ../_sass/_highlight.scss */
161
+
171
162
  #dsl .highlight .cp {
172
163
  color: #75715e;
173
164
  }
174
- /* line 13, ../_sass/_highlight.scss */
165
+
175
166
  #dsl .highlight .c1 {
176
167
  color: #75715e;
177
168
  }
178
- /* line 14, ../_sass/_highlight.scss */
169
+
179
170
  #dsl .highlight .cs {
180
171
  color: #75715e;
181
172
  }
182
- /* line 15, ../_sass/_highlight.scss */
173
+
183
174
  #dsl .highlight .ge {
184
175
  font-style: italic;
185
176
  }
186
- /* line 16, ../_sass/_highlight.scss */
177
+
187
178
  #dsl .highlight .gs {
188
179
  font-weight: bold;
189
180
  }
190
- /* line 17, ../_sass/_highlight.scss */
181
+
191
182
  #dsl .highlight .kc {
192
183
  color: #66d9ef;
193
184
  }
194
- /* line 18, ../_sass/_highlight.scss */
185
+
195
186
  #dsl .highlight .kd {
196
187
  color: #66d9ef;
197
188
  }
198
- /* line 19, ../_sass/_highlight.scss */
189
+
199
190
  #dsl .highlight .kn {
200
191
  color: #f92672;
201
192
  }
202
- /* line 20, ../_sass/_highlight.scss */
193
+
203
194
  #dsl .highlight .kp {
204
195
  color: #66d9ef;
205
196
  }
206
- /* line 21, ../_sass/_highlight.scss */
197
+
207
198
  #dsl .highlight .kr {
208
199
  color: #66d9ef;
209
200
  }
210
- /* line 22, ../_sass/_highlight.scss */
201
+
211
202
  #dsl .highlight .kt {
212
203
  color: #66d9ef;
213
204
  }
214
- /* line 23, ../_sass/_highlight.scss */
205
+
215
206
  #dsl .highlight .ld {
216
207
  color: #e6db74;
217
208
  }
218
- /* line 24, ../_sass/_highlight.scss */
209
+
219
210
  #dsl .highlight .m {
220
211
  color: #ae81ff;
221
212
  }
222
- /* line 25, ../_sass/_highlight.scss */
213
+
223
214
  #dsl .highlight .s {
224
215
  color: #e6db74;
225
216
  }
226
- /* line 26, ../_sass/_highlight.scss */
217
+
227
218
  #dsl .highlight .na {
228
219
  color: #a6e22e;
229
220
  }
230
- /* line 27, ../_sass/_highlight.scss */
221
+
231
222
  #dsl .highlight .nb {
232
223
  color: #f8f8f2;
233
224
  }
234
- /* line 28, ../_sass/_highlight.scss */
225
+
235
226
  #dsl .highlight .nc {
236
227
  color: #a6e22e;
237
228
  }
238
- /* line 29, ../_sass/_highlight.scss */
229
+
239
230
  #dsl .highlight .no {
240
231
  color: #66d9ef;
241
232
  }
242
- /* line 30, ../_sass/_highlight.scss */
233
+
243
234
  #dsl .highlight .nd {
244
235
  color: #a6e22e;
245
236
  }
246
- /* line 31, ../_sass/_highlight.scss */
237
+
247
238
  #dsl .highlight .ni {
248
239
  color: #f8f8f2;
249
240
  }
250
- /* line 32, ../_sass/_highlight.scss */
241
+
251
242
  #dsl .highlight .ne {
252
243
  color: #a6e22e;
253
244
  }
254
- /* line 33, ../_sass/_highlight.scss */
245
+
255
246
  #dsl .highlight .nf {
256
247
  color: #a6e22e;
257
248
  }
258
- /* line 34, ../_sass/_highlight.scss */
249
+
259
250
  #dsl .highlight .nl {
260
251
  color: #f8f8f2;
261
252
  }
262
- /* line 35, ../_sass/_highlight.scss */
253
+
263
254
  #dsl .highlight .nn {
264
255
  color: #f8f8f2;
265
256
  }
266
- /* line 36, ../_sass/_highlight.scss */
257
+
267
258
  #dsl .highlight .nx {
268
259
  color: #a6e22e;
269
260
  }
270
- /* line 37, ../_sass/_highlight.scss */
261
+
271
262
  #dsl .highlight .py {
272
263
  color: #f8f8f2;
273
264
  }
274
- /* line 38, ../_sass/_highlight.scss */
265
+
275
266
  #dsl .highlight .nt {
276
267
  color: #f92672;
277
268
  }
278
- /* line 39, ../_sass/_highlight.scss */
269
+
279
270
  #dsl .highlight .nv {
280
271
  color: #f8f8f2;
281
272
  }
282
- /* line 40, ../_sass/_highlight.scss */
273
+
283
274
  #dsl .highlight .ow {
284
275
  color: #f92672;
285
276
  }
286
- /* line 41, ../_sass/_highlight.scss */
277
+
287
278
  #dsl .highlight .w {
288
279
  color: #f8f8f2;
289
280
  }
290
- /* line 42, ../_sass/_highlight.scss */
281
+
291
282
  #dsl .highlight .mf {
292
283
  color: #ae81ff;
293
284
  }
294
- /* line 43, ../_sass/_highlight.scss */
285
+
295
286
  #dsl .highlight .mh {
296
287
  color: #ae81ff;
297
288
  }
298
- /* line 44, ../_sass/_highlight.scss */
289
+
299
290
  #dsl .highlight .mi {
300
291
  color: #ae81ff;
301
292
  }
302
- /* line 45, ../_sass/_highlight.scss */
293
+
303
294
  #dsl .highlight .mo {
304
295
  color: #ae81ff;
305
296
  }
306
- /* line 46, ../_sass/_highlight.scss */
297
+
307
298
  #dsl .highlight .sb {
308
299
  color: #e6db74;
309
300
  }
310
- /* line 47, ../_sass/_highlight.scss */
301
+
311
302
  #dsl .highlight .sc {
312
303
  color: #e6db74;
313
304
  }
314
- /* line 48, ../_sass/_highlight.scss */
305
+
315
306
  #dsl .highlight .sd {
316
307
  color: #e6db74;
317
308
  }
318
- /* line 49, ../_sass/_highlight.scss */
309
+
319
310
  #dsl .highlight .s2 {
320
311
  color: #e6db74;
321
312
  }
322
- /* line 50, ../_sass/_highlight.scss */
313
+
323
314
  #dsl .highlight .se {
324
315
  color: #ae81ff;
325
316
  }
326
- /* line 51, ../_sass/_highlight.scss */
317
+
327
318
  #dsl .highlight .sh {
328
319
  color: #e6db74;
329
320
  }
330
- /* line 52, ../_sass/_highlight.scss */
321
+
331
322
  #dsl .highlight .si {
332
323
  color: #e6db74;
333
324
  }
334
- /* line 53, ../_sass/_highlight.scss */
325
+
335
326
  #dsl .highlight .sx {
336
327
  color: #e6db74;
337
328
  }
338
- /* line 54, ../_sass/_highlight.scss */
329
+
339
330
  #dsl .highlight .sr {
340
331
  color: #e6db74;
341
332
  }
342
- /* line 55, ../_sass/_highlight.scss */
333
+
343
334
  #dsl .highlight .s1 {
344
335
  color: #e6db74;
345
336
  }
346
- /* line 56, ../_sass/_highlight.scss */
337
+
347
338
  #dsl .highlight .ss {
348
339
  color: #AE81FF;
349
340
  }
350
- /* line 57, ../_sass/_highlight.scss */
341
+
351
342
  #dsl .highlight .bp {
352
343
  color: #f8f8f2;
353
344
  }
354
- /* line 58, ../_sass/_highlight.scss */
345
+
355
346
  #dsl .highlight .vc {
356
347
  color: #f8f8f2;
357
348
  }
358
- /* line 59, ../_sass/_highlight.scss */
349
+
359
350
  #dsl .highlight .vg {
360
351
  color: #f8f8f2;
361
352
  }
362
- /* line 60, ../_sass/_highlight.scss */
353
+
363
354
  #dsl .highlight .vi {
364
355
  color: #f8f8f2;
365
356
  }
366
- /* line 61, ../_sass/_highlight.scss */
357
+
367
358
  #dsl .highlight .il {
368
359
  color: #ae81ff;
369
360
  }
370
361
 
371
- /* line 33, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
372
362
  body {
373
363
  line-height: 1.5;
374
364
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
@@ -376,68 +366,60 @@ body {
376
366
  font-size: 75%;
377
367
  }
378
368
 
379
- /* line 51, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
380
369
  h1, h2, h3, h4, h5, h6 {
381
370
  font-weight: normal;
382
371
  color: #222222;
383
372
  }
384
- /* line 52, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
373
+
385
374
  h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {
386
375
  margin: 0;
387
376
  }
388
377
 
389
- /* line 53, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
390
378
  h1 {
391
379
  font-size: 3em;
392
380
  line-height: 1;
393
381
  margin-bottom: 0.50em;
394
382
  }
395
383
 
396
- /* line 54, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
397
384
  h2 {
398
385
  font-size: 2em;
399
386
  margin-bottom: 0.75em;
400
387
  }
401
388
 
402
- /* line 55, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
403
389
  h3 {
404
390
  font-size: 1.5em;
405
391
  line-height: 1;
406
392
  margin-bottom: 1.00em;
407
393
  }
408
394
 
409
- /* line 56, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
410
395
  h4 {
411
396
  font-size: 1.2em;
412
397
  line-height: 1.25;
413
398
  margin-bottom: 1.25em;
414
399
  }
415
400
 
416
- /* line 57, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
417
401
  h5 {
418
402
  font-size: 1em;
419
403
  font-weight: bold;
420
404
  margin-bottom: 1.50em;
421
405
  }
422
406
 
423
- /* line 58, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
424
407
  h6 {
425
408
  font-size: 1em;
426
409
  font-weight: bold;
427
410
  }
428
411
 
429
- /* line 59, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
430
412
  p {
431
413
  margin: 0 0 1.5em;
432
414
  }
433
- /* line 60, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
415
+
434
416
  p .left {
435
417
  display: inline;
436
418
  float: left;
437
419
  margin: 1.5em 1.5em 1.5em 0;
438
420
  padding: 0;
439
421
  }
440
- /* line 61, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
422
+
441
423
  p .right {
442
424
  display: inline;
443
425
  float: right;
@@ -445,161 +427,135 @@ p .right {
445
427
  padding: 0;
446
428
  }
447
429
 
448
- /* line 62, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
449
430
  a {
450
431
  text-decoration: underline;
451
432
  color: #0066cc;
452
433
  }
453
- /* line 18, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */
434
+
454
435
  a:visited {
455
436
  color: #004c99;
456
437
  }
457
- /* line 21, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */
438
+
458
439
  a:focus {
459
440
  color: #0099ff;
460
441
  }
461
- /* line 24, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */
442
+
462
443
  a:hover {
463
444
  color: #0099ff;
464
445
  }
465
- /* line 27, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */
446
+
466
447
  a:active {
467
448
  color: #bf00ff;
468
449
  }
469
450
 
470
- /* line 63, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
471
451
  blockquote {
472
452
  margin: 1.5em;
473
453
  color: #666666;
474
454
  font-style: italic;
475
455
  }
476
456
 
477
- /* line 64, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
478
457
  strong, dfn {
479
458
  font-weight: bold;
480
459
  }
481
460
 
482
- /* line 65, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
483
461
  em, dfn {
484
462
  font-style: italic;
485
463
  }
486
464
 
487
- /* line 66, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
488
465
  sup, sub {
489
466
  line-height: 0;
490
467
  }
491
468
 
492
- /* line 67, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
493
469
  abbr, acronym {
494
470
  border-bottom: 1px dotted #666666;
495
471
  }
496
472
 
497
- /* line 68, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
498
473
  address {
499
474
  margin: 0 0 1.5em;
500
475
  font-style: italic;
501
476
  }
502
477
 
503
- /* line 69, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
504
478
  del {
505
479
  color: #666666;
506
480
  }
507
481
 
508
- /* line 70, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
509
482
  pre {
510
483
  margin: 1.5em 0;
511
484
  white-space: pre;
512
485
  }
513
486
 
514
- /* line 71, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
515
487
  pre, code, tt {
516
488
  font: 1em "andale mono", "lucida console", monospace;
517
489
  line-height: 1.5;
518
490
  }
519
491
 
520
- /* line 72, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
521
492
  li ul, li ol {
522
493
  margin: 0;
523
494
  }
524
495
 
525
- /* line 73, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
526
496
  ul, ol {
527
497
  margin: 0 1.5em 1.5em 0;
528
498
  padding-left: 1.5em;
529
499
  }
530
500
 
531
- /* line 74, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
532
501
  ul {
533
502
  list-style-type: disc;
534
503
  }
535
504
 
536
- /* line 75, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
537
505
  ol {
538
506
  list-style-type: decimal;
539
507
  }
540
508
 
541
- /* line 76, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
542
509
  dl {
543
510
  margin: 0 0 1.5em 0;
544
511
  }
545
- /* line 77, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
512
+
546
513
  dl dt {
547
514
  font-weight: bold;
548
515
  }
549
516
 
550
- /* line 78, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
551
517
  dd {
552
518
  margin-left: 1.5em;
553
519
  }
554
520
 
555
- /* line 79, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
556
521
  table {
557
522
  margin-bottom: 1.4em;
558
523
  width: 100%;
559
524
  }
560
525
 
561
- /* line 80, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
562
526
  th {
563
527
  font-weight: bold;
564
528
  }
565
529
 
566
- /* line 81, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
567
530
  thead th {
568
531
  background: #c3d9ff;
569
532
  }
570
533
 
571
- /* line 82, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
572
534
  th, td, caption {
573
535
  padding: 4px 10px 4px 5px;
574
536
  }
575
537
 
576
- /* line 85, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
577
538
  table.striped tr:nth-child(even) td,
578
539
  table tr.even td {
579
540
  background: #e5ecf9;
580
541
  }
581
542
 
582
- /* line 86, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
583
543
  tfoot {
584
544
  font-style: italic;
585
545
  }
586
546
 
587
- /* line 87, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
588
547
  caption {
589
548
  background: #eeeeee;
590
549
  }
591
550
 
592
- /* line 88, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
593
551
  .quiet {
594
552
  color: #666666;
595
553
  }
596
554
 
597
- /* line 89, ../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.11.1/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
598
555
  .loud {
599
556
  color: #111111;
600
557
  }
601
558
 
602
- /* line 11, ../_sass/main.scss */
603
559
  body {
604
560
  background: #f6f4f1;
605
561
  color: #676767;
@@ -609,39 +565,39 @@ body {
609
565
  margin: 25px auto;
610
566
  font-family: 'Georgia';
611
567
  }
612
- /* line 20, ../_sass/main.scss */
568
+
613
569
  body #wrapper {
614
570
  position: relative;
615
571
  }
616
- /* line 22, ../_sass/main.scss */
572
+
617
573
  body a, body a:hover, body a:link, body a:visited {
618
574
  color: #407985;
619
575
  }
620
- /* line 26, ../_sass/main.scss */
576
+
621
577
  body h1, body h2, body h3, body h4, body h5, body h6 {
622
578
  color: #595959;
623
579
  font-family: 'Yanone Kaffeesatz', 'Helvetica Neue', Arial, Helvetica, sans-serif;
624
580
  }
625
- /* line 31, ../_sass/main.scss */
581
+
626
582
  body h1 a {
627
583
  background: url("../images/activeadmin.png") 0 0 no-repeat;
628
584
  display: block;
629
585
  width: 257px;
630
586
  height: 55px;
631
587
  }
632
- /* line 36, ../_sass/main.scss */
588
+
633
589
  body h1 a span {
634
590
  display: none;
635
591
  }
636
- /* line 39, ../_sass/main.scss */
592
+
637
593
  body #header {
638
594
  margin: 40px 0;
639
595
  }
640
- /* line 43, ../_sass/main.scss */
596
+
641
597
  body .clear {
642
598
  clear: both;
643
599
  }
644
- /* line 45, ../_sass/main.scss */
600
+
645
601
  body .intro {
646
602
  color: #595959;
647
603
  font-family: 'Yanone Kaffeesatz', 'Helvetica Neue', Arial, Helvetica, sans-serif;
@@ -652,11 +608,11 @@ body .intro {
652
608
  padding-top: 35px;
653
609
  background: url("../images/divider.png") 0 0 repeat-x;
654
610
  }
655
- /* line 52, ../_sass/main.scss */
611
+
656
612
  body .intro strong {
657
613
  font-weight: 400;
658
614
  }
659
- /* line 57, ../_sass/main.scss */
615
+
660
616
  body h2 {
661
617
  margin: 50px 0 10px 0;
662
618
  padding-top: 35px;
@@ -665,14 +621,14 @@ body h2 {
665
621
  font-weight: 200;
666
622
  line-height: 105%;
667
623
  }
668
- /* line 66, ../_sass/main.scss */
624
+
669
625
  body h3 {
670
626
  margin-top: 30px;
671
627
  margin-bottom: 10px;
672
628
  font-size: 1.7em;
673
629
  font-weight: 300;
674
630
  }
675
- /* line 73, ../_sass/main.scss */
631
+
676
632
  body #nav {
677
633
  font-family: 'Yanone Kaffeesatz', 'Helvetica Neue', Arial, Helvetica, sans-serif;
678
634
  font-weight: 400;
@@ -683,13 +639,13 @@ body #nav {
683
639
  top: 20px;
684
640
  text-align: right;
685
641
  }
686
- /* line 82, ../_sass/main.scss */
642
+
687
643
  body #nav a {
688
644
  text-decoration: none;
689
645
  color: #8b9091;
690
646
  margin-left: 20px;
691
647
  }
692
- /* line 90, ../_sass/main.scss */
648
+
693
649
  body #features {
694
650
  padding-top: 0;
695
651
  clear: both;
@@ -702,33 +658,33 @@ body #features {
702
658
  font-weight: 300;
703
659
  font-family: 'Yanone Kaffeesatz', 'Helvetica Neue', Arial, Helvetica, sans-serif;
704
660
  }
705
- /* line 103, ../_sass/main.scss */
661
+
706
662
  body #features #features-left {
707
663
  float: left;
708
664
  width: 150px;
709
665
  margin-left: -150px;
710
666
  }
711
- /* line 104, ../_sass/main.scss */
667
+
712
668
  body #features #features-right {
713
669
  float: right;
714
670
  width: 150px;
715
671
  margin-right: -150px;
716
672
  }
717
- /* line 106, ../_sass/main.scss */
673
+
718
674
  body #features h3 {
719
675
  font-size: 1.2em;
720
676
  padding-bottom: 0;
721
677
  margin-bottom: 5px;
722
678
  }
723
- /* line 110, ../_sass/main.scss */
679
+
724
680
  body #features h3.first {
725
681
  margin-top: 10px;
726
682
  }
727
- /* line 115, ../_sass/main.scss */
683
+
728
684
  body.with-sidebar {
729
685
  width: 976px;
730
686
  }
731
- /* line 117, ../_sass/main.scss */
687
+
732
688
  body .toc {
733
689
  font-family: Helvetica, Arial, sans-serif;
734
690
  padding-top: 35px;
@@ -737,40 +693,40 @@ body .toc {
737
693
  font-size: 0.9em;
738
694
  background: url("../images/divider.png") top left repeat-x;
739
695
  }
740
- /* line 124, ../_sass/main.scss */
696
+
741
697
  body .toc ol li {
742
698
  list-style: none;
743
699
  }
744
- /* line 127, ../_sass/main.scss */
700
+
745
701
  body .toc a, body .toc a:link, body .toc a:hover, body .toc a:visited {
746
702
  text-decoration: none;
747
703
  color: #595959;
748
704
  }
749
- /* line 128, ../_sass/main.scss */
705
+
750
706
  body .toc ol.level-1 > li {
751
707
  font-size: 1.0em;
752
708
  font-weight: bold;
753
709
  margin-top: 20px;
754
710
  }
755
- /* line 133, ../_sass/main.scss */
711
+
756
712
  body .toc ol.level-1 > ol {
757
713
  padding-left: 0;
758
714
  font-size: 0.95em;
759
715
  margin: 0;
760
716
  }
761
- /* line 134, ../_sass/main.scss */
717
+
762
718
  body .toc ol.level-2 > ol {
763
719
  display: none;
764
720
  }
765
- /* line 136, ../_sass/main.scss */
721
+
766
722
  body .toc-content {
767
723
  width: 676px;
768
724
  }
769
- /* line 138, ../_sass/main.scss */
725
+
770
726
  body #dsl {
771
727
  margin-top: 20px;
772
728
  }
773
- /* line 140, ../_sass/main.scss */
729
+
774
730
  body #dsl .highlight {
775
731
  font-size: 0.82em;
776
732
  background: #292929 url("../images/code-header.png") 0 0 no-repeat;
@@ -780,29 +736,29 @@ body #dsl .highlight {
780
736
  -o-box-shadow: 0 8px 20px #444444;
781
737
  box-shadow: 0 8px 20px #444444;
782
738
  }
783
- /* line 148, ../_sass/main.scss */
739
+
784
740
  body .getting-started {
785
741
  font-size: 2em;
786
742
  text-align: center;
787
743
  }
788
- /* line 151, ../_sass/main.scss */
744
+
789
745
  body .getting-started a {
790
746
  margin-right: 15px;
791
747
  display: block;
792
748
  }
793
- /* line 154, ../_sass/main.scss */
749
+
794
750
  body .getting-started-heading {
795
751
  text-align: center;
796
752
  }
797
- /* line 156, ../_sass/main.scss */
753
+
798
754
  body .left {
799
755
  float: left;
800
756
  }
801
- /* line 157, ../_sass/main.scss */
757
+
802
758
  body .right {
803
759
  float: right;
804
760
  }
805
- /* line 159, ../_sass/main.scss */
761
+
806
762
  body .highlight {
807
763
  background-color: #333;
808
764
  font-family: "Droid Sans Mono", Monaco, monospace;
@@ -816,13 +772,13 @@ body .highlight {
816
772
  border-radius: 2px;
817
773
  margin-bottom: 1.5em;
818
774
  }
819
- /* line 165, ../_sass/main.scss */
775
+
820
776
  body .highlight > pre, body .highlight code, body .highlight span {
821
777
  line-height: 1.3em;
822
778
  margin: 0;
823
779
  padding: 0;
824
780
  }
825
- /* line 169, ../_sass/main.scss */
781
+
826
782
  body #footer {
827
783
  margin-top: 50px;
828
784
  margin-bottom: 20px;
@@ -831,22 +787,21 @@ body #footer {
831
787
  padding-top: 20px;
832
788
  font-size: 0.9em;
833
789
  }
834
- /* line 179, ../_sass/main.scss */
790
+
835
791
  body .post .post-date, body .post .post-meta {
836
792
  font-size: 0.7em;
837
793
  }
838
- /* line 180, ../_sass/main.scss */
794
+
839
795
  body .post .post-date {
840
796
  display: inline-block;
841
797
  width: 100px;
842
798
  }
843
- /* line 181, ../_sass/main.scss */
799
+
844
800
  body .post .post-meta {
845
801
  font-size: 0.6em;
846
802
  padding-left: 40px;
847
803
  }
848
804
 
849
- /* line 185, ../_sass/main.scss */
850
805
  span.breadcrumb {
851
806
  display: block;
852
807
  font-size: 45%;
@@ -855,12 +810,10 @@ span.breadcrumb {
855
810
  padding: 0;
856
811
  }
857
812
 
858
- /* line 193, ../_sass/main.scss */
859
813
  h2.in-docs {
860
814
  font-weight: 400;
861
815
  }
862
816
 
863
- /* line 198, ../_sass/main.scss */
864
817
  .docs-content {
865
818
  /* Comment */
866
819
  /* Error */
@@ -922,278 +875,278 @@ h2.in-docs {
922
875
  /* Name.Variable.Instance */
923
876
  /* Literal.Number.Integer.Long */
924
877
  }
925
- /* line 200, ../_sass/main.scss */
878
+
926
879
  .docs-content h3 {
927
880
  margin-top: 50px;
928
881
  margin-bottom: 10px;
929
882
  font-size: 2em;
930
883
  font-weight: 400;
931
884
  }
932
- /* line 207, ../_sass/main.scss */
885
+
933
886
  .docs-content h4 {
934
887
  font-size: 1.5em;
935
888
  font-weight: 400;
936
889
  margin-bottom: 0;
937
890
  }
938
- /* line 214, ../_sass/main.scss */
891
+
939
892
  .docs-content p, .docs-content li {
940
893
  font-family: Helvetica, Arial, sans-serif;
941
894
  font-size: 0.9em;
942
895
  }
943
- /* line 220, ../_sass/main.scss */
896
+
944
897
  .docs-content .highlight {
945
898
  font-size: 0.85em;
946
899
  background-color: #ece8e1;
947
900
  color: #000000;
948
901
  }
949
- /* line 226, ../_sass/main.scss */
902
+
950
903
  .docs-content .highlight .hll {
951
904
  background-color: #ffffcc;
952
905
  }
953
- /* line 227, ../_sass/main.scss */
906
+
954
907
  .docs-content .highlight .c {
955
908
  color: #aaaaaa;
956
909
  font-style: italic;
957
910
  }
958
- /* line 228, ../_sass/main.scss */
911
+
959
912
  .docs-content .highlight .err {
960
913
  color: #F00000;
961
914
  background-color: #F0A0A0;
962
915
  }
963
- /* line 229, ../_sass/main.scss */
916
+
964
917
  .docs-content .highlight .k {
965
918
  color: #0000aa;
966
919
  }
967
- /* line 230, ../_sass/main.scss */
920
+
968
921
  .docs-content .highlight .cm {
969
922
  color: #aaaaaa;
970
923
  font-style: italic;
971
924
  }
972
- /* line 231, ../_sass/main.scss */
925
+
973
926
  .docs-content .highlight .cp {
974
927
  color: #4c8317;
975
928
  }
976
- /* line 232, ../_sass/main.scss */
929
+
977
930
  .docs-content .highlight .c1 {
978
931
  color: #aaaaaa;
979
932
  font-style: italic;
980
933
  }
981
- /* line 233, ../_sass/main.scss */
934
+
982
935
  .docs-content .highlight .cs {
983
936
  color: #0000aa;
984
937
  font-style: italic;
985
938
  }
986
- /* line 234, ../_sass/main.scss */
939
+
987
940
  .docs-content .highlight .gd {
988
941
  color: #aa0000;
989
942
  }
990
- /* line 235, ../_sass/main.scss */
943
+
991
944
  .docs-content .highlight .ge {
992
945
  font-style: italic;
993
946
  }
994
- /* line 236, ../_sass/main.scss */
947
+
995
948
  .docs-content .highlight .gr {
996
949
  color: #aa0000;
997
950
  }
998
- /* line 237, ../_sass/main.scss */
951
+
999
952
  .docs-content .highlight .gh {
1000
953
  color: #000080;
1001
954
  font-weight: bold;
1002
955
  }
1003
- /* line 238, ../_sass/main.scss */
956
+
1004
957
  .docs-content .highlight .gi {
1005
958
  color: #00aa00;
1006
959
  }
1007
- /* line 239, ../_sass/main.scss */
960
+
1008
961
  .docs-content .highlight .go {
1009
962
  color: #888888;
1010
963
  }
1011
- /* line 240, ../_sass/main.scss */
964
+
1012
965
  .docs-content .highlight .gp {
1013
966
  color: #555555;
1014
967
  }
1015
- /* line 241, ../_sass/main.scss */
968
+
1016
969
  .docs-content .highlight .gs {
1017
970
  font-weight: bold;
1018
971
  }
1019
- /* line 242, ../_sass/main.scss */
972
+
1020
973
  .docs-content .highlight .gu {
1021
974
  color: #800080;
1022
975
  font-weight: bold;
1023
976
  }
1024
- /* line 243, ../_sass/main.scss */
977
+
1025
978
  .docs-content .highlight .gt {
1026
979
  color: #aa0000;
1027
980
  }
1028
- /* line 244, ../_sass/main.scss */
981
+
1029
982
  .docs-content .highlight .kc {
1030
983
  color: #0000aa;
1031
984
  }
1032
- /* line 245, ../_sass/main.scss */
985
+
1033
986
  .docs-content .highlight .kd {
1034
987
  color: #0000aa;
1035
988
  }
1036
- /* line 246, ../_sass/main.scss */
989
+
1037
990
  .docs-content .highlight .kn {
1038
991
  color: #0000aa;
1039
992
  }
1040
- /* line 247, ../_sass/main.scss */
993
+
1041
994
  .docs-content .highlight .kp {
1042
995
  color: #0000aa;
1043
996
  }
1044
- /* line 248, ../_sass/main.scss */
997
+
1045
998
  .docs-content .highlight .kr {
1046
999
  color: #0000aa;
1047
1000
  }
1048
- /* line 249, ../_sass/main.scss */
1001
+
1049
1002
  .docs-content .highlight .kt {
1050
1003
  color: #00aaaa;
1051
1004
  }
1052
- /* line 250, ../_sass/main.scss */
1005
+
1053
1006
  .docs-content .highlight .m {
1054
1007
  color: #009999;
1055
1008
  }
1056
- /* line 251, ../_sass/main.scss */
1009
+
1057
1010
  .docs-content .highlight .n {
1058
1011
  color: #000000;
1059
1012
  }
1060
- /* line 252, ../_sass/main.scss */
1013
+
1061
1014
  .docs-content .highlight .p {
1062
1015
  color: #000000;
1063
1016
  }
1064
- /* line 253, ../_sass/main.scss */
1017
+
1065
1018
  .docs-content .highlight .s {
1066
1019
  color: #aa5500;
1067
1020
  }
1068
- /* line 254, ../_sass/main.scss */
1021
+
1069
1022
  .docs-content .highlight .na {
1070
1023
  color: #1e90ff;
1071
1024
  }
1072
- /* line 255, ../_sass/main.scss */
1025
+
1073
1026
  .docs-content .highlight .nb {
1074
1027
  color: #00aaaa;
1075
1028
  }
1076
- /* line 256, ../_sass/main.scss */
1029
+
1077
1030
  .docs-content .highlight .nc {
1078
1031
  color: #00aa00;
1079
1032
  text-decoration: underline;
1080
1033
  }
1081
- /* line 257, ../_sass/main.scss */
1034
+
1082
1035
  .docs-content .highlight .no {
1083
1036
  color: #aa0000;
1084
1037
  }
1085
- /* line 258, ../_sass/main.scss */
1038
+
1086
1039
  .docs-content .highlight .nd {
1087
1040
  color: #888888;
1088
1041
  }
1089
- /* line 259, ../_sass/main.scss */
1042
+
1090
1043
  .docs-content .highlight .ni {
1091
1044
  color: #800000;
1092
1045
  font-weight: bold;
1093
1046
  }
1094
- /* line 260, ../_sass/main.scss */
1047
+
1095
1048
  .docs-content .highlight .nf {
1096
1049
  color: #00aa00;
1097
1050
  }
1098
- /* line 261, ../_sass/main.scss */
1051
+
1099
1052
  .docs-content .highlight .nn {
1100
1053
  color: #00aaaa;
1101
1054
  text-decoration: underline;
1102
1055
  }
1103
- /* line 262, ../_sass/main.scss */
1056
+
1104
1057
  .docs-content .highlight .nt {
1105
1058
  color: #1e90ff;
1106
1059
  font-weight: bold;
1107
1060
  }
1108
- /* line 263, ../_sass/main.scss */
1061
+
1109
1062
  .docs-content .highlight .nv {
1110
1063
  color: #aa0000;
1111
1064
  }
1112
- /* line 264, ../_sass/main.scss */
1065
+
1113
1066
  .docs-content .highlight .ow {
1114
1067
  color: #0000aa;
1115
1068
  }
1116
- /* line 265, ../_sass/main.scss */
1069
+
1117
1070
  .docs-content .highlight .w {
1118
1071
  color: #bbbbbb;
1119
1072
  }
1120
- /* line 266, ../_sass/main.scss */
1073
+
1121
1074
  .docs-content .highlight .mf {
1122
1075
  color: #009999;
1123
1076
  }
1124
- /* line 267, ../_sass/main.scss */
1077
+
1125
1078
  .docs-content .highlight .mh {
1126
1079
  color: #009999;
1127
1080
  }
1128
- /* line 268, ../_sass/main.scss */
1081
+
1129
1082
  .docs-content .highlight .mi {
1130
1083
  color: #009999;
1131
1084
  }
1132
- /* line 269, ../_sass/main.scss */
1085
+
1133
1086
  .docs-content .highlight .mo {
1134
1087
  color: #009999;
1135
1088
  }
1136
- /* line 270, ../_sass/main.scss */
1089
+
1137
1090
  .docs-content .highlight .sb {
1138
1091
  color: #aa5500;
1139
1092
  }
1140
- /* line 271, ../_sass/main.scss */
1093
+
1141
1094
  .docs-content .highlight .sc {
1142
1095
  color: #aa5500;
1143
1096
  }
1144
- /* line 272, ../_sass/main.scss */
1097
+
1145
1098
  .docs-content .highlight .sd {
1146
1099
  color: #aa5500;
1147
1100
  }
1148
- /* line 273, ../_sass/main.scss */
1101
+
1149
1102
  .docs-content .highlight .s2 {
1150
1103
  color: #aa5500;
1151
1104
  }
1152
- /* line 274, ../_sass/main.scss */
1105
+
1153
1106
  .docs-content .highlight .se {
1154
1107
  color: #aa5500;
1155
1108
  }
1156
- /* line 275, ../_sass/main.scss */
1109
+
1157
1110
  .docs-content .highlight .sh {
1158
1111
  color: #aa5500;
1159
1112
  }
1160
- /* line 276, ../_sass/main.scss */
1113
+
1161
1114
  .docs-content .highlight .si {
1162
1115
  color: #aa5500;
1163
1116
  }
1164
- /* line 277, ../_sass/main.scss */
1117
+
1165
1118
  .docs-content .highlight .sx {
1166
1119
  color: #aa5500;
1167
1120
  }
1168
- /* line 278, ../_sass/main.scss */
1121
+
1169
1122
  .docs-content .highlight .sr {
1170
1123
  color: #009999;
1171
1124
  }
1172
- /* line 279, ../_sass/main.scss */
1125
+
1173
1126
  .docs-content .highlight .s1 {
1174
1127
  color: #aa5500;
1175
1128
  }
1176
- /* line 280, ../_sass/main.scss */
1129
+
1177
1130
  .docs-content .highlight .ss {
1178
1131
  color: #0000aa;
1179
1132
  }
1180
- /* line 281, ../_sass/main.scss */
1133
+
1181
1134
  .docs-content .highlight .bp {
1182
1135
  color: #00aaaa;
1183
1136
  }
1184
- /* line 282, ../_sass/main.scss */
1137
+
1185
1138
  .docs-content .highlight .vc {
1186
1139
  color: #aa0000;
1187
1140
  }
1188
- /* line 283, ../_sass/main.scss */
1141
+
1189
1142
  .docs-content .highlight .vg {
1190
1143
  color: #aa0000;
1191
1144
  }
1192
- /* line 284, ../_sass/main.scss */
1145
+
1193
1146
  .docs-content .highlight .vi {
1194
1147
  color: #aa0000;
1195
1148
  }
1196
- /* line 285, ../_sass/main.scss */
1149
+
1197
1150
  .docs-content .highlight .il {
1198
1151
  color: #009999;
1199
1152
  }