diff --git a/css/app.css b/css/app.css
index 1783988d7..0799ca93c 100644
--- a/css/app.css
+++ b/css/app.css
@@ -670,6 +670,10 @@ div.combobox {
border-top: 0;
}
+.combobox-input {
+ cursor: pointer;
+}
+
.combobox-carat {
margin-left: -15px;
margin-right: 5px;
@@ -729,6 +733,12 @@ div.combobox {
opacity: 1;
}
+.preset-radio button {
+ font-weight: normal;
+ padding: 2px 10px;
+ height: 30px;
+}
+
/* Address input */
.preset-input .addr-housename {
diff --git a/index_dev.html b/index_dev.html
index c16b6a655..5f53aa1ca 100644
--- a/index_dev.html
+++ b/index_dev.html
@@ -97,9 +97,11 @@
-
+
+
+
diff --git a/js/lib/d3.combobox.js b/js/lib/d3.combobox.js
index eaefaf2fc..d323df186 100644
--- a/js/lib/d3.combobox.js
+++ b/js/lib/d3.combobox.js
@@ -13,7 +13,7 @@ d3.combobox = function() {
var typeahead = function(selection) {
var idx = -1;
- input = selection.select('input');
+ input = selection.select('input').classed('combobox-input', true);
selection.append('a', selection.select('input'))
.attr('class', 'combobox-carat')