insta_swag 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +3 -0
  3. data/Gemfile +14 -0
  4. data/Gemfile.lock +134 -0
  5. data/LICENSE.txt +2 -0
  6. data/README.md +45 -0
  7. data/Rakefile +10 -0
  8. data/fixtures/public/docs/css/hightlight.default.css +135 -0
  9. data/fixtures/public/docs/css/screen.css +1759 -0
  10. data/fixtures/public/docs/images/logo_small.png +0 -0
  11. data/fixtures/public/docs/images/pet_store_api.png +0 -0
  12. data/fixtures/public/docs/images/throbber.gif +0 -0
  13. data/fixtures/public/docs/images/wordnik_api.png +0 -0
  14. data/fixtures/public/docs/index.html +84 -0
  15. data/fixtures/public/docs/lib/backbone-min.js +38 -0
  16. data/fixtures/public/docs/lib/handlebars-1.0.rc.1.js +1920 -0
  17. data/fixtures/public/docs/lib/highlight.7.3.pack.js +1 -0
  18. data/fixtures/public/docs/lib/jquery-1.8.0.min.js +2 -0
  19. data/fixtures/public/docs/lib/jquery.ba-bbq.min.js +18 -0
  20. data/fixtures/public/docs/lib/jquery.slideto.min.js +1 -0
  21. data/fixtures/public/docs/lib/jquery.wiggle.min.js +8 -0
  22. data/fixtures/public/docs/lib/swagger.js +772 -0
  23. data/fixtures/public/docs/lib/underscore-min.js +32 -0
  24. data/fixtures/public/docs/swagger-ui.js +2020 -0
  25. data/fixtures/public/docs/swagger-ui.min.js +1 -0
  26. data/insta_swag-0.1.0.gem +0 -0
  27. data/insta_swag.gemspec +25 -0
  28. data/lib/insta_swag.rb +25 -0
  29. data/lib/insta_swag/assets_app.rb +6 -0
  30. data/lib/insta_swag/documentation_app.rb +29 -0
  31. data/lib/insta_swag/documentation_factory.rb +28 -0
  32. data/lib/insta_swag/settings.rb +54 -0
  33. data/lib/insta_swag/static_files.rb +39 -0
  34. data/lib/insta_swag/version.rb +3 -0
  35. data/mounted-swagger.png +0 -0
  36. data/public/docs/css/hightlight.default.css +135 -0
  37. data/public/docs/css/screen.css +1759 -0
  38. data/public/docs/images/logo_small.png +0 -0
  39. data/public/docs/images/pet_store_api.png +0 -0
  40. data/public/docs/images/throbber.gif +0 -0
  41. data/public/docs/images/wordnik_api.png +0 -0
  42. data/public/docs/index.html +87 -0
  43. data/public/docs/lib/backbone-min.js +38 -0
  44. data/public/docs/lib/handlebars-1.0.rc.1.js +1920 -0
  45. data/public/docs/lib/highlight.7.3.pack.js +1 -0
  46. data/public/docs/lib/jquery-1.8.0.min.js +2 -0
  47. data/public/docs/lib/jquery.ba-bbq.min.js +18 -0
  48. data/public/docs/lib/jquery.slideto.min.js +1 -0
  49. data/public/docs/lib/jquery.wiggle.min.js +8 -0
  50. data/public/docs/lib/swagger.js +772 -0
  51. data/public/docs/lib/underscore-min.js +32 -0
  52. data/public/docs/swagger-ui.js +2020 -0
  53. data/public/docs/swagger-ui.min.js +1 -0
  54. data/spec/insta_swag/static_files_spec.rb +34 -0
  55. data/spec/insta_swag_spec.rb +26 -0
  56. data/spec/integration_spec.rb +204 -0
  57. data/spec/spec_helper.rb +17 -0
  58. data/spec/support/dummy_api.rb +29 -0
  59. data/spec/support/file_helper.rb +17 -0
  60. metadata +140 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: f57769e1829a838ecf77e7aee6555191e955d0de
