From d87dcfe0b3cd28a695c400330dc7d9b8a204032e Mon Sep 17 00:00:00 2001
From: didierfred <didierfred@gmail.com>
Date: Sun, 11 Mar 2018 17:36:24 +0100
Subject: [PATCH] Small UI modification

---
 popup/config.html | 10 +++++++---
 popup/config.js   |  2 +-
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/popup/config.html b/popup/config.html
index 292342f..492d5ff 100644
--- a/popup/config.html
+++ b/popup/config.html
@@ -24,13 +24,17 @@
 
 .input_field{
 	font-size: 14px;
-	height: 15px;
+	height: 20px;
+	border-style: solid;
+	border-radius: 5px;	
+	border-width: 1px; 
+	border-color: #AAAAAA;
+	background-color: white;
 }
 
 .select_field{
 	font-size: 14px;
-	height: 25px;
-	padding: 0px 0px 0px;
+	height: 24px;
 	border-style: solid;
 	border-radius: 5px;	
 	border-width: 1px; 
diff --git a/popup/config.js b/popup/config.js
index 0f3bf67..4223c03 100644
--- a/popup/config.js
+++ b/popup/config.js
@@ -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=\"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><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><input class=\"button\" type=\"button\" value=\"Delete\" id=\"delete_button" + line_number + "\"></input> </td>";
 
-- 
GitLab