OSDN Git Service

QmlDesigner.ItemLibrary: adjust style to property editor's look
authorJörg Schummer <ext-jorg.2.schummer@nokia.com>
Fri, 30 Apr 2010 09:28:08 +0000 (12:28 +0300)
committerLasse Holmstedt <lasse.holmstedt@nokia.com>
Fri, 30 Apr 2010 10:10:05 +0000 (12:10 +0200)
Task-number: BAUHAUS-654

src/plugins/qmldesigner/components/itemlibrary/qml/ItemsViewStyle.qml
src/plugins/qmldesigner/components/itemlibrary/qml/SectionView.qml

index 6a65f70..13242e3 100644 (file)
@@ -47,11 +47,11 @@ Item {
     property string gridLineLighter: "#5f5f5f"
     property string gridLineDarker: "#3f3f3f"
 
-    property string sectionArrowColor: "#aeaeae"
-    property string sectionTitleTextColor: "#f0f0f0"
-    property string sectionTitleBackgroundColor: "#909090"
+    property string sectionArrowColor: "#ffffff"
+    property string sectionTitleTextColor: "#ffffff"
+    property string sectionTitleBackgroundColor: "#656565"
 
-    property int sectionTitleHeight: 20
+    property int sectionTitleHeight: 18
     property int sectionTitleSpacing: 2
 
     property int iconWidth: 32
index 2f6fbcd..8cc031d 100644 (file)
@@ -111,17 +111,18 @@ Column {
         Item {
             id: arrow
 
-            Rectangle { y: 0; x: 0; height: 1; width: 9; color: style.sectionArrowColor }
-            Rectangle { y: 1; x: 1; height: 1; width: 7; color: style.sectionArrowColor }
-            Rectangle { y: 2; x: 2; height: 1; width: 5; color: style.sectionArrowColor }
-            Rectangle { y: 3; x: 3; height: 1; width: 3; color: style.sectionArrowColor }
-            Rectangle { y: 4; x: 4; height: 1; width: 1; color: style.sectionArrowColor }
+            Rectangle { y: 0; x: 0; height: 1; width: 11; color: style.sectionArrowColor }
+            Rectangle { y: 1; x: 1; height: 1; width: 9;  color: style.sectionArrowColor }
+            Rectangle { y: 2; x: 2; height: 1; width: 7;  color: style.sectionArrowColor }
+            Rectangle { y: 3; x: 3; height: 1; width: 5;  color: style.sectionArrowColor }
+            Rectangle { y: 4; x: 4; height: 1; width: 3;  color: style.sectionArrowColor }
+            Rectangle { y: 5; x: 5; height: 1; width: 1;  color: style.sectionArrowColor }
 
             anchors.left: parent.left
-            anchors.leftMargin: 5
+            anchors.leftMargin: 10
             anchors.verticalCenter: parent.verticalCenter
-            width: 9
-            height: 5
+            width: 11
+            height: 6
 
             transformOrigin: Item.Center
         }
@@ -130,11 +131,12 @@ Column {
 
             anchors.verticalCenter: parent.verticalCenter
             anchors.left: arrow.right
-            anchors.leftMargin: 5
+            anchors.leftMargin: 12
 
             text: sectionName  // to be set by model
             color: style.sectionTitleTextColor
             elide: Text.ElideMiddle
+            font.bold: true
         }
         MouseArea {
             anchors.fill: parent