T133 Text alignment as well as mediaType and messageBody has been adjusted
This commit is contained in:
@@ -190,7 +190,8 @@ button[name="removeHeader"] {
|
||||
table { border-collapse: collapse; }
|
||||
tr { border: none; }
|
||||
td {
|
||||
border: none;
|
||||
border: none;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
button{
|
||||
@@ -222,4 +223,13 @@ label { display: block;
|
||||
input:focus + .hint { display: inline; float:right;}
|
||||
textarea:focus + .hint { display: inline; float:right; }
|
||||
textarea:focus + .hint { display: inline; float:right; }
|
||||
select:focus + .hint { display: inline; float:right; }
|
||||
select:focus + .hint { display: inline; float:right; }
|
||||
|
||||
select#media-type {
|
||||
width: 500px;
|
||||
}
|
||||
|
||||
textarea#message-body {
|
||||
width: 500px;
|
||||
height: 300px;
|
||||
}
|
||||
@@ -41,11 +41,12 @@
|
||||
<tr>
|
||||
<td>Media type:</td>
|
||||
<td>
|
||||
<label><select th:field="*{mediaType}">
|
||||
<option value="application/xml">application/xml</option>
|
||||
<option value="application/json">application/json</option>
|
||||
<option value="text/xml">text/xml</option>
|
||||
</select>
|
||||
<label>
|
||||
<select id="media-type" th:field="*{mediaType}">
|
||||
<option value="application/xml">application/xml</option>
|
||||
<option value="application/json">application/json</option>
|
||||
<option value="text/xml">text/xml</option>
|
||||
</select>
|
||||
<span class="hint">Standard that indicates the nature and format of a document, file, or assortment of bytes.</span>
|
||||
</label>
|
||||
</td>
|
||||
@@ -56,8 +57,9 @@
|
||||
|
||||
<tr>
|
||||
<td>Mocked response body:</td>
|
||||
<td><label><textarea rows="4" cols="30" th:field="*{messageBody}"
|
||||
placeholder="Your message body"></textarea>
|
||||
<!-- rows="4" cols="30"-->
|
||||
<td><label>
|
||||
<textarea id="message-body" th:field="*{messageBody}" placeholder="Your message body"></textarea>
|
||||
<span class="hint">The resource data that will be requested by the client.</span>
|
||||
</label>
|
||||
</td>
|
||||
|
||||
Reference in New Issue
Block a user