[TASK] Rest API tool through submit payment

This commit is contained in:
mDuo13
2014-09-18 18:49:08 -07:00
parent a46a2a5a05
commit fd4be275ab
3 changed files with 477 additions and 3 deletions

View File

@@ -87,7 +87,7 @@ h2 {
margin:0;
padding:0;
}
#response {
#response, #response_body {
min-height:100px;
border-top-left-radius:0px !important;
border-top-right-radius:0px !important;
@@ -264,8 +264,9 @@ ul.toolbar li {
/* JSON syntax highlighting */
#request,
#response {
#request, #request_body,
#response, #response_body,
#rest_url_wrapper {
font-family:'inconsolata',monospace;
font-size:13px;
line-height:20px;
@@ -343,3 +344,33 @@ span.cm-number {
span.cm-atom {
color:#66327C !important;
}
/* Rest-tool-specific stuff */
#rest_method {
display: inline-block;
padding: 6px;
vertical-align: middle;
border: 1px dotted #aaa;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
margin-bottom: 3px;
background-color: #c7254e;
color: white;
appearance: none;
-moz-appearance: none;
}
#rest_url_wrapper {
font-family: sans-serif;
display: inline-block;
margin-bottom: -11px;
}
#rest_url {
width: auto;
border: 0;
background: none;
font-size:13px;
}