diff --git a/examples/html/edit-style.css b/examples/html/edit-style.css
index c58427ba2c..9dd4d9141c 100644
--- a/examples/html/edit-style.css
+++ b/examples/html/edit-style.css
@@ -180,11 +180,6 @@ textarea {
resize: vertical;
}
-input {
- height: 28px;
- min-width: 120px;
-}
-
input::-webkit-input-placeholder {
font-style: italic;
}
@@ -215,6 +210,11 @@ input:disabled, textarea:disabled {
color: rgb(160, 160, 160);
}
+input[type="text"], input[type="number"] {
+ height: 28px;
+ min-width: 120px;
+}
+
input[type="number"] {
position: relative;
}
diff --git a/interface/resources/qml/ToolWindow.qml b/interface/resources/qml/ToolWindow.qml
index 939285546d..c06b17c434 100644
--- a/interface/resources/qml/ToolWindow.qml
+++ b/interface/resources/qml/ToolWindow.qml
@@ -30,6 +30,7 @@ Window {
title: "Tools"
property string newTabSource
property alias tabView: tabView
+ minSize: Qt.vector2d(400, 500)
HifiConstants { id: hifi }