X's replaced with ×
This commit is contained in:
@@ -202,6 +202,7 @@ label {
|
||||
|
||||
/*TODO add style to general stylesheet. Gray if inactive red if hover*/
|
||||
.btn-del-MenuItem {
|
||||
margin-left: -20px;
|
||||
float: left;
|
||||
font-size: 24px;
|
||||
color: lightgray;
|
||||
@@ -244,6 +245,7 @@ label {
|
||||
|
||||
/*TODO add to general styles. Gray if inactive green if hover*/
|
||||
.btn-table-add {
|
||||
font-weight: 700;
|
||||
color: lightgray;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
@@ -92,15 +92,22 @@
|
||||
<div id="history" style="display:none;">
|
||||
<div id="historyDisplay">
|
||||
<div>
|
||||
<div><input type="text" name="dateFrom" id="historyFrom" placeholder="rrrr-mm-dd"/></div>
|
||||
<div><input type="text" name="dateTo" id="historyTo" placeholder="rrrr-mm-dd"/></div>
|
||||
<div>
|
||||
<label for="historyFrom">From</label>
|
||||
<input type="datetime" name="dateFrom" id="historyFrom"/>
|
||||
</div>
|
||||
<div>
|
||||
<label for="historyTo">To</label>
|
||||
<input type="datetime" name="dateTo" id="historyTo"/>
|
||||
</div>
|
||||
<button>Search</button>
|
||||
</div>
|
||||
<div>
|
||||
<table id="historyTable">
|
||||
<thead>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td>Timestamp</td>
|
||||
<td>Status</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody></tbody>
|
||||
|
||||
@@ -260,7 +260,7 @@ function generateHeaderTable(headers){
|
||||
'<input type="text" name="headerKey" placeholder="key" class="tableField textField-key" value="' + keys[i] + '"/></td>' +
|
||||
'<td>' +
|
||||
'<input type="text" name="headerValue" placeholder="value" class="tableField" value="' + values[i] + '"/></td>' +
|
||||
'<td class="btn-function-table btn-table-remove" onclick="removeRow(' + htable_row + ')">X</td>' +
|
||||
'<td class="btn-function-table btn-table-remove" onclick="removeRow(' + htable_row + ')">×</td>' +
|
||||
'</tr>';
|
||||
htable_row++;
|
||||
}
|
||||
@@ -358,7 +358,7 @@ function generateMessageTileHtml(id, httpStatus, mediaType){
|
||||
var innerHTML = '<div class="menuItem" id="item_' + id + '" onclick="callLoadMessage('+ id +')">' +
|
||||
'<table><tr><td>Id: '+ id +'</td></tr>' +
|
||||
'<tr><td>Http-status: '+ httpStatus +'</td></tr>' +
|
||||
'</table></div><div class="btn-del-MenuItem" onclick="callRemoveMessage(' + id + ')">X</div>' +
|
||||
'</table></div><div class="btn-del-MenuItem" onclick="callRemoveMessage(' + id + ')">×</div>' +
|
||||
'<div style="clear: both;"></div>';
|
||||
return innerHTML;
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@ import org.springframework.stereotype.Component;
|
||||
|
||||
@Generated(
|
||||
value = "org.mapstruct.ap.MappingProcessor",
|
||||
date = "2021-03-04T12:41:49+0100",
|
||||
date = "2021-03-05T13:19:11+0100",
|
||||
comments = "version: 1.3.1.Final, compiler: javac, environment: Java 14.0.1 (Oracle Corporation)"
|
||||
)
|
||||
@Component
|
||||
|
||||
Reference in New Issue
Block a user