4
+ data.tar.gz: 6c06a8d586630cb5d1a64f3c80c16604fdafa728
5
+ SHA512:
6
+ metadata.gz: a7ba983d63e94a86c6e62ee34b9d5a1302d9d13159d230184470a7b28015fa302f7733b9ea4ae2f28740e7024ce511fcc12b82b7ec3c3cde622bd6dab329e178
7
+ data.tar.gz: 06c2597c2681c7a34a2c8be2b1cc34ff345bfdf5dd6826a73e9e3802788d15aa73481ad0347dd1e79f96d1da301897bbfeda199a401ad90cdaf5d1d835296357
@@ -0,0 +1,3 @@
1
+
2
+ Guardfile
3
+ *.DS_Store
data/Gemfile ADDED
@@ -0,0 +1,14 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
4
+
5
+ gem 'grape'
6
+ gem 'grape-swagger'
7
+ gem 'rack'
8
+
9
+ group :test, :development do
10
+ gem 'rspec'
11
+ gem 'pry'
12
+ gem 'rack-test'
13
+ gem 'guard-rspec'
14
+ end
@@ -0,0 +1,134 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ insta_swag (0.1.1)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ activesupport (4.1.4)
10
+ i18n (~> 0.6, >= 0.6.9)
11
+ json (~> 1.7, >= 1.7.7)
12
+ minitest (~> 5.1)
13
+ thread_safe (~> 0.1)
14
+ tzinfo (~> 1.1)
15
+ axiom-types (0.1.1)
16
+ descendants_tracker (~> 0.0.4)
17
+ ice_nine (~> 0.11.0)
18
+ thread_safe (~> 0.3, >= 0.3.1)
19
+ builder (3.2.2)
20
+ celluloid (0.15.2)
21
+ timers (~> 1.1.0)
22
+ coderay (1.1.0)
23
+ coercible (1.0.0)
24
+ descendants_tracker (~> 0.0.1)
25
+ descendants_tracker (0.0.4)
26
+ thread_safe (~> 0.3, >= 0.3.1)
27
+ diff-lcs (1.2.5)
28
+ equalizer (0.0.9)
29
+ ffi (1.9.3)
30
+ ffi (1.9.3-java)
31
+ formatador (0.2.5)
32
+ grape (0.8.0)
33
+ activesupport
34
+ builder
35
+ hashie (>= 2.1.0)
36
+ multi_json (>= 1.3.2)
37
+ multi_xml (>= 0.5.2)
38
+ rack (>= 1.3.0)
39
+ rack-accept
40
+ rack-mount
41
+ virtus (>= 1.0.0)
42
+ grape-entity (0.4.3)
43
+ activesupport
44
+ multi_json (>= 1.3.2)
45
+ grape-swagger (0.7.2)
46
+ grape (>= 0.2.0)
47
+ grape-entity (>= 0.3.0)
48
+ kramdown (>= 1.3.1)
49
+ guard (2.6.1)
50
+ formatador (>= 0.2.4)
51
+ listen (~> 2.7)
52
+ lumberjack (~> 1.0)
53
+ pry (>= 0.9.12)
54
+ thor (>= 0.18.1)
55
+ guard-rspec (4.2.10)
56
+ guard (~> 2.1)
57
+ rspec (>= 2.14, < 4.0)
58
+ hashie (3.2.0)
59
+ i18n (0.6.11)
60
+ ice_nine (0.11.0)
61
+ json (1.8.1)
62
+ json (1.8.1-java)
63
+ kramdown (1.4.0)
64
+ listen (2.7.9)
65
+ celluloid (>= 0.15.2)
66
+ rb-fsevent (>= 0.9.3)
67
+ rb-inotify (>= 0.9)
68
+ lumberjack (1.0.9)
69
+ method_source (0.8.2)
70
+ minitest (5.4.0)
71
+ multi_json (1.10.1)
72
+ multi_xml (0.5.5)
73
+ pry (0.10.0)
74
+ coderay (~> 1.1.0)
75
+ method_source (~> 0.8.1)
76
+ slop (~> 3.4)
77
+ pry (0.10.0-java)
78
+ coderay (~> 1.1.0)
79
+ method_source (~> 0.8.1)
80
+ slop (~> 3.4)
81
+ spoon (~> 0.0)
82
+ rack (1.5.2)
83
+ rack-accept (0.4.5)
84
+ rack (>= 0.4)
85
+ rack-mount (0.8.3)
86
+ rack (>= 1.0.0)
87
+ rack-test (0.6.2)
88
+ rack (>= 1.0)
89
+ rake (10.3.2)
90
+ rb-fsevent (0.9.4)
91
+ rb-inotify (0.9.5)
92
+ ffi (>= 0.5.0)
93
+ rspec (3.0.0)
94
+ rspec-core (~> 3.0.0)
95
+ rspec-expectations (~> 3.0.0)
96
+ rspec-mocks (~> 3.0.0)
97
+ rspec-core (3.0.2)
98
+ rspec-support (~> 3.0.0)
99
+ rspec-expectations (3.0.2)
100
+ diff-lcs (>= 1.2.0, < 2.0)
101
+ rspec-support (~> 3.0.0)
102
+ rspec-mocks (3.0.2)
103
+ rspec-support (~> 3.0.0)
104
+ rspec-support (3.0.2)
105
+ slop (3.5.0)
106
+ spoon (0.0.4)
107
+ ffi
108
+ thor (0.19.1)
109
+ thread_safe (0.3.4)
110
+ thread_safe (0.3.4-java)
111
+ timers (1.1.0)
112
+ tzinfo (1.2.1)
113
+ thread_safe (~> 0.1)
114
+ virtus (1.0.2)
115
+ axiom-types (~> 0.1)
116
+ coercible (~> 1.0)
117
+ descendants_tracker (~> 0.0.3)
118
+ equalizer (~> 0.0.9)
119
+
120
+ PLATFORMS
121
+ java
122
+ ruby
123
+
124
+ DEPENDENCIES
125
+ bundler (~> 1.3)
126
+ grape
127
+ grape-swagger
128
+ guard-rspec
129
+ insta_swag!
130
+ pry
131
+ rack
132
+ rack-test
133
+ rake
134
+ rspec
@@ -0,0 +1,2 @@
1
+ Copyright (c) 2014 Workshare ltd.
2
+
@@ -0,0 +1,45 @@
1
+ # InstaSwag
2
+
3
+
4
+ InstaSwag provides lighting-fast, dynamically generated [swagger-documentation](https://github.com/wordnik/swagger-core) for [grape APIs](https://github.com/intridea/grape)
5
+
6
+ ## Mounting
7
+
8
+ Mounting swagger had never been easier. The ``::for`` takes in 2 arguments. The first
9
+ is your API class that inherits from ``Grape::API`` and a hash of settings to [customise the swagger documentation](https://github.com/tim-vandecasteele/grape-swagger#configure). Which returns
10
+ an instance of ``Rack::Builder``
11
+
12
+ ### Sample usage
13
+
14
+ Given the settings:
15
+
16
+ ```ruby
17
+ # config.ru
18
+
19
+ settings = { :prefix => "/reports-api" }
20
+
21
+ run InstaSwag.for(Api, settings)
22
+ ```
23
+
24
+ Will make your documentation available at ```http://hostname:3000/reports/documentation/index.html```
25
+
26
+ ![](mounted-swagger.png)
27
+
28
+ ## Default values
29
+
30
+ All the settings passed will be merged with the default values to populate the mounting of the swagger documentation:
31
+
32
+ ```ruby
33
+ # ./lib/insta_swag.rb
34
+
35
+ def self.for(klass, settings = {})
36
+ settings = Settings.new klass, settings
37
+
38
+ Rack::Builder.new do
39
+ map settings.assets_path, &InstaSwag::AssetsApp
40
+ map settings.prefix_path, &DocumentationApp.create(klass, settings)
41
+ map settings.index_path, &StaticFiles.create(settings)
42
+ end
43
+ end
44
+
45
+ ```
@@ -0,0 +1,10 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rake'
3
+
4
+ require 'rspec/core/rake_task'
5
+ task :default => :spec
6
+ task :test => :spec
7
+ desc 'Run all specs'
8
+ RSpec::Core::RakeTask.new('spec') do |spec|
9
+ spec.rspec_opts = %w{}
10
+ end
@@ -0,0 +1,135 @@
1
+ /*
2
+
3
+ Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
4
+
5
+ */
6
+
7
+ pre code {
8
+ display: block; padding: 0.5em;
9
+ background: #F0F0F0;
10
+ }
11
+
12
+ pre code,
13
+ pre .subst,
14
+ pre .tag .title,
15
+ pre .lisp .title,
16
+ pre .clojure .built_in,
17
+ pre .nginx .title {
18
+ color: black;
19
+ }
20
+
21
+ pre .string,
22
+ pre .title,
23
+ pre .constant,
24
+ pre .parent,
25
+ pre .tag .value,
26
+ pre .rules .value,
27
+ pre .rules .value .number,
28
+ pre .preprocessor,
29
+ pre .ruby .symbol,
30
+ pre .ruby .symbol .string,
31
+ pre .aggregate,
32
+ pre .template_tag,
33
+ pre .django .variable,
34
+ pre .smalltalk .class,
35
+ pre .addition,
36
+ pre .flow,
37
+ pre .stream,
38
+ pre .bash .variable,
39
+ pre .apache .tag,
40
+ pre .apache .cbracket,
41
+ pre .tex .command,
42
+ pre .tex .special,
43
+ pre .erlang_repl .function_or_atom,
44
+ pre .markdown .header {
45
+ color: #800;
46
+ }
47
+
48
+ pre .comment,
49
+ pre .annotation,
50
+ pre .template_comment,
51
+ pre .diff .header,
52
+ pre .chunk,
53
+ pre .markdown .blockquote {
54
+ color: #888;
55
+ }
56
+
57
+ pre .number,
58
+ pre .date,
59
+ pre .regexp,
60
+ pre .literal,
61
+ pre .smalltalk .symbol,
62
+ pre .smalltalk .char,
63
+ pre .go .constant,
64
+ pre .change,
65
+ pre .markdown .bullet,
66
+ pre .markdown .link_url {
67
+ color: #080;
68
+ }
69
+
70
+ pre .label,
71
+ pre .javadoc,
72
+ pre .ruby .string,
73
+ pre .decorator,
74
+ pre .filter .argument,
75
+ pre .localvars,
76
+ pre .array,
77
+ pre .attr_selector,
78
+ pre .important,
79
+ pre .pseudo,
80
+ pre .pi,
81
+ pre .doctype,
82
+ pre .deletion,
83
+ pre .envvar,
84
+ pre .shebang,
85
+ pre .apache .sqbracket,
86
+ pre .nginx .built_in,
87
+ pre .tex .formula,
88
+ pre .erlang_repl .reserved,
89
+ pre .prompt,
90
+ pre .markdown .link_label,
91
+ pre .vhdl .attribute,
92
+ pre .clojure .attribute,
93
+ pre .coffeescript .property {
94
+ color: #88F
95
+ }
96
+
97
+ pre .keyword,
98
+ pre .id,
99
+ pre .phpdoc,
100
+ pre .title,
101
+ pre .built_in,
102
+ pre .aggregate,
103
+ pre .css .tag,
104
+ pre .javadoctag,
105
+ pre .phpdoc,
106
+ pre .yardoctag,
107
+ pre .smalltalk .class,
108
+ pre .winutils,
109
+ pre .bash .variable,
110
+ pre .apache .tag,
111
+ pre .go .typename,
112
+ pre .tex .command,
113
+ pre .markdown .strong,
114
+ pre .request,
115
+ pre .status {
116
+ font-weight: bold;
117
+ }
118
+
119
+ pre .markdown .emphasis {
120
+ font-style: italic;
121
+ }
122
+
123
+ pre .nginx .built_in {
124
+ font-weight: normal;
125
+ }
126
+
127
+ pre .coffeescript .javascript,
128
+ pre .javascript .xml,
129
+ pre .tex .formula,
130
+ pre .xml .javascript,
131
+ pre .xml .vbscript,
132
+ pre .xml .css,
133
+ pre .xml .cdata {
134
+ opacity: 0.5;
135
+ }
@@ -0,0 +1,1759 @@
1
+ html, body, div, span, applet, object, iframe,
2
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
3
+ a, abbr, acronym, address, big, cite, code,
4
+ del, dfn, em, img, ins, kbd, q, s, samp,
5
+ small, strike, strong, sub, sup, tt, var,
6
+ b, u, i, center,
7
+ dl, dt, dd, ol, ul, li,
8
+ fieldset, form, label, legend,
9
+ table, caption, tbody, tfoot, thead, tr, th, td,
10
+ article, aside, canvas, details, embed,
11
+ figure, figcaption, footer, header, hgroup,
12
+ menu, nav, output, ruby, section, summary,
13
+ time, mark, audio, video {
14
+ margin: 0;
15
+ padding: 0;
16
+ border: 0;
17
+ font-size: 100%;
18
+ font: inherit;
19
+ vertical-align: baseline;
20
+ }
21
+
22
+ body {
23
+ line-height: 1;
24
+ }
25
+
26
+ ol, ul {
27
+ list-style: none;
28
+ }
29
+
30
+ table {
31
+ border-collapse: collapse;
32
+ border-spacing: 0;
33
+ }
34
+
35
+ caption, th, td {
36
+ text-align: left;
37
+ font-weight: normal;
38
+ vertical-align: middle;
39
+ }
40
+
41
+ q, blockquote {
42
+ quotes: none;
43
+ }
44
+
45
+ q:before, q:after, blockquote:before, blockquote:after {
46
+ content: "";
47
+ content: none;
48
+ }
49
+
50
+ a img {
51
+ border: none;
52
+ }
53
+
54
+ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
55
+ display: block;
56
+ }
57
+
58
+ h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
59
+ text-decoration: none;
60
+ }
61
+
62
+ h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
63
+ text-decoration: underline;
64
+ }
65
+
66
+ h1 span.divider, h2 span.divider, h3 span.divider, h4 span.divider, h5 span.divider, h6 span.divider {
67
+ color: #aaaaaa;
68
+ }
69
+
70
+ h1 {
71
+ color: black;
72
+ font-size: 1.5em;
73
+ line-height: 1.3em;
74
+ padding: 10px 0 10px 0;
75
+ font-family: "Droid Sans", sans-serif;
76
+ font-weight: bold;
77
+ }
78
+
79
+ h2 {
80
+ color: black;
81
+ font-size: 1.3em;
82
+ padding: 10px 0 10px 0;
83
+ }
84
+
85
+ h2 a {
86
+ color: black;
87
+ }
88
+
89
+ h2 span.sub {
90
+ font-size: 0.7em;
91
+ color: #999999;
92
+ font-style: italic;
93
+ }
94
+
95
+ h2 span.sub a {
96
+ color: #777777;
97
+ }
98
+
99
+ h3 {
100
+ color: black;
101
+ font-size: 1.1em;
102
+ padding: 10px 0 10px 0;
103
+ }
104
+
105
+ .heading_with_menu {
106
+ float: none;
107
+ clear: both;
108
+ overflow: hidden;
109
+ display: block;
110
+ }
111
+
112
+ .heading_with_menu h1, .heading_with_menu h2, .heading_with_menu h3, .heading_with_menu h4, .heading_with_menu h5, .heading_with_menu h6 {
113
+ display: block;
114
+ clear: none;
115
+ float: left;
116
+ -moz-box-sizing: border-box;
117
+ -webkit-box-sizing: border-box;
118
+ -ms-box-sizing: border-box;
119
+ box-sizing: border-box;
120
+ width: 60%;
121
+ }
122
+
123
+ .heading_with_menu ul {
124
+ display: block;
125
+ clear: none;
126
+ float: right;
127
+ -moz-box-sizing: border-box;
128
+ -webkit-box-sizing: border-box;
129
+ -ms-box-sizing: border-box;
130
+ box-sizing: border-box;
131
+ margin-top: 10px;
132
+ }
133
+
134
+ input.parameter {
135
+ width: 300px;
136
+ border: 1px solid #aaa;
137
+ }
138
+
139
+ .body-textarea {
140
+ width: 300px;
141
+ height: 100px;
142
+ border: 1px solid #aaa;
143
+ }
144
+
145
+ p {
146
+ line-height: 1.4em;
147
+ padding: 0 0 10px;
148
+ color: #333333;
149
+ }
150
+
151
+ ol {
152
+ margin: 0px 0 10px;
153
+ padding: 0 0 0 18px;
154
+ list-style-type: decimal;
155
+ }
156
+
157
+ ol li {
158
+ padding: 5px 0px;
159
+ font-size: 0.9em;
160
+ color: #333333;
161
+ }
162
+
163
+ .markdown h3 {
164
+ color: #547f00;
165
+ }
166
+
167
+ .markdown h4 {
168
+ color: #666666;
169
+ }
170
+
171
+ .markdown pre {
172
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
173
+ background-color: #fcf6db;
174
+ border: 1px solid #e5e0c6;
175
+ padding: 10px;
176
+ margin: 0 0 10px 0;
177
+ }
178
+
179
+ .markdown pre code {
180
+ line-height: 1.6em;
181
+ }
182
+
183
+ .markdown p code, .markdown li code {
184
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
185
+ background-color: #f0f0f0;
186
+ color: black;
187
+ padding: 1px 3px;
188
+ }
189
+
190
+ .markdown ol, .markdown ul {
191
+ font-family: "Droid Sans", sans-serif;
192
+ margin: 5px 0 10px;
193
+ padding: 0 0 0 18px;
194
+ list-style-type: disc;
195
+ }
196
+
197
+ .markdown ol li, .markdown ul li {
198
+ padding: 3px 0px;
199
+ line-height: 1.4em;
200
+ color: #333333;
201
+ }
202
+
203
+ div.gist {
204
+ margin: 20px 0 25px 0 !important;
205
+ }
206
+
207
+ p.big, div.big p {
208
+ font-size: 1em;
209
+ margin-bottom: 10px;
210
+ }
211
+
212
+ span.weak {
213
+ color: #666666;
214
+ }
215
+
216
+ span.blank, span.empty {
217
+ color: #888888;
218
+ font-style: italic;
219
+ }
220
+
221
+ a {
222
+ color: #547f00;
223
+ }
224
+
225
+ b, strong {
226
+ font-family: "Droid Sans", sans-serif;
227
+ font-weight: bold;
228
+ }
229
+
230
+ .code {
231
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
232
+ }
233
+
234
+ pre {
235
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
236
+ background-color: #fcf6db;
237
+ border: 1px solid #e5e0c6;
238
+ padding: 10px;
239
+ }
240
+
241
+ pre code {
242
+ line-height: 1.6em;
243
+ }
244
+
245
+ .required {
246
+ font-weight: bold;
247
+ }
248
+
249
+ table.fullwidth {
250
+ width: 100%;
251
+ }
252
+
253
+ table thead tr th {
254
+ padding: 5px;
255
+ font-size: 0.9em;
256
+ color: #666666;
257
+ border-bottom: 1px solid #999999;
258
+ }
259
+
260
+ table tbody tr.offset {
261
+ background-color: #f5f5f5;
262
+ }
263
+
264
+ table tbody tr td {
265
+ padding: 6px;
266
+ font-size: 0.9em;
267
+ border-bottom: 1px solid #cccccc;
268
+ vertical-align: top;
269
+ line-height: 1.3em;
270
+ }
271
+
272
+ table tbody tr:last-child td {
273
+ border-bottom: none;
274
+ }
275
+
276
+ table tbody tr.offset {
277
+ background-color: #f0f0f0;
278
+ }
279
+
280
+ form.form_box {
281
+ background-color: #ebf3f9;
282
+ border: 1px solid #c3d9ec;
283
+ padding: 10px;
284
+ }
285
+
286
+ form.form_box label {
287
+ color: #0f6ab4 !important;
288
+ }
289
+
290
+ form.form_box input[type=submit] {
291
+ display: block;
292
+ padding: 10px;
293
+ }
294
+
295
+ form.form_box p {
296
+ font-size: 0.9em;
297
+ padding: 0 0 15px;
298
+ color: #7e7b6d;
299
+ }
300
+
301
+ form.form_box p a {
302
+ color: #646257;
303
+ }
304
+
305
+ form.form_box p strong {
306
+ color: black;
307
+ }
308
+
309
+ form.form_box p.weak {
310
+ font-size: 0.8em;
311
+ }
312
+
313
+ form.formtastic fieldset.inputs ol li p.inline-hints {
314
+ margin-left: 0;
315
+ font-style: italic;
316
+ font-size: 0.9em;
317
+ margin: 0;
318
+ }
319
+
320
+ form.formtastic fieldset.inputs ol li label {
321
+ display: block;
322
+ clear: both;
323
+ width: auto;
324
+ padding: 0 0 3px;
325
+ color: #666666;
326
+ }
327
+
328
+ form.formtastic fieldset.inputs ol li label abbr {
329
+ padding-left: 3px;
330
+ color: #888888;
331
+ }
332
+
333
+ form.formtastic fieldset.inputs ol li.required label {
334
+ color: black;
335
+ }
336
+
337
+ form.formtastic fieldset.inputs ol li.string input, form.formtastic fieldset.inputs ol li.url input, form.formtastic fieldset.inputs ol li.numeric input {
338
+ display: block;
339
+ padding: 4px;
340
+ width: auto;
341
+ clear: both;
342
+ }
343
+
344
+ form.formtastic fieldset.inputs ol li.string input.title, form.formtastic fieldset.inputs ol li.url input.title, form.formtastic fieldset.inputs ol li.numeric input.title {
345
+ font-size: 1.3em;
346
+ }
347
+
348
+ form.formtastic fieldset.inputs ol li.text textarea {
349
+ font-family: "Droid Sans", sans-serif;
350
+ height: 250px;
351
+ padding: 4px;
352
+ display: block;
353
+ clear: both;
354
+ }
355
+
356
+ form.formtastic fieldset.inputs ol li.select select {
357
+ display: block;
358
+ clear: both;
359
+ }
360
+
361
+ form.formtastic fieldset.inputs ol li.boolean {
362
+ float: none;
363
+ clear: both;
364
+ overflow: hidden;
365
+ display: block;
366
+ }
367
+
368
+ form.formtastic fieldset.inputs ol li.boolean input {
369
+ display: block;
370
+ float: left;
371
+ clear: none;
372
+ margin: 0 5px 0 0;
373
+ }
374
+
375
+ form.formtastic fieldset.inputs ol li.boolean label {
376
+ display: block;
377
+ float: left;
378
+ clear: none;
379
+ margin: 0;
380
+ padding: 0;
381
+ }
382
+
383
+ form.formtastic fieldset.buttons {
384
+ margin: 0;
385
+ padding: 0;
386
+ }
387
+
388
+ form.fullwidth ol li.string input, form.fullwidth ol li.url input, form.fullwidth ol li.text textarea, form.fullwidth ol li.numeric input {
389
+ width: 500px !important;
390
+ }
391
+
392
+ body {
393
+ font-family: "Droid Sans", sans-serif;
394
+ }
395
+
396
+ body #content_message {
397
+ margin: 10px 15px;
398
+ font-style: italic;
399
+ color: #999999;
400
+ }
401
+
402
+ body #header {
403
+ background-color: #89bf04;
404
+ padding: 14px;
405
+ }
406
+
407
+ body #header a#logo {
408
+ font-size: 1.5em;
409
+ font-weight: bold;
410
+ text-decoration: none;
411
+ background: transparent url(../images/logo_small.png) no-repeat left center;
412
+ padding: 20px 0 20px 40px;
413
+ color: white;
414
+ }
415
+
416
+ body #header form#api_selector {
417
+ display: block;
418
+ clear: none;
419
+ float: right;
420
+ }
421
+
422
+ body #header form#api_selector .input {
423
+ display: block;
424
+ clear: none;
425
+ float: left;
426
+ margin: 0 10px 0 0;
427
+ }
428
+
429
+ body #header form#api_selector .input input {
430
+ font-size: 0.9em;
431
+ padding: 3px;
432
+ margin: 0;
433
+ }
434
+
435
+ body #header form#api_selector .input input#input_baseUrl {
436
+ width: 400px;
437
+ }
438
+
439
+ body #header form#api_selector .input input#input_apiKey {
440
+ width: 200px;
441
+ }
442
+
443
+ body #header form#api_selector .input a#explore {
444
+ display: block;
445
+ text-decoration: none;
446
+ font-weight: bold;
447
+ padding: 6px 8px;
448
+ font-size: 0.9em;
449
+ color: white;
450
+ background-color: #547f00;
451
+ -moz-border-radius: 4px;
452
+ -webkit-border-radius: 4px;
453
+ -o-border-radius: 4px;
454
+ -ms-border-radius: 4px;
455
+ -khtml-border-radius: 4px;
456
+ border-radius: 4px;
457
+ }
458
+
459
+ body #header form#api_selector .input a#explore:hover {
460
+ background-color: #547f00;
461
+ }
462
+
463
+ body p#colophon {
464
+ margin: 0 15px 40px 15px;
465
+ padding: 10px 0;
466
+ font-size: 0.8em;
467
+ border-top: 1px solid #dddddd;
468
+ font-family: "Droid Sans", sans-serif;
469
+ color: #999999;
470
+ font-style: italic;
471
+ }
472
+
473
+ body p#colophon a {
474
+ text-decoration: none;
475
+ color: #547f00;
476
+ }
477
+
478
+ body ul#resources {
479
+ font-family: "Droid Sans", sans-serif;
480
+ font-size: 0.9em;
481
+ }
482
+
483
+ body ul#resources li.resource {
484
+ border-bottom: 1px solid #dddddd;
485
+ }
486
+
487
+ body ul#resources li.resource:last-child {
488
+ border-bottom: none;
489
+ }
490
+
491
+ body ul#resources li.resource div.heading {
492
+ border: 1px solid transparent;
493
+ float: none;
494
+ clear: both;
495
+ overflow: hidden;
496
+ display: block;
497
+ }
498
+
499
+ body ul#resources li.resource div.heading h2 {
500
+ color: #999999;
501
+ padding-left: 0;
502
+ display: block;
503
+ clear: none;
504
+ float: left;
505
+ font-family: "Droid Sans", sans-serif;
506
+ font-weight: bold;
507
+ }
508
+
509
+ body ul#resources li.resource div.heading h2 a {
510
+ color: #999999;
511
+ }
512
+
513
+ body ul#resources li.resource div.heading h2 a:hover {
514
+ color: black;
515
+ }
516
+
517
+ body ul#resources li.resource div.heading ul.options {
518
+ overflow: hidden;
519
+ padding: 0;
520
+ display: block;
521
+ clear: none;
522
+ float: right;
523
+ margin: 14px 10px 0 0;
524
+ }
525
+
526
+ body ul#resources li.resource div.heading ul.options li {
527
+ float: left;
528
+ clear: none;
529
+ margin: 0;
530
+ padding: 2px 10px;
531
+ border-right: 1px solid #dddddd;
532
+ }
533
+
534
+ body ul#resources li.resource div.heading ul.options li:first-child, body ul#resources li.resource div.heading ul.options li.first {
535
+ padding-left: 0;
536
+ }
537
+
538
+ body ul#resources li.resource div.heading ul.options li:last-child, body ul#resources li.resource div.heading ul.options li.last {
539
+ padding-right: 0;
540
+ border-right: none;
541
+ }
542
+
543
+ body ul#resources li.resource div.heading ul.options li {
544
+ color: #666666;
545
+ font-size: 0.9em;
546
+ }
547
+
548
+ body ul#resources li.resource div.heading ul.options li a {
549
+ color: #aaaaaa;
550
+ text-decoration: none;
551
+ }
552
+
553
+ body ul#resources li.resource div.heading ul.options li a:hover {
554
+ text-decoration: underline;
555
+ color: black;
556
+ }
557
+
558
+ body ul#resources li.resource:hover div.heading h2 a, body ul#resources li.resource.active div.heading h2 a {
559
+ color: black;
560
+ }
561
+
562
+ body ul#resources li.resource:hover div.heading ul.options li a, body ul#resources li.resource.active div.heading ul.options li a {
563
+ color: #555555;
564
+ }
565
+
566
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get {
567
+ float: none;
568
+ clear: both;
569
+ overflow: hidden;
570
+ display: block;
571
+ margin: 0 0 10px;
572
+ padding: 0;
573
+ }
574
+
575
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading {
576
+ float: none;
577
+ clear: both;
578
+ overflow: hidden;
579
+ display: block;
580
+ margin: 0;
581
+ padding: 0;
582
+ background-color: #e7f0f7;
583
+ border: 1px solid #c3d9ec;
584
+ }
585
+
586
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading h3 {
587
+ display: block;
588
+ clear: none;
589
+ float: left;
590
+ width: auto;
591
+ margin: 0;
592
+ padding: 0;
593
+ line-height: 1.1em;
594
+ color: black;
595
+ }
596
+
597
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading h3 span {
598
+ margin: 0;
599
+ padding: 0;
600
+ }
601
+
602
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading h3 span.http_method a {
603
+ text-transform: uppercase;
604
+ background-color: #0f6ab4;
605
+ text-decoration: none;
606
+ color: white;
607
+ display: inline-block;
608
+ width: 50px;
609
+ font-size: 0.7em;
610
+ text-align: center;
611
+ padding: 7px 0 4px 0;
612
+ -moz-border-radius: 2px;
613
+ -webkit-border-radius: 2px;
614
+ -o-border-radius: 2px;
615
+ -ms-border-radius: 2px;
616
+ -khtml-border-radius: 2px;
617
+ border-radius: 2px;
618
+ }
619
+
620
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading h3 span.path {
621
+ padding-left: 10px;
622
+ }
623
+
624
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading h3 span.path a {
625
+ color: black;
626
+ text-decoration: none;
627
+ }
628
+
629
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading h3 span.path a:hover {
630
+ text-decoration: underline;
631
+ }
632
+
633
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options {
634
+ overflow: hidden;
635
+ padding: 0;
636
+ display: block;
637
+ clear: none;
638
+ float: right;
639
+ margin: 6px 10px 0 0;
640
+ }
641
+
642
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li {
643
+ float: left;
644
+ clear: none;
645
+ margin: 0;
646
+ padding: 2px 10px;
647
+ border-right: 1px solid #dddddd;
648
+ }
649
+
650
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li:first-child, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li.first {
651
+ padding-left: 0;
652
+ }
653
+
654
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li:last-child, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li.last {
655
+ padding-right: 0;
656
+ border-right: none;
657
+ }
658
+
659
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li {
660
+ border-right-color: #c3d9ec;
661
+ color: #0f6ab4;
662
+ font-size: 0.9em;
663
+ }
664
+
665
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li a {
666
+ color: #0f6ab4;
667
+ text-decoration: none;
668
+ }
669
+
670
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li a:hover, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li a:active, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading ul.options li a.active {
671
+ text-decoration: underline;
672
+ }
673
+
674
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content {
675
+ background-color: #ebf3f9;
676
+ border: 1px solid #c3d9ec;
677
+ border-top: none;
678
+ padding: 10px;
679
+ -moz-border-radius-bottomleft: 6px;
680
+ -webkit-border-bottom-left-radius: 6px;
681
+ -o-border-bottom-left-radius: 6px;
682
+ -ms-border-bottom-left-radius: 6px;
683
+ -khtml-border-bottom-left-radius: 6px;
684
+ border-bottom-left-radius: 6px;
685
+ -moz-border-radius-bottomright: 6px;
686
+ -webkit-border-bottom-right-radius: 6px;
687
+ -o-border-bottom-right-radius: 6px;
688
+ -ms-border-bottom-right-radius: 6px;
689
+ -khtml-border-bottom-right-radius: 6px;
690
+ border-bottom-right-radius: 6px;
691
+ margin: 0 0 20px;
692
+ }
693
+
694
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content h4 {
695
+ color: #0f6ab4;
696
+ font-size: 1.1em;
697
+ margin: 0;
698
+ padding: 15px 0 5px;
699
+ }
700
+
701
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content form input[type='text'].error {
702
+ outline: 2px solid black;
703
+ outline-color: #cc0000;
704
+ }
705
+
706
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content div.sandbox_header {
707
+ float: none;
708
+ clear: both;
709
+ overflow: hidden;
710
+ display: block;
711
+ }
712
+
713
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content div.sandbox_header input.submit {
714
+ display: block;
715
+ clear: none;
716
+ float: left;
717
+ padding: 6px 8px;
718
+ }
719
+
720
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content div.sandbox_header img {
721
+ display: block;
722
+ clear: none;
723
+ float: right;
724
+ }
725
+
726
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content div.sandbox_header a {
727
+ padding: 4px 0 0 10px;
728
+ color: #6fa5d2;
729
+ display: inline-block;
730
+ font-size: 0.9em;
731
+ }
732
+
733
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content div.response div.block pre {
734
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
735
+ padding: 10px;
736
+ font-size: 0.9em;
737
+ max-height: 400px;
738
+ overflow-y: auto;
739
+ }
740
+
741
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post {
742
+ float: none;
743
+ clear: both;
744
+ overflow: hidden;
745
+ display: block;
746
+ margin: 0 0 10px;
747
+ padding: 0;
748
+ }
749
+
750
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading {
751
+ float: none;
752
+ clear: both;
753
+ overflow: hidden;
754
+ display: block;
755
+ margin: 0;
756
+ padding: 0;
757
+ background-color: #e7f6ec;
758
+ border: 1px solid #c3e8d1;
759
+ }
760
+
761
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading h3 {
762
+ display: block;
763
+ clear: none;
764
+ float: left;
765
+ width: auto;
766
+ margin: 0;
767
+ padding: 0;
768
+ line-height: 1.1em;
769
+ color: black;
770
+ }
771
+
772
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading h3 span {
773
+ margin: 0;
774
+ padding: 0;
775
+ }
776
+
777
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading h3 span.http_method a {
778
+ text-transform: uppercase;
779
+ background-color: #10a54a;
780
+ text-decoration: none;
781
+ color: white;
782
+ display: inline-block;
783
+ width: 50px;
784
+ font-size: 0.7em;
785
+ text-align: center;
786
+ padding: 7px 0 4px 0;
787
+ -moz-border-radius: 2px;
788
+ -webkit-border-radius: 2px;
789
+ -o-border-radius: 2px;
790
+ -ms-border-radius: 2px;
791
+ -khtml-border-radius: 2px;
792
+ border-radius: 2px;
793
+ }
794
+
795
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading h3 span.path {
796
+ padding-left: 10px;
797
+ }
798
+
799
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading h3 span.path a {
800
+ color: black;
801
+ text-decoration: none;
802
+ }
803
+
804
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading h3 span.path a:hover {
805
+ text-decoration: underline;
806
+ }
807
+
808
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options {
809
+ overflow: hidden;
810
+ padding: 0;
811
+ display: block;
812
+ clear: none;
813
+ float: right;
814
+ margin: 6px 10px 0 0;
815
+ }
816
+
817
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li {
818
+ float: left;
819
+ clear: none;
820
+ margin: 0;
821
+ padding: 2px 10px;
822
+ border-right: 1px solid #dddddd;
823
+ }
824
+
825
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li:first-child, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li.first {
826
+ padding-left: 0;
827
+ }
828
+
829
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li:last-child, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li.last {
830
+ padding-right: 0;
831
+ border-right: none;
832
+ }
833
+
834
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li {
835
+ border-right-color: #c3e8d1;
836
+ color: #10a54a;
837
+ font-size: 0.9em;
838
+ }
839
+
840
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li a {
841
+ color: #10a54a;
842
+ text-decoration: none;
843
+ }
844
+
845
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li a:hover, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li a:active, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading ul.options li a.active {
846
+ text-decoration: underline;
847
+ }
848
+
849
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content {
850
+ background-color: #ebf7f0;
851
+ border: 1px solid #c3e8d1;
852
+ border-top: none;
853
+ padding: 10px;
854
+ -moz-border-radius-bottomleft: 6px;
855
+ -webkit-border-bottom-left-radius: 6px;
856
+ -o-border-bottom-left-radius: 6px;
857
+ -ms-border-bottom-left-radius: 6px;
858
+ -khtml-border-bottom-left-radius: 6px;
859
+ border-bottom-left-radius: 6px;
860
+ -moz-border-radius-bottomright: 6px;
861
+ -webkit-border-bottom-right-radius: 6px;
862
+ -o-border-bottom-right-radius: 6px;
863
+ -ms-border-bottom-right-radius: 6px;
864
+ -khtml-border-bottom-right-radius: 6px;
865
+ border-bottom-right-radius: 6px;
866
+ margin: 0 0 20px;
867
+ }
868
+
869
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content h4 {
870
+ color: #10a54a;
871
+ font-size: 1.1em;
872
+ margin: 0;
873
+ padding: 15px 0 5px;
874
+ }
875
+
876
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content form input[type='text'].error {
877
+ outline: 2px solid black;
878
+ outline-color: #cc0000;
879
+ }
880
+
881
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content div.sandbox_header {
882
+ float: none;
883
+ clear: both;
884
+ overflow: hidden;
885
+ display: block;
886
+ }
887
+
888
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content div.sandbox_header input.submit {
889
+ display: block;
890
+ clear: none;
891
+ float: left;
892
+ padding: 6px 8px;
893
+ }
894
+
895
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content div.sandbox_header img {
896
+ display: block;
897
+ clear: none;
898
+ float: right;
899
+ }
900
+
901
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content div.sandbox_header a {
902
+ padding: 4px 0 0 10px;
903
+ color: #6fc992;
904
+ display: inline-block;
905
+ font-size: 0.9em;
906
+ }
907
+
908
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content div.response div.block pre {
909
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
910
+ padding: 10px;
911
+ font-size: 0.9em;
912
+ max-height: 400px;
913
+ overflow-y: auto;
914
+ }
915
+
916
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put {
917
+ float: none;
918
+ clear: both;
919
+ overflow: hidden;
920
+ display: block;
921
+ margin: 0 0 10px;
922
+ padding: 0;
923
+ }
924
+
925
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading {
926
+ float: none;
927
+ clear: both;
928
+ overflow: hidden;
929
+ display: block;
930
+ margin: 0;
931
+ padding: 0;
932
+ background-color: #f9f2e9;
933
+ border: 1px solid #f0e0ca;
934
+ }
935
+
936
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading h3 {
937
+ display: block;
938
+ clear: none;
939
+ float: left;
940
+ width: auto;
941
+ margin: 0;
942
+ padding: 0;
943
+ line-height: 1.1em;
944
+ color: black;
945
+ }
946
+
947
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading h3 span {
948
+ margin: 0;
949
+ padding: 0;
950
+ }
951
+
952
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading h3 span.http_method a {
953
+ text-transform: uppercase;
954
+ background-color: #c5862b;
955
+ text-decoration: none;
956
+ color: white;
957
+ display: inline-block;
958
+ width: 50px;
959
+ font-size: 0.7em;
960
+ text-align: center;
961
+ padding: 7px 0 4px;
962
+ -moz-border-radius: 2px;
963
+ -webkit-border-radius: 2px;
964
+ -o-border-radius: 2px;
965
+ -ms-border-radius: 2px;
966
+ -khtml-border-radius: 2px;
967
+ border-radius: 2px;
968
+ }
969
+
970
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading h3 span.path {
971
+ padding-left: 10px;
972
+ }
973
+
974
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading h3 span.path a {
975
+ color: black;
976
+ text-decoration: none;
977
+ }
978
+
979
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading h3 span.path a:hover {
980
+ text-decoration: underline;
981
+ }
982
+
983
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options {
984
+ overflow: hidden;
985
+ padding: 0;
986
+ display: block;
987
+ clear: none;
988
+ float: right;
989
+ margin: 6px 10px 0 0;
990
+ }
991
+
992
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li {
993
+ float: left;
994
+ clear: none;
995
+ margin: 0;
996
+ padding: 2px 10px;
997
+ border-right: 1px solid #dddddd;
998
+ }
999
+
1000
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li:first-child, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li.first {
1001
+ padding-left: 0;
1002
+ }
1003
+
1004
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li:last-child, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li.last {
1005
+ padding-right: 0;
1006
+ border-right: none;
1007
+ }
1008
+
1009
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li {
1010
+ border-right-color: #f0e0ca;
1011
+ color: #c5862b;
1012
+ font-size: 0.9em;
1013
+ }
1014
+
1015
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li a {
1016
+ color: #c5862b;
1017
+ text-decoration: none;
1018
+ }
1019
+
1020
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li a:hover, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li a:active, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.heading ul.options li a.active {
1021
+ text-decoration: underline;
1022
+ }
1023
+
1024
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content {
1025
+ background-color: #faf5ee;
1026
+ border: 1px solid #f0e0ca;
1027
+ border-top: none;
1028
+ padding: 10px;
1029
+ -moz-border-radius-bottomleft: 6px;
1030
+ -webkit-border-bottom-left-radius: 6px;
1031
+ -o-border-bottom-left-radius: 6px;
1032
+ -ms-border-bottom-left-radius: 6px;
1033
+ -khtml-border-bottom-left-radius: 6px;
1034
+ border-bottom-left-radius: 6px;
1035
+ -moz-border-radius-bottomright: 6px;
1036
+ -webkit-border-bottom-right-radius: 6px;
1037
+ -o-border-bottom-right-radius: 6px;
1038
+ -ms-border-bottom-right-radius: 6px;
1039
+ -khtml-border-bottom-right-radius: 6px;
1040
+ border-bottom-right-radius: 6px;
1041
+ margin: 0 0 20px;
1042
+ }
1043
+
1044
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content h4 {
1045
+ color: #c5862b;
1046
+ font-size: 1.1em;
1047
+ margin: 0;
1048
+ padding: 15px 0 5px;
1049
+ }
1050
+
1051
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content form input[type='text'].error {
1052
+ outline: 2px solid black;
1053
+ outline-color: #cc0000;
1054
+ }
1055
+
1056
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content div.sandbox_header {
1057
+ float: none;
1058
+ clear: both;
1059
+ overflow: hidden;
1060
+ display: block;
1061
+ }
1062
+
1063
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content div.sandbox_header input.submit {
1064
+ display: block;
1065
+ clear: none;
1066
+ float: left;
1067
+ padding: 6px 8px;
1068
+ }
1069
+
1070
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content div.sandbox_header img {
1071
+ display: block;
1072
+ clear: none;
1073
+ float: right;
1074
+ }
1075
+
1076
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content div.sandbox_header a {
1077
+ padding: 4px 0 0 10px;
1078
+ color: #dcb67f;
1079
+ display: inline-block;
1080
+ font-size: 0.9em;
1081
+ }
1082
+
1083
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.put div.content div.response div.block pre {
1084
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
1085
+ padding: 10px;
1086
+ font-size: 0.9em;
1087
+ max-height: 400px;
1088
+ overflow-y: auto;
1089
+ }
1090
+
1091
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch {
1092
+ float: none;
1093
+ clear: both;
1094
+ overflow: hidden;
1095
+ display: block;
1096
+ margin: 0 0 10px;
1097
+ padding: 0;
1098
+ }
1099
+
1100
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading {
1101
+ float: none;
1102
+ clear: both;
1103
+ overflow: hidden;
1104
+ display: block;
1105
+ margin: 0;
1106
+ padding: 0;
1107
+ background-color: #FCE9E3;
1108
+ border: 1px solid #F5D5C3;
1109
+ }
1110
+
1111
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading h3 {
1112
+ display: block;
1113
+ clear: none;
1114
+ float: left;
1115
+ width: auto;
1116
+ margin: 0;
1117
+ padding: 0;
1118
+ line-height: 1.1em;
1119
+ color: black;
1120
+ }
1121
+
1122
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading h3 span {
1123
+ margin: 0;
1124
+ padding: 0;
1125
+ }
1126
+
1127
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading h3 span.http_method a {
1128
+ text-transform: uppercase;
1129
+ background-color: #D38042;
1130
+ text-decoration: none;
1131
+ color: white;
1132
+ display: inline-block;
1133
+ width: 50px;
1134
+ font-size: 0.7em;
1135
+ text-align: center;
1136
+ padding: 7px 0 4px 0;
1137
+ -moz-border-radius: 2px;
1138
+ -webkit-border-radius: 2px;
1139
+ -o-border-radius: 2px;
1140
+ -ms-border-radius: 2px;
1141
+ -khtml-border-radius: 2px;
1142
+ border-radius: 2px;
1143
+ }
1144
+
1145
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading h3 span.path {
1146
+ padding-left: 10px;
1147
+ }
1148
+
1149
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading h3 span.path a {
1150
+ color: black;
1151
+ text-decoration: none;
1152
+ }
1153
+
1154
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading h3 span.path a:hover {
1155
+ text-decoration: underline;
1156
+ }
1157
+
1158
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options {
1159
+ overflow: hidden;
1160
+ padding: 0;
1161
+ display: block;
1162
+ clear: none;
1163
+ float: right;
1164
+ margin: 6px 10px 0 0;
1165
+ }
1166
+
1167
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li {
1168
+ float: left;
1169
+ clear: none;
1170
+ margin: 0;
1171
+ padding: 2px 10px;
1172
+ border-right: 1px solid #dddddd;
1173
+ }
1174
+
1175
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li:first-child, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li.first {
1176
+ padding-left: 0;
1177
+ }
1178
+
1179
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li:last-child, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li.last {
1180
+ padding-right: 0;
1181
+ border-right: none;
1182
+ }
1183
+
1184
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li {
1185
+ border-right-color: #f0cecb;
1186
+ color: #D38042;
1187
+ font-size: 0.9em;
1188
+ }
1189
+
1190
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li a {
1191
+ color: #D38042;
1192
+ text-decoration: none;
1193
+ }
1194
+
1195
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li a:hover, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li a:active, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.heading ul.options li a.active {
1196
+ text-decoration: underline;
1197
+ }
1198
+
1199
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content {
1200
+ background-color: #faf0ef;
1201
+ border: 1px solid #f0cecb;
1202
+ border-top: none;
1203
+ padding: 10px;
1204
+ -moz-border-radius-bottomleft: 6px;
1205
+ -webkit-border-bottom-left-radius: 6px;
1206
+ -o-border-bottom-left-radius: 6px;
1207
+ -ms-border-bottom-left-radius: 6px;
1208
+ -khtml-border-bottom-left-radius: 6px;
1209
+ border-bottom-left-radius: 6px;
1210
+ -moz-border-radius-bottomright: 6px;
1211
+ -webkit-border-bottom-right-radius: 6px;
1212
+ -o-border-bottom-right-radius: 6px;
1213
+ -ms-border-bottom-right-radius: 6px;
1214
+ -khtml-border-bottom-right-radius: 6px;
1215
+ border-bottom-right-radius: 6px;
1216
+ margin: 0 0 20px;
1217
+ }
1218
+
1219
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content h4 {
1220
+ color: #D38042;
1221
+ font-size: 1.1em;
1222
+ margin: 0;
1223
+ padding: 15px 0 5px;
1224
+ }
1225
+
1226
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content form input[type='text'].error {
1227
+ outline: 2px solid black;
1228
+ outline-color: #F5D5C3;
1229
+ }
1230
+
1231
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content div.sandbox_header {
1232
+ float: none;
1233
+ clear: both;
1234
+ overflow: hidden;
1235
+ display: block;
1236
+ }
1237
+
1238
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content div.sandbox_header input.submit {
1239
+ display: block;
1240
+ clear: none;
1241
+ float: left;
1242
+ padding: 6px 8px;
1243
+ }
1244
+
1245
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content div.sandbox_header img {
1246
+ display: block;
1247
+ clear: none;
1248
+ float: right;
1249
+ }
1250
+
1251
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content div.sandbox_header a {
1252
+ padding: 4px 0 0 10px;
1253
+ color: #dcb67f;
1254
+ display: inline-block;
1255
+ font-size: 0.9em;
1256
+ }
1257
+
1258
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.patch div.content div.response div.block pre {
1259
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
1260
+ padding: 10px;
1261
+ font-size: 0.9em;
1262
+ max-height: 400px;
1263
+ overflow-y: auto;
1264
+ }
1265
+
1266
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head {
1267
+ float: none;
1268
+ clear: both;
1269
+ overflow: hidden;
1270
+ display: block;
1271
+ margin: 0 0 10px 0;
1272
+ padding: 0 0 0 0px;
1273
+ }
1274
+
1275
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading {
1276
+ float: none;
1277
+ clear: both;
1278
+ overflow: hidden;
1279
+ display: block;
1280
+ margin: 0 0 0 0;
1281
+ padding: 0;
1282
+ background-color: #fcffcd;
1283
+ border: 1px solid black;
1284
+ border-color: #ffd20f;
1285
+ }
1286
+
1287
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading h3 {
1288
+ display: block;
1289
+ clear: none;
1290
+ float: left;
1291
+ width: auto;
1292
+ margin: 0;
1293
+ padding: 0;
1294
+ line-height: 1.1em;
1295
+ color: black;
1296
+ }
1297
+
1298
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading h3 span {
1299
+ margin: 0;
1300
+ padding: 0;
1301
+ }
1302
+
1303
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading h3 span.http_method a {
1304
+ text-transform: uppercase;
1305
+ background-color: #ffd20f;
1306
+ text-decoration: none;
1307
+ color: white;
1308
+ display: inline-block;
1309
+ width: 50px;
1310
+ font-size: 0.7em;
1311
+ text-align: center;
1312
+ padding: 7px 0 4px 0;
1313
+ -moz-border-radius: 2px;
1314
+ -webkit-border-radius: 2px;
1315
+ -o-border-radius: 2px;
1316
+ -ms-border-radius: 2px;
1317
+ -khtml-border-radius: 2px;
1318
+ border-radius: 2px;
1319
+ }
1320
+
1321
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading h3 span.path {
1322
+ padding-left: 10px;
1323
+ }
1324
+
1325
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading h3 span.path a {
1326
+ color: black;
1327
+ text-decoration: none;
1328
+ }
1329
+
1330
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading h3 span.path a:hover {
1331
+ text-decoration: underline;
1332
+ }
1333
+
1334
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading ul.options {
1335
+ float: none;
1336
+ clear: both;
1337
+ overflow: hidden;
1338
+ margin: 0;
1339
+ padding: 0;
1340
+ display: block;
1341
+ clear: none;
1342
+ float: right;
1343
+ margin: 6px 10px 0 0;
1344
+ }
1345
+
1346
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading ul.options li {
1347
+ float: left;
1348
+ clear: none;
1349
+ margin: 0;
1350
+ padding: 2px 10px;
1351
+ border-right: 1px solid #dddddd;
1352
+ }
1353
+
1354
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading ul.options li:first-child, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading ul.options li.first {
1355
+ padding-left: 0;
1356
+ }
1357
+
1358
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading ul.options li:last-child, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading ul.options li.last {
1359
+ padding-right: 0;
1360
+ border-right: none;
1361
+ }
1362
+
1363
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading ul.options li {
1364
+ border-right-color: #ffd20f;
1365
+ color: #ffd20f;
1366
+ font-size: 0.9em;
1367
+ }
1368
+
1369
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading ul.options li a {
1370
+ color: #ffd20f;
1371
+ text-decoration: none;
1372
+ }
1373
+
1374
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading ul.options li a:hover, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading ul.options li a:active, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.heading ul.options li a.active {
1375
+ text-decoration: underline;
1376
+ }
1377
+
1378
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.content {
1379
+ background-color: #fcffcd;
1380
+ border: 1px solid black;
1381
+ border-color: #ffd20f;
1382
+ border-top: none;
1383
+ padding: 10px;
1384
+ -moz-border-radius-bottomleft: 6px;
1385
+ -webkit-border-bottom-left-radius: 6px;
1386
+ -o-border-bottom-left-radius: 6px;
1387
+ -ms-border-bottom-left-radius: 6px;
1388
+ -khtml-border-bottom-left-radius: 6px;
1389
+ border-bottom-left-radius: 6px;
1390
+ -moz-border-radius-bottomright: 6px;
1391
+ -webkit-border-bottom-right-radius: 6px;
1392
+ -o-border-bottom-right-radius: 6px;
1393
+ -ms-border-bottom-right-radius: 6px;
1394
+ -khtml-border-bottom-right-radius: 6px;
1395
+ border-bottom-right-radius: 6px;
1396
+ margin: 0 0 20px 0;
1397
+ }
1398
+
1399
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.content h4 {
1400
+ color: #ffd20f;
1401
+ font-size: 1.1em;
1402
+ margin: 0;
1403
+ padding: 15px 0 5px 0px;
1404
+ }
1405
+
1406
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.content form input[type='text'].error {
1407
+ outline: 2px solid black;
1408
+ outline-color: #cc0000;
1409
+ }
1410
+
1411
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.content div.sandbox_header {
1412
+ float: none;
1413
+ clear: both;
1414
+ overflow: hidden;
1415
+ display: block;
1416
+ }
1417
+
1418
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.content div.sandbox_header input.submit {
1419
+ display: block;
1420
+ clear: none;
1421
+ float: left;
1422
+ padding: 6px 8px;
1423
+ }
1424
+
1425
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.content div.sandbox_header img {
1426
+ display: block;
1427
+ display: block;
1428
+ clear: none;
1429
+ float: right;
1430
+ }
1431
+
1432
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.content div.sandbox_header a {
1433
+ padding: 4px 0 0 10px;
1434
+ color: #6fc992;
1435
+ display: inline-block;
1436
+ font-size: 0.9em;
1437
+ }
1438
+
1439
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.content div.response div.block {
1440
+ background-color: #fcf6db;
1441
+ border: 1px solid black;
1442
+ border-color: #e5e0c6;
1443
+ }
1444
+
1445
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.head div.content div.response div.block pre {
1446
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
1447
+ padding: 10px;
1448
+ font-size: 0.9em;
1449
+ max-height: 400px;
1450
+ overflow-y: auto;
1451
+ }
1452
+
1453
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete {
1454
+ float: none;
1455
+ clear: both;
1456
+ overflow: hidden;
1457
+ display: block;
1458
+ margin: 0 0 10px;
1459
+ padding: 0;
1460
+ }
1461
+
1462
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading {
1463
+ float: none;
1464
+ clear: both;
1465
+ overflow: hidden;
1466
+ display: block;
1467
+ margin: 0;
1468
+ padding: 0;
1469
+ background-color: #f5e8e8;
1470
+ border: 1px solid #e8c6c7;
1471
+ }
1472
+
1473
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading h3 {
1474
+ display: block;
1475
+ clear: none;
1476
+ float: left;
1477
+ width: auto;
1478
+ margin: 0;
1479
+ padding: 0;
1480
+ line-height: 1.1em;
1481
+ color: black;
1482
+ }
1483
+
1484
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading h3 span {
1485
+ margin: 0;
1486
+ padding: 0;
1487
+ }
1488
+
1489
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading h3 span.http_method a {
1490
+ text-transform: uppercase;
1491
+ background-color: #a41e22;
1492
+ text-decoration: none;
1493
+ color: white;
1494
+ display: inline-block;
1495
+ width: 50px;
1496
+ font-size: 0.7em;
1497
+ text-align: center;
1498
+ padding: 7px 0 4px 0;
1499
+ -moz-border-radius: 2px;
1500
+ -webkit-border-radius: 2px;
1501
+ -o-border-radius: 2px;
1502
+ -ms-border-radius: 2px;
1503
+ -khtml-border-radius: 2px;
1504
+ border-radius: 2px;
1505
+ }
1506
+
1507
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading h3 span.path {
1508
+ padding-left: 10px;
1509
+ }
1510
+
1511
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading h3 span.path a {
1512
+ color: black;
1513
+ text-decoration: none;
1514
+ }
1515
+
1516
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading h3 span.path a:hover {
1517
+ text-decoration: underline;
1518
+ }
1519
+
1520
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options {
1521
+ overflow: hidden;
1522
+ padding: 0;
1523
+ display: block;
1524
+ clear: none;
1525
+ float: right;
1526
+ margin: 6px 10px 0 0;
1527
+ }
1528
+
1529
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li {
1530
+ float: left;
1531
+ clear: none;
1532
+ margin: 0;
1533
+ padding: 2px 10px;
1534
+ border-right: 1px solid #dddddd;
1535
+ }
1536
+
1537
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li:first-child, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li.first {
1538
+ padding-left: 0;
1539
+ }
1540
+
1541
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li:last-child, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li.last {
1542
+ padding-right: 0;
1543
+ border-right: none;
1544
+ }
1545
+
1546
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li {
1547
+ border-right-color: #e8c6c7;
1548
+ color: #a41e22;
1549
+ font-size: 0.9em;
1550
+ }
1551
+
1552
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li a {
1553
+ color: #a41e22;
1554
+ text-decoration: none;
1555
+ }
1556
+
1557
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li a:hover, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li a:active, body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.heading ul.options li a.active {
1558
+ text-decoration: underline;
1559
+ }
1560
+
1561
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content {
1562
+ background-color: #f7eded;
1563
+ border: 1px solid #e8c6c7;
1564
+ border-top: none;
1565
+ padding: 10px;
1566
+ -moz-border-radius-bottomleft: 6px;
1567
+ -webkit-border-bottom-left-radius: 6px;
1568
+ -o-border-bottom-left-radius: 6px;
1569
+ -ms-border-bottom-left-radius: 6px;
1570
+ -khtml-border-bottom-left-radius: 6px;
1571
+ border-bottom-left-radius: 6px;
1572
+ -moz-border-radius-bottomright: 6px;
1573
+ -webkit-border-bottom-right-radius: 6px;
1574
+ -o-border-bottom-right-radius: 6px;
1575
+ -ms-border-bottom-right-radius: 6px;
1576
+ -khtml-border-bottom-right-radius: 6px;
1577
+ border-bottom-right-radius: 6px;
1578
+ margin: 0 0 20px 0;
1579
+ }
1580
+
1581
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content h4 {
1582
+ color: #a41e22;
1583
+ font-size: 1.1em;
1584
+ margin: 0;
1585
+ padding: 15px 0 5px;
1586
+ }
1587
+
1588
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content form input[type='text'].error {
1589
+ outline: 2px solid black;
1590
+ outline-color: #cc0000;
1591
+ }
1592
+
1593
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content div.sandbox_header {
1594
+ float: none;
1595
+ clear: both;
1596
+ overflow: hidden;
1597
+ display: block;
1598
+ }
1599
+
1600
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content div.sandbox_header input.submit {
1601
+ display: block;
1602
+ clear: none;
1603
+ float: left;
1604
+ padding: 6px 8px;
1605
+ }
1606
+
1607
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content div.sandbox_header img {
1608
+ display: block;
1609
+ clear: none;
1610
+ float: right;
1611
+ }
1612
+
1613
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content div.sandbox_header a {
1614
+ padding: 4px 0 0 10px;
1615
+ color: #c8787a;
1616
+ display: inline-block;
1617
+ font-size: 0.9em;
1618
+ }
1619
+
1620
+ body ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.delete div.content div.response div.block pre {
1621
+ font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
1622
+ padding: 10px;
1623
+ font-size: 0.9em;
1624
+ max-height: 400px;
1625
+ overflow-y: auto;
1626
+ }
1627
+
1628
+
1629
+ .model-signature {
1630
+ font-family: "Droid Sans", sans-serif;
1631
+ font-size: 1em;
1632
+ line-height: 1.5em;
1633
+ }
1634
+
1635
+ .model-signature .description div {
1636
+ font-size: 0.9em;
1637
+ line-height: 1.5em;
1638
+ margin-left: 1em;
1639
+ }
1640
+
1641
+ .model-signature .description .strong {
1642
+ font-weight: bold;
1643
+ color: #000;
1644
+ font-size: .9em;
1645
+ }
1646
+
1647
+ .model-signature .description .stronger {
1648
+ font-weight: bold;
1649
+ color: #000;
1650
+ }
1651
+
1652
+ .model-signature .signature-nav a {
1653
+ text-decoration: none;
1654
+ color: #AAA;
1655
+ }
1656
+
1657
+ .model-signature pre {
1658
+ font-size: .85em;
1659
+ line-height: 1.2em;
1660
+ overflow: auto;
1661
+ max-height: 200px;
1662
+ cursor: pointer;
1663
+ }
1664
+
1665
+ .model-signature pre:hover {
1666
+ background-color: #ffffdd;
1667
+ }
1668
+
1669
+ .model-signature .snippet small {
1670
+ font-size: 0.75em;
1671
+ }
1672
+
1673
+ .model-signature .signature-container {
1674
+ clear: both;
1675
+ }
1676
+
1677
+ .model-signature .signature-nav a:hover {
1678
+ text-decoration: underline;
1679
+ color: black;
1680
+ }
1681
+
1682
+ .model-signature .signature-nav .selected {
1683
+ color: black;
1684
+ text-decoration: none;
1685
+ }
1686
+
1687
+ .model-signature ul.signature-nav {
1688
+ display: block;
1689
+ margin: 0;
1690
+ padding: 0;
1691
+ }
1692
+
1693
+ .model-signature ul.signature-nav li {
1694
+ float: left;
1695
+ margin: 0 5px 5px 0;
1696
+ padding: 2px 5px 2px 0;
1697
+ border-right: 1px solid #ddd;
1698
+ }
1699
+
1700
+ .model-signature ul.signature-nav li:last-child {
1701
+ padding-right: 0;
1702
+ border-right: none;
1703
+ }
1704
+
1705
+ .model-signature .propName {
1706
+ font-weight: bold;
1707
+ }
1708
+ .model-signature .propType {
1709
+ color: #5555aa;
1710
+ }
1711
+ .model-signature .propOptKey {
1712
+ font-style: italic;
1713
+ }
1714
+ .model-signature .propOpt {
1715
+ color: #555;
1716
+ }
1717
+
1718
+ pre code {
1719
+ background: none;
1720
+ }
1721
+
1722
+ .content pre {
1723
+ font-size: 12px;
1724
+ margin-top: 5px;
1725
+ padding: 5px;
1726
+ }
1727
+
1728
+ .content > .content-type > div > label {
1729
+ clear: both;
1730
+ display: block;
1731
+ color: #0F6AB4;
1732
+ font-size: 1.1em;
1733
+ margin: 0;
1734
+ padding: 15px 0 5px;
1735
+ }
1736
+
1737
+ .swagger-ui-wrap {
1738
+ max-width: 960px;
1739
+ margin-left: auto;
1740
+ margin-right: auto;
1741
+ }
1742
+
1743
+ .icon-btn {
1744
+ cursor: pointer;
1745
+ }
1746
+
1747
+ #message-bar {
1748
+ min-height: 30px;
1749
+ text-align: center;
1750
+ padding-top: 10px;
1751
+ }
1752
+
1753
+ .message-success {
1754
+ color: #89BF04;
1755
+ }
1756
+
1757
+ .message-fail {
1758
+ color: #cc0000;
1759
+ }