aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--RightPanel.qml3
-rw-r--r--components/SearchInput.qml15
-rw-r--r--main.qml4
3 files changed, 18 insertions, 4 deletions
diff --git a/RightPanel.qml b/RightPanel.qml
index 618e92e4..ec6fdb85 100644
--- a/RightPanel.qml
+++ b/RightPanel.qml
@@ -6,6 +6,7 @@ import "components"
Rectangle {
width: 330
+ color: "#FFFFFF"
TabView {
id: tabView
@@ -87,7 +88,7 @@ Rectangle {
Rectangle { height: 8; width: parent.width / 5; color: "#6B0072" }
Rectangle { height: 8; width: parent.width / 5; color: "#FF6C3C" }
Rectangle { height: 8; width: parent.width / 5; color: "#FFD781" }
- Rectangle { height: 8; width: parent.width / 5; color: "#FF4F41" }
+ Rectangle { height: 8; width: parent.width / 5 - 30; color: "#FF4F41" }
}
Rectangle {
diff --git a/components/SearchInput.qml b/components/SearchInput.qml
index cf7de2fa..2844bd21 100644
--- a/components/SearchInput.qml
+++ b/components/SearchInput.qml
@@ -100,7 +100,7 @@ Item {
onClicked: {
if(droplist.height === 0) {
appWindow.currentItem = dropdown
- droplist.height = dropcolumn.height
+ droplist.height = dropcolumn.height + 2
} else {
droplist.height = 0
}
@@ -117,8 +117,20 @@ Item {
clip: true
x: dropdown.x
y: dropdown.height
+ border.width: 1
+ border.color: "#DBDBDB"
color: "#FFFFFF"
+ Rectangle {
+ anchors.left: parent.left
+ anchors.right: parent.right
+ anchors.top: parent.top
+ anchors.leftMargin: 1
+ anchors.rightMargin: 1
+ height: 1
+ color: "#FFFFFF"
+ }
+
Behavior on height {
NumberAnimation { duration: 100; easing.type: Easing.InQuad }
}
@@ -135,6 +147,7 @@ Item {
anchors.left: parent.left
anchors.right: parent.right
anchors.top: parent.top
+ anchors.margins: 1
Repeater {
model: dropdownModel
diff --git a/main.qml b/main.qml
index 34f7a3d5..bedcea4d 100644
--- a/main.qml
+++ b/main.qml
@@ -267,8 +267,8 @@ ApplicationWindow {
hoverEnabled: true
anchors.right: parent.right
anchors.bottom: parent.bottom
- height: 48
- width: 48
+ height: 30
+ width: 30
Rectangle {
anchors.fill: parent