Skip to content
Snippets Groups Projects
Commit d87dcfe0 authored by didierfred's avatar didierfred
Browse files

Small UI modification

parent c966ac4f
No related branches found
No related tags found
No related merge requests found
...@@ -24,13 +24,17 @@ ...@@ -24,13 +24,17 @@
.input_field{ .input_field{
font-size: 14px; font-size: 14px;
height: 15px; height: 20px;
border-style: solid;
border-radius: 5px;
border-width: 1px;
border-color: #AAAAAA;
background-color: white;
} }
.select_field{ .select_field{
font-size: 14px; font-size: 14px;
height: 25px; height: 24px;
padding: 0px 0px 0px;
border-style: solid; border-style: solid;
border-radius: 5px; border-radius: 5px;
border-width: 1px; border-width: 1px;
......
...@@ -38,7 +38,7 @@ var html = "<td><select class=\"select_field\" id=\"select_action" + line_number ...@@ -38,7 +38,7 @@ var html = "<td><select class=\"select_field\" id=\"select_action" + line_number
html = html + "<td><input class=\"input_field\" size=\"15\" id=\"header_name"+ line_number + "\"></input></td>"; html = html + "<td><input class=\"input_field\" size=\"15\" id=\"header_name"+ line_number + "\"></input></td>";
html = html + "<td><input class=\"input_field\" size=\"20\" id=\"header_value"+ line_number + "\"></input></td>"; html = html + "<td><input class=\"input_field\" size=\"20\" id=\"header_value"+ line_number + "\"></input></td>";
html = html + "<td><input class=\"input_field\" size=\"20\" id=\"comment"+ line_number + "\"></input></td>"; html = html + "<td><input class=\"input_field\" size=\"20\" id=\"comment"+ line_number + "\"></input></td>";
html = html + "<td><select class=\"select_field\" id=\"apply_on" + line_number + "\"><option value=\"req\"> Request </option><option value=\"res\">Response</option></select></td>"; html = html + "<td><select class=\"select_field\" id=\"apply_on" + line_number + "\"><option value=\"req\"> request </option><option value=\"res\">response</option></select></td>";
html = html + "<td><select class=\"select_field\" id=\"select_status" + line_number + "\"><option value=\"on\"> on </option><option value=\"off\">off</option></select></td>"; html = html + "<td><select class=\"select_field\" id=\"select_status" + line_number + "\"><option value=\"on\"> on </option><option value=\"off\">off</option></select></td>";
html = html + "<td><input class=\"button\" type=\"button\" value=\"Delete\" id=\"delete_button" + line_number + "\"></input> </td>"; html = html + "<td><input class=\"button\" type=\"button\" value=\"Delete\" id=\"delete_button" + line_number + "\"></input> </td>";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment