rest-ftp-daemon 0.400.0 → 0.410.0.pre.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (80) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +26 -6
  3. data/Rakefile +5 -3
  4. data/bin/rest-ftp-daemon +2 -1
  5. data/config.ru +8 -2
  6. data/lib/rest-ftp-daemon.rb +10 -2
  7. data/lib/rest-ftp-daemon/api/debug.rb +17 -5
  8. data/lib/rest-ftp-daemon/api/{job_presenter.rb → entities/job.rb} +25 -2
  9. data/lib/rest-ftp-daemon/api/entities/options.rb +15 -0
  10. data/lib/rest-ftp-daemon/api/jobs.rb +46 -13
  11. data/lib/rest-ftp-daemon/api/root-real.rb +80 -0
  12. data/lib/rest-ftp-daemon/api/root-test.rb +69 -0
  13. data/lib/rest-ftp-daemon/api/root.rb +21 -5
  14. data/lib/rest-ftp-daemon/constants.rb +18 -1
  15. data/lib/rest-ftp-daemon/counters.rb +0 -3
  16. data/lib/rest-ftp-daemon/exceptions.rb +16 -12
  17. data/lib/rest-ftp-daemon/helpers/api.rb +3 -3
  18. data/lib/rest-ftp-daemon/helpers/common.rb +12 -5
  19. data/lib/rest-ftp-daemon/helpers/views.rb +41 -11
  20. data/lib/rest-ftp-daemon/job.rb +118 -420
  21. data/lib/rest-ftp-daemon/job_queue.rb +34 -5
  22. data/lib/rest-ftp-daemon/jobs/dummy.rb +20 -0
  23. data/lib/rest-ftp-daemon/jobs/transfer.rb +319 -0
  24. data/lib/rest-ftp-daemon/jobs/video.rb +107 -0
  25. data/lib/rest-ftp-daemon/location.rb +125 -0
  26. data/lib/rest-ftp-daemon/path.rb +3 -0
  27. data/lib/rest-ftp-daemon/remote_ftp.rb +2 -2
  28. data/lib/rest-ftp-daemon/remote_sftp.rb +2 -2
  29. data/lib/rest-ftp-daemon/static/config.json +411 -0
  30. data/lib/rest-ftp-daemon/static/css/bootstrap.min.css +14 -0
  31. data/lib/rest-ftp-daemon/static/css/{bootstrap.css → bootstrap.old.css} +0 -0
  32. data/lib/rest-ftp-daemon/static/fonts/glyphicons-halflings-regular.eot +0 -0
  33. data/lib/rest-ftp-daemon/static/fonts/glyphicons-halflings-regular.svg +288 -0
  34. data/lib/rest-ftp-daemon/static/fonts/glyphicons-halflings-regular.ttf +0 -0
  35. data/lib/rest-ftp-daemon/static/fonts/glyphicons-halflings-regular.woff +0 -0
  36. data/lib/rest-ftp-daemon/static/fonts/glyphicons-halflings-regular.woff2 +0 -0
  37. data/lib/rest-ftp-daemon/static/swagger.html +83 -0
  38. data/lib/rest-ftp-daemon/static/swagger/css/print.css +1362 -0
  39. data/lib/rest-ftp-daemon/static/swagger/css/reset.css +125 -0
  40. data/lib/rest-ftp-daemon/static/swagger/css/screen.css +1489 -0
  41. data/lib/rest-ftp-daemon/static/swagger/css/style.css +250 -0
  42. data/lib/rest-ftp-daemon/static/swagger/css/typography.css +14 -0
  43. data/lib/rest-ftp-daemon/static/swagger/fonts/DroidSans-Bold.ttf +0 -0
  44. data/lib/rest-ftp-daemon/static/swagger/fonts/DroidSans.ttf +0 -0
  45. data/lib/rest-ftp-daemon/static/swagger/images/collapse.gif +0 -0
  46. data/lib/rest-ftp-daemon/static/swagger/images/expand.gif +0 -0
  47. data/lib/rest-ftp-daemon/static/swagger/images/explorer_icons.png +0 -0
  48. data/lib/rest-ftp-daemon/static/swagger/images/favicon-16x16.png +0 -0
  49. data/lib/rest-ftp-daemon/static/swagger/images/favicon-32x32.png +0 -0
  50. data/lib/rest-ftp-daemon/static/swagger/images/favicon.ico +0 -0
  51. data/lib/rest-ftp-daemon/static/swagger/images/logo_small.png +0 -0
  52. data/lib/rest-ftp-daemon/static/swagger/images/pet_store_api.png +0 -0
  53. data/lib/rest-ftp-daemon/static/swagger/images/throbber.gif +0 -0
  54. data/lib/rest-ftp-daemon/static/swagger/images/wordnik_api.png +0 -0
  55. data/lib/rest-ftp-daemon/static/swagger/lib/backbone-min.js +15 -0
  56. data/lib/rest-ftp-daemon/static/swagger/lib/es5-shim.js +2065 -0
  57. data/lib/rest-ftp-daemon/static/swagger/lib/handlebars-4.0.5.js +4608 -0
  58. data/lib/rest-ftp-daemon/static/swagger/lib/highlight.9.1.0.pack.js +2 -0
  59. data/lib/rest-ftp-daemon/static/swagger/lib/highlight.9.1.0.pack_extended.js +34 -0
  60. data/lib/rest-ftp-daemon/static/swagger/lib/jquery-1.8.0.min.js +2 -0
  61. data/lib/rest-ftp-daemon/static/swagger/lib/jquery.ba-bbq.min.js +18 -0
  62. data/lib/rest-ftp-daemon/static/swagger/lib/jquery.slideto.min.js +1 -0
  63. data/lib/rest-ftp-daemon/static/swagger/lib/jquery.wiggle.min.js +8 -0
  64. data/lib/rest-ftp-daemon/static/swagger/lib/js-yaml.min.js +3 -0
  65. data/lib/rest-ftp-daemon/static/swagger/lib/jsoneditor.min.js +11 -0
  66. data/lib/rest-ftp-daemon/static/swagger/lib/lodash.min.js +102 -0
  67. data/lib/rest-ftp-daemon/static/swagger/lib/marked.js +1272 -0
  68. data/lib/rest-ftp-daemon/static/swagger/lib/object-assign-pollyfill.js +23 -0
  69. data/lib/rest-ftp-daemon/static/swagger/lib/swagger-oauth.js +347 -0
  70. data/lib/rest-ftp-daemon/static/swagger/lib/swagger-ui.min.js +10 -0
  71. data/lib/rest-ftp-daemon/uri.rb +9 -1
  72. data/lib/rest-ftp-daemon/views/dashboard.haml +1 -1
  73. data/lib/rest-ftp-daemon/views/dashboard_footer.haml +6 -3
  74. data/lib/rest-ftp-daemon/views/dashboard_jobs.haml +3 -3
  75. data/lib/rest-ftp-daemon/views/dashboard_table.haml +25 -20
  76. data/lib/rest-ftp-daemon/workers/transfer.rb +14 -0
  77. data/rest-ftp-daemon.gemspec +14 -4
  78. data/spec/rest-ftp-daemon/features/swagger_spec.rb +24 -0
  79. data/spec/spec_helper.rb +4 -4
  80. metadata +119 -14
