T133 Text alignment as well as mediaType and messageBody has been adjusted
This commit is contained in:
3
.idea/workspace.xml
generated
3
.idea/workspace.xml
generated
@@ -21,9 +21,8 @@
|
|||||||
<component name="ChangeListManager">
|
<component name="ChangeListManager">
|
||||||
<list default="true" id="458cde88-df3d-44bc-9d57-a33823e2f1a6" name="Default Changelist" comment="">
|
<list default="true" id="458cde88-df3d-44bc-9d57-a33823e2f1a6" name="Default Changelist" comment="">
|
||||||
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
||||||
<change beforePath="$PROJECT_DIR$/src/main/java/com/release11/klaus/controller/KlausMvcController.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/com/release11/klaus/controller/KlausMvcController.java" afterDir="false" />
|
<change beforePath="$PROJECT_DIR$/src/main/resources/static/css/styles.css" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/resources/static/css/styles.css" afterDir="false" />
|
||||||
<change beforePath="$PROJECT_DIR$/src/main/resources/templates/index.html" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/resources/templates/index.html" afterDir="false" />
|
<change beforePath="$PROJECT_DIR$/src/main/resources/templates/index.html" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/resources/templates/index.html" afterDir="false" />
|
||||||
<change beforePath="$PROJECT_DIR$/src/test/java/com/release11/klaus/controller/KlausMvcControllerTest.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/test/java/com/release11/klaus/controller/KlausMvcControllerTest.java" afterDir="false" />
|
|
||||||
</list>
|
</list>
|
||||||
<option name="SHOW_DIALOG" value="false" />
|
<option name="SHOW_DIALOG" value="false" />
|
||||||
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
||||||
|
|||||||
@@ -191,6 +191,7 @@ table { border-collapse: collapse; }
|
|||||||
tr { border: none; }
|
tr { border: none; }
|
||||||
td {
|
td {
|
||||||
border: none;
|
border: none;
|
||||||
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
|
||||||
button{
|
button{
|
||||||
@@ -223,3 +224,12 @@ input:focus + .hint { display: inline; float:right;}
|
|||||||
textarea:focus + .hint { display: inline; float:right; }
|
textarea: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,7 +41,8 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td>Media type:</td>
|
<td>Media type:</td>
|
||||||
<td>
|
<td>
|
||||||
<label><select th:field="*{mediaType}">
|
<label>
|
||||||
|
<select id="media-type" th:field="*{mediaType}">
|
||||||
<option value="application/xml">application/xml</option>
|
<option value="application/xml">application/xml</option>
|
||||||
<option value="application/json">application/json</option>
|
<option value="application/json">application/json</option>
|
||||||
<option value="text/xml">text/xml</option>
|
<option value="text/xml">text/xml</option>
|
||||||
@@ -56,8 +57,9 @@
|
|||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td>Mocked response body:</td>
|
<td>Mocked response body:</td>
|
||||||
<td><label><textarea rows="4" cols="30" th:field="*{messageBody}"
|
<!-- rows="4" cols="30"-->
|
||||||
placeholder="Your message body"></textarea>
|
<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>
|
<span class="hint">The resource data that will be requested by the client.</span>
|
||||||
</label>
|
</label>
|
||||||
</td>
|
</td>
|
||||||
|
|||||||
Reference in New Issue
Block a user