X's replaced with ×
This commit is contained in:
		| @@ -34,6 +34,7 @@ | |||||||
|     </content> |     </content> | ||||||
|     <orderEntry type="inheritedJdk" /> |     <orderEntry type="inheritedJdk" /> | ||||||
|     <orderEntry type="sourceFolder" forTests="false" /> |     <orderEntry type="sourceFolder" forTests="false" /> | ||||||
|  |     <orderEntry type="library" name="Maven: org.codehaus.jettison:jettison:1.4.1" level="project" /> | ||||||
|     <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-web:2.3.1.RELEASE" level="project" /> |     <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-web:2.3.1.RELEASE" level="project" /> | ||||||
|     <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter:2.3.1.RELEASE" level="project" /> |     <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter:2.3.1.RELEASE" level="project" /> | ||||||
|     <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-logging:2.3.1.RELEASE" level="project" /> |     <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-logging:2.3.1.RELEASE" level="project" /> | ||||||
|   | |||||||
| @@ -202,6 +202,7 @@ label { | |||||||
|  |  | ||||||
| /*TODO add style to general stylesheet. Gray if inactive red if hover*/ | /*TODO add style to general stylesheet. Gray if inactive red if hover*/ | ||||||
| .btn-del-MenuItem { | .btn-del-MenuItem { | ||||||
|  |     margin-left: -20px; | ||||||
|     float: left; |     float: left; | ||||||
|     font-size: 24px; |     font-size: 24px; | ||||||
|     color: lightgray; |     color: lightgray; | ||||||
| @@ -244,6 +245,7 @@ label { | |||||||
|  |  | ||||||
| /*TODO add to general styles. Gray if inactive green if hover*/ | /*TODO add to general styles. Gray if inactive green if hover*/ | ||||||
| .btn-table-add { | .btn-table-add { | ||||||
|  |     font-weight: 700; | ||||||
|     color: lightgray; |     color: lightgray; | ||||||
|     cursor: pointer; |     cursor: pointer; | ||||||
| } | } | ||||||
|   | |||||||
| @@ -92,15 +92,22 @@ | |||||||
|                     <div id="history" style="display:none;"> |                     <div id="history" style="display:none;"> | ||||||
|                         <div id="historyDisplay"> |                         <div id="historyDisplay"> | ||||||
|                             <div> |                             <div> | ||||||
|                                 <div><input type="text" name="dateFrom" id="historyFrom" placeholder="rrrr-mm-dd"/></div> |                                 <div> | ||||||
|                                 <div><input type="text" name="dateTo" id="historyTo" placeholder="rrrr-mm-dd"/></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> | ||||||
|                             <div> |                             <div> | ||||||
|                                 <table id="historyTable"> |                                 <table id="historyTable"> | ||||||
|                                     <thead> |                                     <thead> | ||||||
|                                         <tr> |                                         <tr> | ||||||
|                                             <td></td> |                                             <td>Timestamp</td> | ||||||
|                                             <td></td> |                                             <td>Status</td> | ||||||
|                                         </tr> |                                         </tr> | ||||||
|                                     </thead> |                                     </thead> | ||||||
|                                     <tbody></tbody> |                                     <tbody></tbody> | ||||||
|   | |||||||
| @@ -260,7 +260,7 @@ function generateHeaderTable(headers){ | |||||||
|                     '<input type="text" name="headerKey" placeholder="key" class="tableField textField-key" value="' + keys[i] + '"/></td>' + |                     '<input type="text" name="headerKey" placeholder="key" class="tableField textField-key" value="' + keys[i] + '"/></td>' + | ||||||
|                 '<td>' + |                 '<td>' + | ||||||
|                     '<input type="text" name="headerValue" placeholder="value" class="tableField" value="' + values[i] + '"/></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>'; |             '</tr>'; | ||||||
|         htable_row++; |         htable_row++; | ||||||
|     } |     } | ||||||
| @@ -358,7 +358,7 @@ function generateMessageTileHtml(id, httpStatus, mediaType){ | |||||||
|     var innerHTML = '<div class="menuItem" id="item_' + id + '" onclick="callLoadMessage('+ id +')">' + |     var innerHTML = '<div class="menuItem" id="item_' + id + '" onclick="callLoadMessage('+ id +')">' + | ||||||
|         '<table><tr><td>Id: '+ id +'</td></tr>' + |         '<table><tr><td>Id: '+ id +'</td></tr>' + | ||||||
|         '<tr><td>Http-status: '+ httpStatus +'</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>'; |         '<div style="clear: both;"></div>'; | ||||||
|     return innerHTML; |     return innerHTML; | ||||||
| } | } | ||||||
|   | |||||||
| @@ -202,6 +202,7 @@ label { | |||||||
|  |  | ||||||
| /*TODO add style to general stylesheet. Gray if inactive red if hover*/ | /*TODO add style to general stylesheet. Gray if inactive red if hover*/ | ||||||
| .btn-del-MenuItem { | .btn-del-MenuItem { | ||||||
|  |     margin-left: -20px; | ||||||
|     float: left; |     float: left; | ||||||
|     font-size: 24px; |     font-size: 24px; | ||||||
|     color: lightgray; |     color: lightgray; | ||||||
| @@ -244,6 +245,7 @@ label { | |||||||
|  |  | ||||||
| /*TODO add to general styles. Gray if inactive green if hover*/ | /*TODO add to general styles. Gray if inactive green if hover*/ | ||||||
| .btn-table-add { | .btn-table-add { | ||||||
|  |     font-weight: 700; | ||||||
|     color: lightgray; |     color: lightgray; | ||||||
|     cursor: pointer; |     cursor: pointer; | ||||||
| } | } | ||||||
|   | |||||||
| @@ -92,15 +92,22 @@ | |||||||
|                     <div id="history" style="display:none;"> |                     <div id="history" style="display:none;"> | ||||||
|                         <div id="historyDisplay"> |                         <div id="historyDisplay"> | ||||||
|                             <div> |                             <div> | ||||||
|                                 <div><input type="text" name="dateFrom" id="historyFrom" placeholder="rrrr-mm-dd"/></div> |                                 <div> | ||||||
|                                 <div><input type="text" name="dateTo" id="historyTo" placeholder="rrrr-mm-dd"/></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> | ||||||
|                             <div> |                             <div> | ||||||
|                                 <table id="historyTable"> |                                 <table id="historyTable"> | ||||||
|                                     <thead> |                                     <thead> | ||||||
|                                         <tr> |                                         <tr> | ||||||
|                                             <td></td> |                                             <td>Timestamp</td> | ||||||
|                                             <td></td> |                                             <td>Status</td> | ||||||
|                                         </tr> |                                         </tr> | ||||||
|                                     </thead> |                                     </thead> | ||||||
|                                     <tbody></tbody> |                                     <tbody></tbody> | ||||||
|   | |||||||
| @@ -260,7 +260,7 @@ function generateHeaderTable(headers){ | |||||||
|                     '<input type="text" name="headerKey" placeholder="key" class="tableField textField-key" value="' + keys[i] + '"/></td>' + |                     '<input type="text" name="headerKey" placeholder="key" class="tableField textField-key" value="' + keys[i] + '"/></td>' + | ||||||
|                 '<td>' + |                 '<td>' + | ||||||
|                     '<input type="text" name="headerValue" placeholder="value" class="tableField" value="' + values[i] + '"/></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>'; |             '</tr>'; | ||||||
|         htable_row++; |         htable_row++; | ||||||
|     } |     } | ||||||
| @@ -358,7 +358,7 @@ function generateMessageTileHtml(id, httpStatus, mediaType){ | |||||||
|     var innerHTML = '<div class="menuItem" id="item_' + id + '" onclick="callLoadMessage('+ id +')">' + |     var innerHTML = '<div class="menuItem" id="item_' + id + '" onclick="callLoadMessage('+ id +')">' + | ||||||
|         '<table><tr><td>Id: '+ id +'</td></tr>' + |         '<table><tr><td>Id: '+ id +'</td></tr>' + | ||||||
|         '<tr><td>Http-status: '+ httpStatus +'</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>'; |         '<div style="clear: both;"></div>'; | ||||||
|     return innerHTML; |     return innerHTML; | ||||||
| } | } | ||||||
|   | |||||||
| @@ -10,7 +10,7 @@ import org.springframework.stereotype.Component; | |||||||
|  |  | ||||||
| @Generated( | @Generated( | ||||||
|     value = "org.mapstruct.ap.MappingProcessor", |     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)" |     comments = "version: 1.3.1.Final, compiler: javac, environment: Java 14.0.1 (Oracle Corporation)" | ||||||
| ) | ) | ||||||
| @Component | @Component | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user