From c9c414d5a8aeffc29ae7efc3e86cdd02d0c03acb Mon Sep 17 00:00:00 2001 From: David Rowe Date: Tue, 5 Apr 2016 13:44:17 +1200 Subject: [PATCH] Fix entities editor display of large negative coordinates and angles --- examples/html/edit-style.css | 6 +++--- interface/resources/qml/ToolWindow.qml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/html/edit-style.css b/examples/html/edit-style.css index 02a3ba3cab..27a2cbe5e1 100644 --- a/examples/html/edit-style.css +++ b/examples/html/edit-style.css @@ -231,11 +231,11 @@ input[type="text"] { input[type="number"] { position: relative; height: 28px; - width: 120px; + width: 124px; } input[type=number] { - padding-right: 6px; + padding-right: 3px; } input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; @@ -657,7 +657,7 @@ div.refresh input[type="button"] { padding-left: 25px; } .pyr .tuple input { - padding-left: 45px; + padding-left: 40px; } .tuple div > label:first-child { diff --git a/interface/resources/qml/ToolWindow.qml b/interface/resources/qml/ToolWindow.qml index b6d70cb245..ddd314d9ff 100644 --- a/interface/resources/qml/ToolWindow.qml +++ b/interface/resources/qml/ToolWindow.qml @@ -30,7 +30,7 @@ Window { title: "Edit" property alias tabView: tabView implicitWidth: 520; implicitHeight: 695 - minSize: Qt.vector2d(400, 500) + minSize: Qt.vector2d(412, 500) HifiConstants { id: hifi }