Merge pull request #540 from bezhermoso/throbber_img_reference
Moved reference to throbber.gif to CSS file.
This commit is contained in:
13
dist/css/screen.css
vendored
13
dist/css/screen.css
vendored
@@ -743,17 +743,20 @@
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
}
|
}
|
||||||
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content div.sandbox_header img {
|
|
||||||
display: block;
|
|
||||||
clear: none;
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content div.sandbox_header input.submit {
|
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content div.sandbox_header input.submit {
|
||||||
display: block;
|
display: block;
|
||||||
clear: none;
|
clear: none;
|
||||||
float: left;
|
float: left;
|
||||||
padding: 6px 8px;
|
padding: 6px 8px;
|
||||||
}
|
}
|
||||||
|
.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 {
|
||||||
|
background-image: url('../images/throbber.gif');
|
||||||
|
width: 128px;
|
||||||
|
height: 16px;
|
||||||
|
display: block;
|
||||||
|
clear: none;
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content form input[type='text'].error {
|
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content form input[type='text'].error {
|
||||||
outline: 2px solid black;
|
outline: 2px solid black;
|
||||||
outline-color: #cc0000;
|
outline-color: #cc0000;
|
||||||
|
|||||||
@@ -743,17 +743,20 @@
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
}
|
}
|
||||||
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content div.sandbox_header img {
|
|
||||||
display: block;
|
|
||||||
clear: none;
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content div.sandbox_header input.submit {
|
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content div.sandbox_header input.submit {
|
||||||
display: block;
|
display: block;
|
||||||
clear: none;
|
clear: none;
|
||||||
float: left;
|
float: left;
|
||||||
padding: 6px 8px;
|
padding: 6px 8px;
|
||||||
}
|
}
|
||||||
|
.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 {
|
||||||
|
background-image: url('../images/throbber.gif');
|
||||||
|
width: 128px;
|
||||||
|
height: 16px;
|
||||||
|
display: block;
|
||||||
|
clear: none;
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content form input[type='text'].error {
|
.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.content form input[type='text'].error {
|
||||||
outline: 2px solid black;
|
outline: 2px solid black;
|
||||||
outline-color: #cc0000;
|
outline-color: #cc0000;
|
||||||
|
|||||||
@@ -671,17 +671,20 @@
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
}
|
}
|
||||||
img {
|
|
||||||
display: block;
|
|
||||||
clear: none;
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
input.submit {
|
input.submit {
|
||||||
display: block;
|
display: block;
|
||||||
clear: none;
|
clear: none;
|
||||||
float: left;
|
float: left;
|
||||||
padding: 6px 8px;
|
padding: 6px 8px;
|
||||||
}
|
}
|
||||||
|
span.response_throbber {
|
||||||
|
background-image: url('../images/throbber.gif');
|
||||||
|
width: 128px;
|
||||||
|
height: 16px;
|
||||||
|
display: block;
|
||||||
|
clear: none;
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
form {
|
form {
|
||||||
input[type='text'].error {
|
input[type='text'].error {
|
||||||
|
|||||||
@@ -83,7 +83,7 @@
|
|||||||
<div class='sandbox_header'>
|
<div class='sandbox_header'>
|
||||||
<input class='submit' name='commit' type='button' value='Try it out!' />
|
<input class='submit' name='commit' type='button' value='Try it out!' />
|
||||||
<a href='#' class='response_hider' style='display:none'>Hide Response</a>
|
<a href='#' class='response_hider' style='display:none'>Hide Response</a>
|
||||||
<img alt='Throbber' class='response_throbber' src='images/throbber.gif' style='display:none' />
|
<span class='response_throbber' style='display:none'></span>
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</form>
|
</form>
|
||||||
|
|||||||
Reference in New Issue
Block a user