@@ -0,0 +1,125 @@
1
+ /* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 */
2
+ html,
3
+ body,
4
+ div,
5
+ span,
6
+ applet,
7
+ object,
8
+ iframe,
9
+ h1,
10
+ h2,
11
+ h3,
12
+ h4,
13
+ h5,
14
+ h6,
15
+ p,
16
+ blockquote,
17
+ pre,
18
+ a,
19
+ abbr,
20
+ acronym,
21
+ address,
22
+ big,
23
+ cite,
24
+ code,
25
+ del,
26
+ dfn,
27
+ em,
28
+ img,
29
+ ins,
30
+ kbd,
31
+ q,
32
+ s,
33
+ samp,
34
+ small,
35
+ strike,
36
+ strong,
37
+ sub,
38
+ sup,
39
+ tt,
40
+ var,
41
+ b,
42
+ u,
43
+ i,
44
+ center,
45
+ dl,
46
+ dt,
47
+ dd,
48
+ ol,
49
+ ul,
50
+ li,
51
+ fieldset,
52
+ form,
53
+ label,
54
+ legend,
55
+ table,
56
+ caption,
57
+ tbody,
58
+ tfoot,
59
+ thead,
60
+ tr,
61
+ th,
62
+ td,
63
+ article,
64
+ aside,
65
+ canvas,
66
+ details,
67
+ embed,
68
+ figure,
69
+ figcaption,
70
+ footer,
71
+ header,
72
+ hgroup,
73
+ menu,
74
+ nav,
75
+ output,
76
+ ruby,
77
+ section,
78
+ summary,
79
+ time,
80
+ mark,
81
+ audio,
82
+ video {
83
+ margin: 0;
84
+ padding: 0;
85
+ border: 0;
86
+ font-size: 100%;
87
+ font: inherit;
88
+ vertical-align: baseline;
89
+ }
90
+ /* HTML5 display-role reset for older browsers */
91
+ article,
92
+ aside,
93
+ details,
94
+ figcaption,
95
+ figure,
96
+ footer,
97
+ header,
98
+ hgroup,
99
+ menu,
100
+ nav,
101
+ section {
102
+ display: block;
103
+ }
104
+ body {
105
+ line-height: 1;
106
+ }
107
+ ol,
108
+ ul {
109
+ list-style: none;
110
+ }
111
+ blockquote,
112
+ q {
113
+ quotes: none;
114
+ }
115
+ blockquote:before,
116
+ blockquote:after,
117
+ q:before,
118
+ q:after {
119
+ content: '';
120
+ content: none;
121
+ }
122
+ table {
123
+ border-collapse: collapse;
124
+ border-spacing: 0;
125
+ }
@@ -0,0 +1,1489 @@
1
+ /* Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org> */
2
+ .swagger-section pre code {
3
+ display: block;
4
+ padding: 0.5em;
5
+ background: #F0F0F0;
6
+ }
7
+ .swagger-section pre code,
8
+ .swagger-section pre .subst,
9
+ .swagger-section pre .tag .title,
10
+ .swagger-section pre .lisp .title,
11
+ .swagger-section pre .clojure .built_in,
12
+ .swagger-section pre .nginx .title {
13
+ color: black;
14
+ }
15
+ .swagger-section pre .string,
16
+ .swagger-section pre .title,
17
+ .swagger-section pre .constant,
18
+ .swagger-section pre .parent,
19
+ .swagger-section pre .tag .value,
20
+ .swagger-section pre .rules .value,
21
+ .swagger-section pre .rules .value .number,
22
+ .swagger-section pre .preprocessor,
23
+ .swagger-section pre .ruby .symbol,
24
+ .swagger-section pre .ruby .symbol .string,
25
+ .swagger-section pre .aggregate,
26
+ .swagger-section pre .template_tag,
27
+ .swagger-section pre .django .variable,
28
+ .swagger-section pre .smalltalk .class,
29
+ .swagger-section pre .addition,
30
+ .swagger-section pre .flow,
31
+ .swagger-section pre .stream,
32
+ .swagger-section pre .bash .variable,
33
+ .swagger-section pre .apache .tag,
34
+ .swagger-section pre .apache .cbracket,
35
+ .swagger-section pre .tex .command,
36
+ .swagger-section pre .tex .special,
37
+ .swagger-section pre .erlang_repl .function_or_atom,
38
+ .swagger-section pre .markdown .header {
39
+ color: #800;
40
+ }
41
+ .swagger-section pre .comment,
42
+ .swagger-section pre .annotation,
43
+ .swagger-section pre .template_comment,
44
+ .swagger-section pre .diff .header,
45
+ .swagger-section pre .chunk,
46
+ .swagger-section pre .markdown .blockquote {
47
+ color: #888;
48
+ }
49
+ .swagger-section pre .number,
50
+ .swagger-section pre .date,
51
+ .swagger-section pre .regexp,
52
+ .swagger-section pre .literal,
53
+ .swagger-section pre .smalltalk .symbol,
54
+ .swagger-section pre .smalltalk .char,
55
+ .swagger-section pre .go .constant,
56
+ .swagger-section pre .change,
57
+ .swagger-section pre .markdown .bullet,
58
+ .swagger-section pre .markdown .link_url {
59
+ color: #080;
60
+ }
61
+ .swagger-section pre .label,
62
+ .swagger-section pre .javadoc,
63
+ .swagger-section pre .ruby .string,
64
+ .swagger-section pre .decorator,
65
+ .swagger-section pre .filter .argument,
66
+ .swagger-section pre .localvars,
67
+ .swagger-section pre .array,
68
+ .swagger-section pre .attr_selector,
69
+ .swagger-section pre .important,
70
+ .swagger-section pre .pseudo,
71
+ .swagger-section pre .pi,
72
+ .swagger-section pre .doctype,
73
+ .swagger-section pre .deletion,
74
+ .swagger-section pre .envvar,
75
+ .swagger-section pre .shebang,
76
+ .swagger-section pre .apache .sqbracket,
77
+ .swagger-section pre .nginx .built_in,
78
+ .swagger-section pre .tex .formula,
79
+ .swagger-section pre .erlang_repl .reserved,
80
+ .swagger-section pre .prompt,
81
+ .swagger-section pre .markdown .link_label,
82
+ .swagger-section pre .vhdl .attribute,
83
+ .swagger-section pre .clojure .attribute,
84
+ .swagger-section pre .coffeescript .property {
85
+ color: #88F;
86
+ }
87
+ .swagger-section pre .keyword,
88
+ .swagger-section pre .id,
89
+ .swagger-section pre .phpdoc,
90
+ .swagger-section pre .title,
91
+ .swagger-section pre .built_in,
92
+ .swagger-section pre .aggregate,
93
+ .swagger-section pre .css .tag,
94
+ .swagger-section pre .javadoctag,
95
+ .swagger-section pre .phpdoc,
96
+ .swagger-section pre .yardoctag,
97
+ .swagger-section pre .smalltalk .class,
98
+ .swagger-section pre .winutils,
99
+ .swagger-section pre .bash .variable,
100
+ .swagger-section pre .apache .tag,
101
+ .swagger-section pre .go .typename,
102
+ .swagger-section pre .tex .command,
103
+ .swagger-section pre .markdown .strong,
104
+ .swagger-section pre .request,
105
+ .swagger-section pre .status {
106
+ font-weight: bold;
107
+ }
108
+ .swagger-section pre .markdown .emphasis {
109
+ font-style: italic;
110
+ }
111
+ .swagger-section pre .nginx .built_in {
112
+ font-weight: normal;
113
+ }
114
+ .swagger-section pre .coffeescript .javascript,
115
+ .swagger-section pre .javascript .xml,
116
+ .swagger-section pre .tex .formula,
117
+ .swagger-section pre .xml .javascript,
118
+ .swagger-section pre .xml .vbscript,
119
+ .swagger-section pre .xml .css,
120
+ .swagger-section pre .xml .cdata {
121
+ opacity: 0.5;
122
+ }
123
+ .swagger-section .hljs {
124
+ display: block;
125
+ overflow-x: auto;
126
+ padding: 0.5em;
127
+ background: #F0F0F0;
128
+ }
129
+ .swagger-section .hljs,
130
+ .swagger-section .hljs-subst {
131
+ color: #444;
132
+ }
133
+ .swagger-section .hljs-keyword,
134
+ .swagger-section .hljs-attribute,
135
+ .swagger-section .hljs-selector-tag,
136
+ .swagger-section .hljs-meta-keyword,
137
+ .swagger-section .hljs-doctag,
138
+ .swagger-section .hljs-name {
139
+ font-weight: bold;
140
+ }
141
+ .swagger-section .hljs-built_in,
142
+ .swagger-section .hljs-literal,
143
+ .swagger-section .hljs-bullet,
144
+ .swagger-section .hljs-code,
145
+ .swagger-section .hljs-addition {
146
+ color: #1F811F;
147
+ }
148
+ .swagger-section .hljs-regexp,
149
+ .swagger-section .hljs-symbol,
150
+ .swagger-section .hljs-variable,
151
+ .swagger-section .hljs-template-variable,
152
+ .swagger-section .hljs-link,
153
+ .swagger-section .hljs-selector-attr,
154
+ .swagger-section .hljs-selector-pseudo {
155
+ color: #BC6060;
156
+ }
157
+ .swagger-section .hljs-type,
158
+ .swagger-section .hljs-string,
159
+ .swagger-section .hljs-number,
160
+ .swagger-section .hljs-selector-id,
161
+ .swagger-section .hljs-selector-class,
162
+ .swagger-section .hljs-quote,
163
+ .swagger-section .hljs-template-tag,
164
+ .swagger-section .hljs-deletion {
165
+ color: #880000;
166
+ }
167
+ .swagger-section .hljs-title,
168
+ .swagger-section .hljs-section {
169
+ color: #880000;
170
+ font-weight: bold;
171
+ }
172
+ .swagger-section .hljs-comment {
173
+ color: #888888;
174
+ }
175
+ .swagger-section .hljs-meta {
176
+ color: #2B6EA1;
177
+ }
178
+ .swagger-section .hljs-emphasis {
179
+ font-style: italic;
180
+ }
181
+ .swagger-section .hljs-strong {
182
+ font-weight: bold;
183
+ }
184
+ .swagger-section .swagger-ui-wrap {
185
+ line-height: 1;
186
+ font-family: "Droid Sans", sans-serif;
187
+ min-width: 760px;
188
+ max-width: 960px;
189
+ margin-left: auto;
190
+ margin-right: auto;
191
+ /* JSONEditor specific styling */
192
+ }
193
+ .swagger-section .swagger-ui-wrap b,
194
+ .swagger-section .swagger-ui-wrap strong {
195
+ font-family: "Droid Sans", sans-serif;
196
+ font-weight: bold;
197
+ }
198
+ .swagger-section .swagger-ui-wrap q,
199
+ .swagger-section .swagger-ui-wrap blockquote {
200
+ quotes: none;
201
+ }
202
+ .swagger-section .swagger-ui-wrap p {
203
+ line-height: 1.4em;
204
+ padding: 0 0 10px;
205
+ color: #333333;
206
+ }
207
+ .swagger-section .swagger-ui-wrap q:before,
208
+ .swagger-section .swagger-ui-wrap q:after,
209
+ .swagger-section .swagger-ui-wrap blockquote:before,
210
+ .swagger-section .swagger-ui-wrap blockquote:after {
211
+ content: none;
212
+ }
213
+ .swagger-section .swagger-ui-wrap .heading_with_menu h1,
214
+ .swagger-section .swagger-ui-wrap .heading_with_menu h2,
215
+ .swagger-section .swagger-ui-wrap .heading_with_menu h3,
216
+ .swagger-section .swagger-ui-wrap .heading_with_menu h4,
217
+ .swagger-section .swagger-ui-wrap .heading_with_menu h5,
218
+ .swagger-section .swagger-ui-wrap .heading_with_menu h6 {
219
+ display: block;
220
+ clear: none;
221
+ float: left;
222
+ -moz-box-sizing: border-box;
223
+ -webkit-box-sizing: border-box;
224
+ -ms-box-sizing: border-box;
225
+ box-sizing: border-box;
226
+ width: 60%;
227
+ }
228
+ .swagger-section .swagger-ui-wrap table {
229
+ border-collapse: collapse;
230
+ border-spacing: 0;
231
+ }
232
+ .swagger-section .swagger-ui-wrap table thead tr th {
233
+ padding: 5px;
234
+ font-size: 0.9em;
235
+ color: #666666;
236
+ border-bottom: 1px solid #999999;
237
+ }
238
+ .swagger-section .swagger-ui-wrap table tbody tr:last-child td {
239
+ border-bottom: none;
240
+ }
241
+ .swagger-section .swagger-ui-wrap table tbody tr.offset {
242
+ background-color: #f0f0f0;
243
+ }
244
+ .swagger-section .swagger-ui-wrap table tbody tr td {
245
+ padding: 6px;
246
+ font-size: 0.9em;
247
+ border-bottom: 1px solid #cccccc;
248
+ vertical-align: top;
249
+ line-height: 1.3em;
250
+ }
251
+ .swagger-section .swagger-ui-wrap ol {
252
+ margin: 0px 0 10px;
253
+ padding: 0 0 0 18px;
254
+ list-style-type: decimal;
255
+ }
256
+ .swagger-section .swagger-ui-wrap ol li {
257
+ padding: 5px 0px;
258
+ font-size: 0.9em;
259
+ color: #333333;
260
+ }
261
+ .swagger-section .swagger-ui-wrap ol,
262
+ .swagger-section .swagger-ui-wrap ul {
263
+ list-style: none;
264
+ }
265
+ .swagger-section .swagger-ui-wrap h1 a,
266
+ .swagger-section .swagger-ui-wrap h2 a,
267
+ .swagger-section .swagger-ui-wrap h3 a,
268
+ .swagger-section .swagger-ui-wrap h4 a,
269
+ .swagger-section .swagger-ui-wrap h5 a,
270
+ .swagger-section .swagger-ui-wrap h6 a {
271
+ text-decoration: none;
272
+ }
273
+ .swagger-section .swagger-ui-wrap h1 a:hover,
274
+ .swagger-section .swagger-ui-wrap h2 a:hover,
275
+ .swagger-section .swagger-ui-wrap h3 a:hover,
276
+ .swagger-section .swagger-ui-wrap h4 a:hover,
277
+ .swagger-section .swagger-ui-wrap h5 a:hover,
278
+ .swagger-section .swagger-ui-wrap h6 a:hover {
279
+ text-decoration: underline;
280
+ }
281
+ .swagger-section .swagger-ui-wrap h1 span.divider,
282
+ .swagger-section .swagger-ui-wrap h2 span.divider,
283
+ .swagger-section .swagger-ui-wrap h3 span.divider,
284
+ .swagger-section .swagger-ui-wrap h4 span.divider,
285
+ .swagger-section .swagger-ui-wrap h5 span.divider,
286
+ .swagger-section .swagger-ui-wrap h6 span.divider {
287
+ color: #aaaaaa;
288
+ }
289
+ .swagger-section .swagger-ui-wrap a {
290
+ color: #547f00;
291
+ }
292
+ .swagger-section .swagger-ui-wrap a img {
293
+ border: none;
294
+ }
295
+ .swagger-section .swagger-ui-wrap article,
296
+ .swagger-section .swagger-ui-wrap aside,
297
+ .swagger-section .swagger-ui-wrap details,
298
+ .swagger-section .swagger-ui-wrap figcaption,
299
+ .swagger-section .swagger-ui-wrap figure,
300
+ .swagger-section .swagger-ui-wrap footer,
301
+ .swagger-section .swagger-ui-wrap header,
302
+ .swagger-section .swagger-ui-wrap hgroup,
303
+ .swagger-section .swagger-ui-wrap menu,
304
+ .swagger-section .swagger-ui-wrap nav,
305
+ .swagger-section .swagger-ui-wrap section,
306
+ .swagger-section .swagger-ui-wrap summary {
307
+ display: block;
308
+ }
309
+ .swagger-section .swagger-ui-wrap pre {
310
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
311
+ background-color: #fcf6db;
312
+ border: 1px solid #e5e0c6;
313
+ padding: 10px;
314
+ }
315
+ .swagger-section .swagger-ui-wrap pre code {
316
+ line-height: 1.6em;
317
+ background: none;
318
+ }
319
+ .swagger-section .swagger-ui-wrap .content > .content-type > div > label {
320
+ clear: both;
321
+ display: block;
322
+ color: #0F6AB4;
323
+ font-size: 1.1em;
324
+ margin: 0;
325
+ padding: 15px 0 5px;
326
+ }
327
+ .swagger-section .swagger-ui-wrap .content pre {
328
+ font-size: 12px;
329
+ margin-top: 5px;
330
+ padding: 5px;
331
+ }
332
+ .swagger-section .swagger-ui-wrap .icon-btn {
333
+ cursor: pointer;
334
+ }
335
+ .swagger-section .swagger-ui-wrap .info_title {
336
+ padding-bottom: 10px;
337
+ font-weight: bold;
338
+ font-size: 25px;
339
+ }
340
+ .swagger-section .swagger-ui-wrap .footer {
341
+ margin-top: 20px;
342
+ }
343
+ .swagger-section .swagger-ui-wrap p.big,
344
+ .swagger-section .swagger-ui-wrap div.big p {
345
+ font-size: 1em;
346
+ margin-bottom: 10px;
347
+ }
348
+ .swagger-section .swagger-ui-wrap form.fullwidth ol li.string input,
349
+ .swagger-section .swagger-ui-wrap form.fullwidth ol li.url input,
350
+ .swagger-section .swagger-ui-wrap form.fullwidth ol li.text textarea,
351
+ .swagger-section .swagger-ui-wrap form.fullwidth ol li.numeric input {
352
+ width: 500px !important;
353
+ }
354
+ .swagger-section .swagger-ui-wrap .info_license {
355
+ padding-bottom: 5px;
356
+ }
357
+ .swagger-section .swagger-ui-wrap .info_tos {
358
+ padding-bottom: 5px;
359
+ }
360
+ .swagger-section .swagger-ui-wrap .message-fail {
361
+ color: #cc0000;
362
+ }
363
+ .swagger-section .swagger-ui-wrap .info_url {
364
+ padding-bottom: 5px;
365
+ }
366
+ .swagger-section .swagger-ui-wrap .info_email {
367
+ padding-bottom: 5px;
368
+ }
369
+ .swagger-section .swagger-ui-wrap .info_name {
370
+ padding-bottom: 5px;
371
+ }
372
+ .swagger-section .swagger-ui-wrap .info_description {
373
+ padding-bottom: 10px;
374
+ font-size: 15px;
375
+ }
376
+ .swagger-section .swagger-ui-wrap .markdown ol li,
377
+ .swagger-section .swagger-ui-wrap .markdown ul li {
378
+ padding: 3px 0px;
379
+ line-height: 1.4em;
380
+ color: #333333;
381
+ }
382
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.string input,
383
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.url input,
384
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.numeric input {
385
+ display: block;
386
+ padding: 4px;
387
+ width: auto;
388
+ clear: both;
389
+ }
390
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.string input.title,
391
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.url input.title,
392
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.numeric input.title {
393
+ font-size: 1.3em;
394
+ }
395
+ .swagger-section .swagger-ui-wrap table.fullwidth {
396
+ width: 100%;
397
+ }
398
+ .swagger-section .swagger-ui-wrap .model-signature {
399
+ font-family: "Droid Sans", sans-serif;
400
+ font-size: 1em;
401
+ line-height: 1.5em;
402
+ }
403
+ .swagger-section .swagger-ui-wrap .model-signature .signature-nav a {
404
+ text-decoration: none;
405
+ color: #AAA;
406
+ }
407
+ .swagger-section .swagger-ui-wrap .model-signature .signature-nav a:hover {
408
+ text-decoration: underline;
409
+ color: black;
410
+ }
411
+ .swagger-section .swagger-ui-wrap .model-signature .signature-nav .selected {
412
+ color: black;
413
+ text-decoration: none;
414
+ }
415
+ .swagger-section .swagger-ui-wrap .model-signature .propType {
416
+ color: #5555aa;
417
+ }
418
+ .swagger-section .swagger-ui-wrap .model-signature pre:hover {
419
+ background-color: #ffffdd;
420
+ }
421
+ .swagger-section .swagger-ui-wrap .model-signature pre {
422
+ font-size: .85em;
423
+ line-height: 1.2em;
424
+ overflow: auto;
425
+ max-height: 200px;
426
+ cursor: pointer;
427
+ }
428
+ .swagger-section .swagger-ui-wrap .model-signature ul.signature-nav {
429
+ display: block;
430
+ min-width: 230px;
431
+ margin: 0;
432
+ padding: 0;
433
+ }
434
+ .swagger-section .swagger-ui-wrap .model-signature ul.signature-nav li:last-child {
435
+ padding-right: 0;
436
+ border-right: none;
437
+ }
438
+ .swagger-section .swagger-ui-wrap .model-signature ul.signature-nav li {
439
+ float: left;
440
+ margin: 0 5px 5px 0;
441
+ padding: 2px 5px 2px 0;
442
+ border-right: 1px solid #ddd;
443
+ }
444
+ .swagger-section .swagger-ui-wrap .model-signature .propOpt {
445
+ color: #555;
446
+ }
447
+ .swagger-section .swagger-ui-wrap .model-signature .snippet small {
448
+ font-size: 0.75em;
449
+ }
450
+ .swagger-section .swagger-ui-wrap .model-signature .propOptKey {
451
+ font-style: italic;
452
+ }
453
+ .swagger-section .swagger-ui-wrap .model-signature .description .strong {
454
+ font-weight: bold;
455
+ color: #000;
456
+ font-size: .9em;
457
+ }
458
+ .swagger-section .swagger-ui-wrap .model-signature .description div {
459
+ font-size: 0.9em;
460
+ line-height: 1.5em;
461
+ margin-left: 1em;
462
+ }
463
+ .swagger-section .swagger-ui-wrap .model-signature .description .stronger {
464
+ font-weight: bold;
465
+ color: #000;
466
+ }
467
+ .swagger-section .swagger-ui-wrap .model-signature .description .propWrap .optionsWrapper {
468
+ border-spacing: 0;
469
+ position: absolute;
470
+ background-color: #ffffff;
471
+ border: 1px solid #bbbbbb;
472
+ display: none;
473
+ font-size: 11px;
474
+ max-width: 400px;
475
+ line-height: 30px;
476
+ color: black;
477
+ padding: 5px;
478
+ margin-left: 10px;
479
+ }
480
+ .swagger-section .swagger-ui-wrap .model-signature .description .propWrap .optionsWrapper th {
481
+ text-align: center;
482
+ background-color: #eeeeee;
483
+ border: 1px solid #bbbbbb;
484
+ font-size: 11px;
485
+ color: #666666;
486
+ font-weight: bold;
487
+ padding: 5px;
488
+ line-height: 15px;
489
+ }
490
+ .swagger-section .swagger-ui-wrap .model-signature .description .propWrap .optionsWrapper .optionName {
491
+ font-weight: bold;
492
+ }
493
+ .swagger-section .swagger-ui-wrap .model-signature .description .propDesc.markdown > p:first-child,
494
+ .swagger-section .swagger-ui-wrap .model-signature .description .propDesc.markdown > p:last-child {
495
+ display: inline;
496
+ }
497
+ .swagger-section .swagger-ui-wrap .model-signature .description .propDesc.markdown > p:not(:first-child):before {
498
+ display: block;
499
+ content: '';
500
+ }
501
+ .swagger-section .swagger-ui-wrap .model-signature .description span:last-of-type.propDesc.markdown > p:only-child {
502
+ margin-right: -3px;
503
+ }
504
+ .swagger-section .swagger-ui-wrap .model-signature .propName {
505
+ font-weight: bold;
506
+ }
507
+ .swagger-section .swagger-ui-wrap .model-signature .signature-container {
508
+ clear: both;
509
+ }
510
+ .swagger-section .swagger-ui-wrap .body-textarea {
511
+ width: 300px;
512
+ height: 100px;
513
+ border: 1px solid #aaa;
514
+ }
515
+ .swagger-section .swagger-ui-wrap .markdown p code,
516
+ .swagger-section .swagger-ui-wrap .markdown li code {
517
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
518
+ background-color: #f0f0f0;
519
+ color: black;
520
+ padding: 1px 3px;
521
+ }
522
+ .swagger-section .swagger-ui-wrap .required {
523
+ font-weight: bold;
524
+ }
525
+ .swagger-section .swagger-ui-wrap .editor_holder {
526
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
527
+ font-size: 0.9em;
528
+ }
529
+ .swagger-section .swagger-ui-wrap .editor_holder label {
530
+ font-weight: normal!important;
531
+ /* JSONEditor uses bold by default for all labels, we revert that back to normal to not give the impression that by default fields are required */
532
+ }
533
+ .swagger-section .swagger-ui-wrap .editor_holder label.required {
534
+ font-weight: bold!important;
535
+ }
536
+ .swagger-section .swagger-ui-wrap input.parameter {
537
+ width: 300px;
538
+ border: 1px solid #aaa;
539
+ }
540
+ .swagger-section .swagger-ui-wrap h1 {
541
+ color: black;
542
+ font-size: 1.5em;
543
+ line-height: 1.3em;
544
+ padding: 10px 0 10px 0;
545
+ font-family: "Droid Sans", sans-serif;
546
+ font-weight: bold;
547
+ }
548
+ .swagger-section .swagger-ui-wrap .heading_with_menu {
549
+ float: none;
550
+ clear: both;
551
+ overflow: hidden;
552
+ display: block;
553
+ }
554
+ .swagger-section .swagger-ui-wrap .heading_with_menu ul {
555
+ display: block;
556
+ clear: none;
557
+ float: right;
558
+ -moz-box-sizing: border-box;
559
+ -webkit-box-sizing: border-box;
560
+ -ms-box-sizing: border-box;
561
+ box-sizing: border-box;
562
+ margin-top: 10px;
563
+ }
564
+ .swagger-section .swagger-ui-wrap h2 {
565
+ color: black;
566
+ font-size: 1.3em;
567
+ padding: 10px 0 10px 0;
568
+ }
569
+ .swagger-section .swagger-ui-wrap h2 a {
570
+ color: black;
571
+ }
572
+ .swagger-section .swagger-ui-wrap h2 span.sub {
573
+ font-size: 0.7em;
574
+ color: #999999;
575
+ font-style: italic;
576
+ }
577
+ .swagger-section .swagger-ui-wrap h2 span.sub a {
578
+ color: #777777;
579
+ }
580
+ .swagger-section .swagger-ui-wrap span.weak {
581
+ color: #666666;
582
+ }
583
+ .swagger-section .swagger-ui-wrap .message-success {
584
+ color: #89BF04;
585
+ }
586
+ .swagger-section .swagger-ui-wrap caption,
587
+ .swagger-section .swagger-ui-wrap th,
588
+ .swagger-section .swagger-ui-wrap td {
589
+ text-align: left;
590
+ font-weight: normal;
591
+ vertical-align: middle;
592
+ }
593
+ .swagger-section .swagger-ui-wrap .code {
594
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
595
+ }
596
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.text textarea {
597
+ font-family: "Droid Sans", sans-serif;
598
+ height: 250px;
599
+ padding: 4px;
600
+ display: block;
601
+ clear: both;
602
+ }
603
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.select select {
604
+ display: block;
605
+ clear: both;
606
+ }
607
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.boolean {
608
+ float: none;
609
+ clear: both;
610
+ overflow: hidden;
611
+ display: block;
612
+ }
613
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.boolean label {
614
+ display: block;
615
+ float: left;
616
+ clear: none;
617
+ margin: 0;
618
+ padding: 0;
619
+ }
620
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.boolean input {
621
+ display: block;
622
+ float: left;
623
+ clear: none;
624
+ margin: 0 5px 0 0;
625
+ }
626
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li.required label {
627
+ color: black;
628
+ }
629
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li label {
630
+ display: block;
631
+ clear: both;
632
+ width: auto;
633
+ padding: 0 0 3px;
634
+ color: #666666;
635
+ }
636
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li label abbr {
637
+ padding-left: 3px;
638
+ color: #888888;
639
+ }
640
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.inputs ol li p.inline-hints {
641
+ margin-left: 0;
642
+ font-style: italic;
643
+ font-size: 0.9em;
644
+ margin: 0;
645
+ }
646
+ .swagger-section .swagger-ui-wrap form.formtastic fieldset.buttons {
647
+ margin: 0;
648
+ padding: 0;
649
+ }
650
+ .swagger-section .swagger-ui-wrap span.blank,
651
+ .swagger-section .swagger-ui-wrap span.empty {
652
+ color: #888888;
653
+ font-style: italic;
654
+ }
655
+ .swagger-section .swagger-ui-wrap .markdown h3 {
656
+ color: #547f00;
657
+ }
658
+ .swagger-section .swagger-ui-wrap .markdown h4 {
659
+ color: #666666;
660
+ }
661
+ .swagger-section .swagger-ui-wrap .markdown pre {
662
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
663
+ background-color: #fcf6db;
664
+ border: 1px solid #e5e0c6;
665
+ padding: 10px;
666
+ margin: 0 0 10px 0;
667
+ }
668
+ .swagger-section .swagger-ui-wrap .markdown pre code {
669
+ line-height: 1.6em;
670
+ overflow: auto;
671
+ }
672
+ .swagger-section .swagger-ui-wrap div.gist {
673
+ margin: 20px 0 25px 0 !important;
674
+ }
675
+ .swagger-section .swagger-ui-wrap ul#resources {
676
+ font-family: "Droid Sans", sans-serif;
677
+ font-size: 0.9em;
678
+ }
679
+ .swagger-section .swagger-ui-wrap ul#resources li.resource {
680
+ border-bottom: 1px solid #dddddd;
681
+ }
682
+ .swagger-section .swagger-ui-wrap ul#resources li.resource:hover div.heading h2 a,
683
+ .swagger-section .swagger-ui-wrap ul#resources li.resource.active div.heading h2 a {
684
+ color: black;
685
+ }
686
+ .swagger-section .swagger-ui-wrap ul#resources li.resource:hover div.heading ul.options li a,
687
+ .swagger-section .swagger-ui-wrap ul#resources li.resource.active div.heading ul.options li a {
688
+ color: #555555;
689
+ }
690
+ .swagger-section .swagger-ui-wrap ul#resources li.resource:last-child {
691
+ border-bottom: none;
692
+ }
693
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading {
694
+ border: 1px solid transparent;
695
+ float: none;
696
+ clear: both;
697
+ overflow: hidden;
698
+ display: block;
699
+ }
700
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options {
701
+ overflow: hidden;
702
+ padding: 0;
703
+ display: block;
704
+ clear: none;
705
+ float: right;
706
+ margin: 14px 10px 0 0;
707
+ }
708
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li {
709
+ float: left;
710
+ clear: none;
711
+ margin: 0;
712
+ padding: 2px 10px;
713
+ border-right: 1px solid #dddddd;
714
+ color: #666666;
715
+ font-size: 0.9em;
716
+ }
717
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li a {
718
+ color: #aaaaaa;
719
+ text-decoration: none;
720
+ }
721
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li a:hover {
722
+ text-decoration: underline;
723
+ color: black;
724
+ }
725
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li a:hover,
726
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li a:active,
727
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li a.active {
728
+ text-decoration: underline;
729
+ }
730
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li:first-child,
731
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li.first {
732
+ padding-left: 0;
733
+ }
734
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li:last-child,
735
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li.last {
736
+ padding-right: 0;
737
+ border-right: none;
738
+ }
739
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options:first-child,
740
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options.first {
741
+ padding-left: 0;
742
+ }
743
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading h2 {
744
+ color: #999999;
745
+ padding-left: 0;
746
+ display: block;
747
+ clear: none;
748
+ float: left;
749
+ font-family: "Droid Sans", sans-serif;
750
+ font-weight: bold;
751
+ }
752
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading h2 a {
753
+ color: #999999;
754
+ }
755
+ .swagger-section .swagger-ui-wrap ul#resources li.resource div.heading h2 a:hover {
756
+ color: black;
757
+ }
758
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation {
759
+ float: none;
760
+ clear: both;
761
+ overflow: hidden;
762
+ display: block;
763
+ margin: 0 0 10px;
764
+ padding: 0;
765
+ }
766
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading {
767
+ float: none;
768
+ clear: both;
769
+ overflow: hidden;
770
+ display: block;
771
+ margin: 0;
772
+ padding: 0;
773
+ }
774
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 {
775
+ display: block;
776
+ clear: none;
777
+ float: left;
778
+ width: auto;
779
+ margin: 0;
780
+ padding: 0;
781
+ line-height: 1.1em;
782
+ color: black;
783
+ }
784
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span.path {
785
+ padding-left: 10px;
786
+ }
787
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span.path a {
788
+ color: black;
789
+ text-decoration: none;
790
+ }
791
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span.path a.toggleOperation.deprecated {
792
+ text-decoration: line-through;
793
+ }
794
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span.path a:hover {
795
+ text-decoration: underline;
796
+ }
797
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span.http_method a {
798
+ text-transform: uppercase;
799
+ text-decoration: none;
800
+ color: white;
801
+ display: inline-block;
802
+ width: 50px;
803
+ font-size: 0.7em;
804
+ text-align: center;
805
+ padding: 7px 0 4px;
806
+ -moz-border-radius: 2px;
807
+ -webkit-border-radius: 2px;
808
+ -o-border-radius: 2px;
809
+ -ms-border-radius: 2px;
810
+ -khtml-border-radius: 2px;
811
+ border-radius: 2px;
812
+ }
813
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span {
814
+ margin: 0;
815
+ padding: 0;
816
+ }
817
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading ul.options {
818
+ overflow: hidden;
819
+ padding: 0;
820
+ display: block;
821
+ clear: none;
822
+ float: right;
823
+ margin: 6px 10px 0 0;
824
+ }
825
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading ul.options li {
826
+ float: left;
827
+ clear: none;
828
+ margin: 0;
829
+ padding: 2px 10px;
830
+ font-size: 0.9em;
831
+ }
832
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading ul.options li a {
833
+ text-decoration: none;
834
+ }
835
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading ul.options li.access {
836
+ color: black;
837
+ }
838
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content {
839
+ border-top: none;
840
+ padding: 10px;
841
+ -moz-border-radius-bottomleft: 6px;
842
+ -webkit-border-bottom-left-radius: 6px;
843
+ -o-border-bottom-left-radius: 6px;
844
+ -ms-border-bottom-left-radius: 6px;
845
+ -khtml-border-bottom-left-radius: 6px;
846
+ border-bottom-left-radius: 6px;
847
+ -moz-border-radius-bottomright: 6px;
848
+ -webkit-border-bottom-right-radius: 6px;
849
+ -o-border-bottom-right-radius: 6px;
850
+ -ms-border-bottom-right-radius: 6px;
851
+ -khtml-border-bottom-right-radius: 6px;
852
+ border-bottom-right-radius: 6px;
853
+ margin: 0 0 20px;
854
+ }
855
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content h4 {
856
+ font-size: 1.1em;
857
+ margin: 0;
858
+ padding: 15px 0 5px;
859
+ }
860
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content div.sandbox_header {
861
+ float: none;
862
+ clear: both;
863
+ overflow: hidden;
864
+ display: block;
865
+ }
866
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content div.sandbox_header a {
867
+ padding: 4px 0 0 10px;
868
+ display: inline-block;
869
+ font-size: 0.9em;
870
+ }
871
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content div.sandbox_header input.submit {
872
+ display: block;
873
+ clear: none;
874
+ float: left;
875
+ padding: 6px 8px;
876
+ }
877
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content div.sandbox_header span.response_throbber {
878
+ background-image: url('../images/throbber.gif');
879
+ width: 128px;
880
+ height: 16px;
881
+ display: block;
882
+ clear: none;
883
+ float: right;
884
+ }
885
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content form input[type='text'].error {
886
+ outline: 2px solid black;
887
+ outline-color: #cc0000;
888
+ }
889
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content form select[name='parameterContentType'] {
890
+ max-width: 300px;
891
+ }
892
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content div.response div.block pre {
893
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
894
+ padding: 10px;
895
+ font-size: 0.9em;
896
+ max-height: 400px;
897
+ overflow-y: auto;
898
+ }
899
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading {
900
+ background-color: #f9f2e9;
901
+ border: 1px solid #f0e0ca;
902
+ }
903
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading h3 span.http_method a {
904
+ background-color: #c5862b;
905
+ }
906
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li {
907
+ border-right: 1px solid #dddddd;
908
+ border-right-color: #f0e0ca;
909
+ color: #c5862b;
910
+ }
911
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li a {
912
+ color: #c5862b;
913
+ }
914
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content {
915
+ background-color: #faf5ee;
916
+ border: 1px solid #f0e0ca;
917
+ }
918
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content h4 {
919
+ color: #c5862b;
920
+ }
921
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content div.sandbox_header a {
922
+ color: #dcb67f;
923
+ }
924
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading {
925
+ background-color: #fcffcd;
926
+ border: 1px solid black;
927
+ border-color: #ffd20f;
928
+ }
929
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading h3 span.http_method a {
930
+ text-transform: uppercase;
931
+ background-color: #ffd20f;
932
+ }
933
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading ul.options li {
934
+ border-right: 1px solid #dddddd;
935
+ border-right-color: #ffd20f;
936
+ color: #ffd20f;
937
+ }
938
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading ul.options li a {
939
+ color: #ffd20f;
940
+ }
941
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.content {
942
+ background-color: #fcffcd;
943
+ border: 1px solid black;
944
+ border-color: #ffd20f;
945
+ }
946
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.content h4 {
947
+ color: #ffd20f;
948
+ }
949
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.content div.sandbox_header a {
950
+ color: #6fc992;
951
+ }
952
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading {
953
+ background-color: #f5e8e8;
954
+ border: 1px solid #e8c6c7;
955
+ }
956
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading h3 span.http_method a {
957
+ text-transform: uppercase;
958
+ background-color: #a41e22;
959
+ }
960
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li {
961
+ border-right: 1px solid #dddddd;
962
+ border-right-color: #e8c6c7;
963
+ color: #a41e22;
964
+ }
965
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li a {
966
+ color: #a41e22;
967
+ }
968
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content {
969
+ background-color: #f7eded;
970
+ border: 1px solid #e8c6c7;
971
+ }
972
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content h4 {
973
+ color: #a41e22;
974
+ }
975
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content div.sandbox_header a {
976
+ color: #c8787a;
977
+ }
978
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading {
979
+ background-color: #e7f6ec;
980
+ border: 1px solid #c3e8d1;
981
+ }
982
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading h3 span.http_method a {
983
+ background-color: #10a54a;
984
+ }
985
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li {
986
+ border-right: 1px solid #dddddd;
987
+ border-right-color: #c3e8d1;
988
+ color: #10a54a;
989
+ }
990
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li a {
991
+ color: #10a54a;
992
+ }
993
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content {
994
+ background-color: #ebf7f0;
995
+ border: 1px solid #c3e8d1;
996
+ }
997
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content h4 {
998
+ color: #10a54a;
999
+ }
1000
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content div.sandbox_header a {
1001
+ color: #6fc992;
1002
+ }
1003
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading {
1004
+ background-color: #FCE9E3;
1005
+ border: 1px solid #F5D5C3;
1006
+ }
1007
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading h3 span.http_method a {
1008
+ background-color: #D38042;
1009
+ }
1010
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li {
1011
+ border-right: 1px solid #dddddd;
1012
+ border-right-color: #f0cecb;
1013
+ color: #D38042;
1014
+ }
1015
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li a {
1016
+ color: #D38042;
1017
+ }
1018
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content {
1019
+ background-color: #faf0ef;
1020
+ border: 1px solid #f0cecb;
1021
+ }
1022
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content h4 {
1023
+ color: #D38042;
1024
+ }
1025
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content div.sandbox_header a {
1026
+ color: #dcb67f;
1027
+ }
1028
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading {
1029
+ background-color: #e7f0f7;
1030
+ border: 1px solid #c3d9ec;
1031
+ }
1032
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading h3 span.http_method a {
1033
+ background-color: #0f6ab4;
1034
+ }
1035
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li {
1036
+ border-right: 1px solid #dddddd;
1037
+ border-right-color: #c3d9ec;
1038
+ color: #0f6ab4;
1039
+ }
1040
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li a {
1041
+ color: #0f6ab4;
1042
+ }
1043
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content {
1044
+ background-color: #ebf3f9;
1045
+ border: 1px solid #c3d9ec;
1046
+ }
1047
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content h4 {
1048
+ color: #0f6ab4;
1049
+ }
1050
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content div.sandbox_header a {
1051
+ color: #6fa5d2;
1052
+ }
1053
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.heading {
1054
+ background-color: #e7f0f7;
1055
+ border: 1px solid #c3d9ec;
1056
+ }
1057
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.heading h3 span.http_method a {
1058
+ background-color: #0f6ab4;
1059
+ }
1060
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.heading ul.options li {
1061
+ border-right: 1px solid #dddddd;
1062
+ border-right-color: #c3d9ec;
1063
+ color: #0f6ab4;
1064
+ }
1065
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.heading ul.options li a {
1066
+ color: #0f6ab4;
1067
+ }
1068
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.content {
1069
+ background-color: #ebf3f9;
1070
+ border: 1px solid #c3d9ec;
1071
+ }
1072
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.content h4 {
1073
+ color: #0f6ab4;
1074
+ }
1075
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.options div.content div.sandbox_header a {
1076
+ color: #6fa5d2;
1077
+ }
1078
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content,
1079
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content,
1080
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.content,
1081
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content,
1082
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content,
1083
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content {
1084
+ border-top: none;
1085
+ }
1086
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li:last-child,
1087
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li:last-child,
1088
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading ul.options li:last-child,
1089
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li:last-child,
1090
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li:last-child,
1091
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li:last-child,
1092
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li.last,
1093
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li.last,
1094
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading ul.options li.last,
1095
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li.last,
1096
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li.last,
1097
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li.last {
1098
+ padding-right: 0;
1099
+ border-right: none;
1100
+ }
1101
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations ul.options li a:hover,
1102
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations ul.options li a:active,
1103
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations ul.options li a.active {
1104
+ text-decoration: underline;
1105
+ }
1106
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations ul.options li:first-child,
1107
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations ul.options li.first {
1108
+ padding-left: 0;
1109
+ }
1110
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations:first-child,
1111
+ .swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations.first {
1112
+ padding-left: 0;
1113
+ }
1114
+ .swagger-section .swagger-ui-wrap p#colophon {
1115
+ margin: 0 15px 40px 15px;
1116
+ padding: 10px 0;
1117
+ font-size: 0.8em;
1118
+ border-top: 1px solid #dddddd;
1119
+ font-family: "Droid Sans", sans-serif;
1120
+ color: #999999;
1121
+ font-style: italic;
1122
+ }
1123
+ .swagger-section .swagger-ui-wrap p#colophon a {
1124
+ text-decoration: none;
1125
+ color: #547f00;
1126
+ }
1127
+ .swagger-section .swagger-ui-wrap h3 {
1128
+ color: black;
1129
+ font-size: 1.1em;
1130
+ padding: 10px 0 10px 0;
1131
+ }
1132
+ .swagger-section .swagger-ui-wrap .markdown ol,
1133
+ .swagger-section .swagger-ui-wrap .markdown ul {
1134
+ font-family: "Droid Sans", sans-serif;
1135
+ margin: 5px 0 10px;
1136
+ padding: 0 0 0 18px;
1137
+ list-style-type: disc;
1138
+ }
1139
+ .swagger-section .swagger-ui-wrap form.form_box {
1140
+ background-color: #ebf3f9;
1141
+ border: 1px solid #c3d9ec;
1142
+ padding: 10px;
1143
+ }
1144
+ .swagger-section .swagger-ui-wrap form.form_box label {
1145
+ color: #0f6ab4 !important;
1146
+ }
1147
+ .swagger-section .swagger-ui-wrap form.form_box input[type=submit] {
1148
+ display: block;
1149
+ padding: 10px;
1150
+ }
1151
+ .swagger-section .swagger-ui-wrap form.form_box p.weak {
1152
+ font-size: 0.8em;
1153
+ }
1154
+ .swagger-section .swagger-ui-wrap form.form_box p {
1155
+ font-size: 0.9em;
1156
+ padding: 0 0 15px;
1157
+ color: #7e7b6d;
1158
+ }
1159
+ .swagger-section .swagger-ui-wrap form.form_box p a {
1160
+ color: #646257;
1161
+ }
1162
+ .swagger-section .swagger-ui-wrap form.form_box p strong {
1163
+ color: black;
1164
+ }
1165
+ .swagger-section .swagger-ui-wrap .operation-status td.markdown > p:last-child {
1166
+ padding-bottom: 0;
1167
+ }
1168
+ .swagger-section .title {
1169
+ font-style: bold;
1170
+ }
1171
+ .swagger-section .secondary_form {
1172
+ display: none;
1173
+ }
1174
+ .swagger-section .main_image {
1175
+ display: block;
1176
+ margin-left: auto;
1177
+ margin-right: auto;
1178
+ }
1179
+ .swagger-section .oauth_body {
1180
+ margin-left: 100px;
1181
+ margin-right: 100px;
1182
+ }
1183
+ .swagger-section .oauth_submit {
1184
+ text-align: center;
1185
+ display: inline-block;
1186
+ }
1187
+ .swagger-section .authorize-wrapper {
1188
+ margin: 15px 0 10px;
1189
+ }
1190
+ .swagger-section .authorize-wrapper_operation {
1191
+ float: right;
1192
+ }
1193
+ .swagger-section .authorize__btn:hover {
1194
+ text-decoration: underline;
1195
+ cursor: pointer;
1196
+ }
1197
+ .swagger-section .authorize__btn_operation:hover .authorize-scopes {
1198
+ display: block;
1199
+ }
1200
+ .swagger-section .authorize-scopes {
1201
+ position: absolute;
1202
+ margin-top: 20px;
1203
+ background: #FFF;
1204
+ border: 1px solid #ccc;
1205
+ border-radius: 5px;
1206
+ display: none;
1207
+ font-size: 13px;
1208
+ max-width: 300px;
1209
+ line-height: 30px;
1210
+ color: black;
1211
+ padding: 5px;
1212
+ }
1213
+ .swagger-section .authorize-scopes .authorize__scope {
1214
+ text-decoration: none;
1215
+ }
1216
+ .swagger-section .authorize__btn_operation {
1217
+ height: 18px;
1218
+ vertical-align: middle;
1219
+ display: inline-block;
1220
+ background: url(../images/explorer_icons.png) no-repeat;
1221
+ }
1222
+ .swagger-section .authorize__btn_operation_login {
1223
+ background-position: 0 0;
1224
+ width: 18px;
1225
+ margin-top: -6px;
1226
+ margin-left: 4px;
1227
+ }
1228
+ .swagger-section .authorize__btn_operation_logout {
1229
+ background-position: -30px 0;
1230
+ width: 18px;
1231
+ margin-top: -6px;
1232
+ margin-left: 4px;
1233
+ }
1234
+ .swagger-section #auth_container {
1235
+ color: #fff;
1236
+ display: inline-block;
1237
+ border: none;
1238
+ padding: 5px;
1239
+ width: 87px;
1240
+ height: 13px;
1241
+ }
1242
+ .swagger-section #auth_container .authorize__btn {
1243
+ color: #fff;
1244
+ }
1245
+ .swagger-section .auth_container {
1246
+ padding: 0 0 10px;
1247
+ margin-bottom: 5px;
1248
+ border-bottom: solid 1px #CCC;
1249
+ font-size: 0.9em;
1250
+ }
1251
+ .swagger-section .auth_container .auth__title {
1252
+ color: #547f00;
1253
+ font-size: 1.2em;
1254
+ }
1255
+ .swagger-section .auth_container .basic_auth__label {
1256
+ display: inline-block;
1257
+ width: 60px;
1258
+ }
1259
+ .swagger-section .auth_container .auth__description {
1260
+ color: #999999;
1261
+ margin-bottom: 5px;
1262
+ }
1263
+ .swagger-section .auth_container .auth__button {
1264
+ margin-top: 10px;
1265
+ height: 30px;
1266
+ }
1267
+ .swagger-section .auth_container .key_auth__field {
1268
+ margin: 5px 0;
1269
+ }
1270
+ .swagger-section .auth_container .key_auth__label {
1271
+ display: inline-block;
1272
+ width: 60px;
1273
+ }
1274
+ .swagger-section .api-popup-dialog {
1275
+ position: absolute;
1276
+ display: none;
1277
+ }
1278
+ .swagger-section .api-popup-dialog-wrapper {
1279
+ z-index: 1000;
1280
+ width: 500px;
1281
+ background: #FFF;
1282
+ padding: 20px;
1283
+ border: 1px solid #ccc;
1284
+ border-radius: 5px;
1285
+ font-size: 13px;
1286
+ color: #777;
1287
+ position: fixed;
1288
+ top: 50%;
1289
+ left: 50%;
1290
+ transform: translate(-50%, -50%);
1291
+ }
1292
+ .swagger-section .api-popup-dialog-shadow {
1293
+ position: fixed;
1294
+ top: 0;
1295
+ left: 0;
1296
+ width: 100%;
1297
+ height: 100%;
1298
+ opacity: 0.2;
1299
+ background-color: gray;
1300
+ z-index: 900;
1301
+ }
1302
+ .swagger-section .api-popup-dialog .api-popup-title {
1303
+ font-size: 24px;
1304
+ padding: 10px 0;
1305
+ }
1306
+ .swagger-section .api-popup-dialog .api-popup-title {
1307
+ font-size: 24px;
1308
+ padding: 10px 0;
1309
+ }
1310
+ .swagger-section .api-popup-dialog .error-msg {
1311
+ padding-left: 5px;
1312
+ padding-bottom: 5px;
1313
+ }
1314
+ .swagger-section .api-popup-dialog .api-popup-content {
1315
+ max-height: 500px;
1316
+ overflow-y: auto;
1317
+ }
1318
+ .swagger-section .api-popup-dialog .api-popup-authbtn {
1319
+ height: 30px;
1320
+ }
1321
+ .swagger-section .api-popup-dialog .api-popup-cancel {
1322
+ height: 30px;
1323
+ }
1324
+ .swagger-section .api-popup-scopes {
1325
+ padding: 10px 20px;
1326
+ }
1327
+ .swagger-section .api-popup-scopes li {
1328
+ padding: 5px 0;
1329
+ line-height: 20px;
1330
+ }
1331
+ .swagger-section .api-popup-scopes li input {
1332
+ position: relative;
1333
+ top: 2px;
1334
+ }
1335
+ .swagger-section .api-popup-scopes .api-scope-desc {
1336
+ padding-left: 20px;
1337
+ font-style: italic;
1338
+ }
1339
+ .swagger-section .api-popup-actions {
1340
+ padding-top: 10px;
1341
+ }
1342
+ .swagger-section .access {
1343
+ float: right;
1344
+ }
1345
+ .swagger-section .auth {
1346
+ float: right;
1347
+ }
1348
+ .swagger-section .api-ic {
1349
+ height: 18px;
1350
+ vertical-align: middle;
1351
+ display: inline-block;
1352
+ background: url(../images/explorer_icons.png) no-repeat;
1353
+ }
1354
+ .swagger-section .api-ic .api_information_panel {
1355
+ position: relative;
1356
+ margin-top: 20px;
1357
+ margin-left: -5px;
1358
+ background: #FFF;
1359
+ border: 1px solid #ccc;
1360
+ border-radius: 5px;
1361
+ display: none;
1362
+ font-size: 13px;
1363
+ max-width: 300px;
1364
+ line-height: 30px;
1365
+ color: black;
1366
+ padding: 5px;
1367
+ }
1368
+ .swagger-section .api-ic .api_information_panel p .api-msg-enabled {
1369
+ color: green;
1370
+ }
1371
+ .swagger-section .api-ic .api_information_panel p .api-msg-disabled {
1372
+ color: red;
1373
+ }
1374
+ .swagger-section .api-ic:hover .api_information_panel {
1375
+ position: absolute;
1376
+ display: block;
1377
+ }
1378
+ .swagger-section .ic-info {
1379
+ background-position: 0 0;
1380
+ width: 18px;
1381
+ margin-top: -6px;
1382
+ margin-left: 4px;
1383
+ }
1384
+ .swagger-section .ic-warning {
1385
+ background-position: -60px 0;
1386
+ width: 18px;
1387
+ margin-top: -6px;
1388
+ margin-left: 4px;
1389
+ }
1390
+ .swagger-section .ic-error {
1391
+ background-position: -30px 0;
1392
+ width: 18px;
1393
+ margin-top: -6px;
1394
+ margin-left: 4px;
1395
+ }
1396
+ .swagger-section .ic-off {
1397
+ background-position: -90px 0;
1398
+ width: 58px;
1399
+ margin-top: -4px;
1400
+ cursor: pointer;
1401
+ }
1402
+ .swagger-section .ic-on {
1403
+ background-position: -160px 0;
1404
+ width: 58px;
1405
+ margin-top: -4px;
1406
+ cursor: pointer;
1407
+ }
1408
+ .swagger-section #header {
1409
+ background-color: #89bf04;
1410
+ padding: 9px 14px 19px 14px;
1411
+ height: 23px;
1412
+ min-width: 775px;
1413
+ }
1414
+ .swagger-section #input_baseUrl {
1415
+ width: 400px;
1416
+ }
1417
+ .swagger-section #api_selector {
1418
+ display: block;
1419
+ clear: none;
1420
+ float: right;
1421
+ }
1422
+ .swagger-section #api_selector .input {
1423
+ display: inline-block;
1424
+ clear: none;
1425
+ margin: 0 10px 0 0;
1426
+ }
1427
+ .swagger-section #api_selector input {
1428
+ font-size: 0.9em;
1429
+ padding: 3px;
1430
+ margin: 0;
1431
+ }
1432
+ .swagger-section #input_apiKey {
1433
+ width: 200px;
1434
+ }
1435
+ .swagger-section #explore,
1436
+ .swagger-section #auth_container .authorize__btn {
1437
+ display: block;
1438
+ text-decoration: none;
1439
+ font-weight: bold;
1440
+ padding: 6px 8px;
1441
+ font-size: 0.9em;
1442
+ color: white;
1443
+ background-color: #547f00;
1444
+ -moz-border-radius: 4px;
1445
+ -webkit-border-radius: 4px;
1446
+ -o-border-radius: 4px;
1447
+ -ms-border-radius: 4px;
1448
+ -khtml-border-radius: 4px;
1449
+ border-radius: 4px;
1450
+ }
1451
+ .swagger-section #explore:hover,
1452
+ .swagger-section #auth_container .authorize__btn:hover {
1453
+ background-color: #547f00;
1454
+ }
1455
+ .swagger-section #header #logo {
1456
+ font-size: 1.5em;
1457
+ font-weight: bold;
1458
+ text-decoration: none;
1459
+ color: white;
1460
+ }
1461
+ .swagger-section #header #logo .logo__img {
1462
+ display: block;
1463
+ float: left;
1464
+ margin-top: 2px;
1465
+ }
1466
+ .swagger-section #header #logo .logo__title {
1467
+ display: inline-block;
1468
+ padding: 5px 0 0 10px;
1469
+ }
1470
+ .swagger-section #content_message {
1471
+ margin: 10px 15px;
1472
+ font-style: italic;
1473
+ color: #999999;
1474
+ }
1475
+ .swagger-section #message-bar {
1476
+ min-height: 30px;
1477
+ text-align: center;
1478
+ padding-top: 10px;
1479
+ }
1480
+ .swagger-section .swagger-collapse:before {
1481
+ content: "-";
1482
+ }
1483
+ .swagger-section .swagger-expand:before {
1484
+ content: "+";
1485
+ }
1486
+ .swagger-section .error {
1487
+ outline-color: #cc0000;
1488
+ background-color: #f2dede;
1489
+ }