From 18c7ff6474f051857cebb3a122f59a2eed76a549 Mon Sep 17 00:00:00 2001 From: didierfred <didierfred@gmail.com> Date: Wed, 2 May 2018 14:36:12 +0200 Subject: [PATCH] adjust field size --- popup/config.html | 5 +++++ popup/config.js | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/popup/config.html b/popup/config.html index da4370b..fe05c2a 100644 --- a/popup/config.html +++ b/popup/config.html @@ -13,6 +13,11 @@ .title{ color: #008CBA; } + +.select_field{ + font-size: 14px; + height: 26px; +} </style> </head> diff --git a/popup/config.js b/popup/config.js index de8cdb8..7d86029 100644 --- a/popup/config.js +++ b/popup/config.js @@ -34,12 +34,12 @@ window.onload = function() { **/ function appendLine(action,header_name,header_value,comment,apply_on,status) { -var html = "<td><select class=\"form_control\" id=\"select_action" + line_number + "\" disable=false><option value=\"add\">Add</option><option value=\"modify\">Modify</option><option value=\"delete\">Delete</option></select></td>"; +var html = "<td><select class=\"form_control select_field\" id=\"select_action" + line_number + "\" disable=false><option value=\"add\">Add</option><option value=\"modify\">Modify</option><option value=\"delete\">Delete</option></select></td>"; html = html + "<td><input class=\"form_control\" id=\"header_name"+ line_number + "\"></input></td>"; html = html + "<td><input class=\"form_control\" size=\"28\" id=\"header_value"+ line_number + "\"></input></td>"; html = html + "<td><input class=\"form_control\" size=\"28\" id=\"comment"+ line_number + "\"></input></td>"; -html = html + "<td><select class=\"form_control\" id=\"apply_on" + line_number + "\"><option value=\"req\"> Request </option><option value=\"res\">Response</option></select></td>"; -html = html + "<td><select class=\"form_control\" id=\"select_status" + line_number + "\"><option value=\"on\"> ON </option><option value=\"off\">OFF</option></select></td>"; +html = html + "<td><select class=\"form_control select_field\" id=\"apply_on" + line_number + "\"><option value=\"req\"> Request </option><option value=\"res\">Response</option></select></td>"; +html = html + "<td><select class=\"form_control select_field\" id=\"select_status" + line_number + "\"><option value=\"on\"> ON </option><option value=\"off\">OFF</option></select></td>"; html = html + "<td> <a href=\"#\" title=\"Move line up\" id=\"up_button" + line_number + "\" class=\"btn btn-default btn-sm\"> <span class=\"glyphicon glyphicon-arrow-up\"></span></a></td>"; html = html + "<td> <a href=\"#\" title=\"Move line down\" id=\"down_button" + line_number + "\" class=\"btn btn-default btn-sm\"> <span class=\"glyphicon glyphicon-arrow-down\"></span></a></td>"; html = html + "<td> <a href=\"#\" title=\"Delete line\" id=\"delete_button" + line_number + "\" class=\"btn btn-primary btn-sm\"> <span class=\"glyphicon glyphicon-trash\"></span></a></td>"; -- GitLab