aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmldesigner/components/resources
diff options
context:
space:
mode:
authorLasse Holmstedt <lasse.holmstedt@nokia.com>2010-04-22 15:44:42 +0200
committerLasse Holmstedt <lasse.holmstedt@nokia.com>2010-04-23 09:58:29 +0200
commit4d0ac7c77eef297d68864738bd029ad544abb45b (patch)
treed2dc75732af04fb1746be6f435d10183ea55f00f /src/plugins/qmldesigner/components/resources
parent26af3a8fae6399c54332768b00dcf434b439f0c7 (diff)
qml inspector now shows correct categories for custom properties
Also, a class name is added in qmjs::bind so that we have a class name for custom properties defined inside a component.
Diffstat (limited to 'src/plugins/qmldesigner/components/resources')
-rw-r--r--src/plugins/qmldesigner/components/resources/outputpane-style.css149
1 files changed, 149 insertions, 0 deletions
diff --git a/src/plugins/qmldesigner/components/resources/outputpane-style.css b/src/plugins/qmldesigner/components/resources/outputpane-style.css
new file mode 100644
index 00000000000..c8a4b256a47
--- /dev/null
+++ b/src/plugins/qmldesigner/components/resources/outputpane-style.css
@@ -0,0 +1,149 @@
+QFrame {
+ border: 2px;
+ background-color: #4f4f4f;
+}
+
+QLabel {
+ border: none;
+ border-image: none;
+ padding: 0;
+ background: none;
+ color: #E1E1E1;
+}
+
+QScrollArea {
+ border: 0px;
+ background-color: #4f4f4f;
+}
+
+QStackedWidget {
+ border: 0px;
+ background-color: #4f4f4f;
+}
+
+
+QGraphicsView {
+ border: 0px;
+ background-color: #4f4f4f;
+}
+
+QTabWidget {
+ border: 0px;
+ background-color: #4f4f4f;
+}
+
+QTabWidget::pane { /* The tab widget frame */
+ border: 0px;
+ background-color: #4f4f4f;
+}
+
+QLineEdit
+{
+ border: 2px solid #8F8F8F;
+ border-radius: 4px;
+ padding: 0 8px;
+ background-color: white;
+ selection-background-color: darkgray;
+}
+
+QLineEdit#itemLibrarySearchInput {
+ color: black;
+ border: 2px solid #0F0F0F;
+ border-radius: 6px;
+ border-width: 1;
+ max-height: 20px;
+ min-height: 20px;
+ background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
+ stop: 0 #e0e0e0, stop: 1 #f0f0f0);
+}
+
+
+ QTreeView {
+ color: white;
+ selection-color: white
+ }
+
+ QTreeView::item:selected {
+ color: white;
+ }
+
+QTreeView::branch:has-siblings:!adjoins-item {
+ border-image: none;
+ image:none;
+ }
+
+ QTreeView::branch:has-siblings:adjoins-item {
+ border-image: none;
+ image:none;
+ }
+
+ QTreeView::branch:!has-children:!has-siblings:adjoins-item {
+ border-image: none;
+ image:none;
+ }
+
+ QTreeView::branch:has-children:!has-siblings:closed,
+ QTreeView::branch:closed:has-children:has-siblings {
+ border-image: none;
+ image: url(:/qmldesigner/images/triangle_horz.png);
+ }
+
+ QTreeView::branch:open:has-children:!has-siblings,
+ QTreeView::branch:open:has-children:has-siblings {
+ border-image: none;
+ image: url(:/qmldesigner/images/triangle_vert.png);
+ }
+
+ QListView {
+ color: white;
+ selection-color: white
+ }
+
+ QListView::item:selected {
+ color: white;
+ }
+
+ QComboBox QAbstractItemView {
+ show-decoration-selected: 1; /* make the selection span the entire width of the view */
+ background-color: #494949; /* sets background of the menu */
+ border: 1px solid black;
+ margin: 0px; /* some spacing around the menu */
+ color: #cacaca;
+ selection-background-color: #d2d2d2;
+ selection-color: #404040;
+ }
+
+QTabBar::tab {
+ border-image: none;
+
+ width: 80px;
+
+ height: 22px;
+ margin-top: 0x;
+ margin-bottom: 0px;
+ margin-left: 0px;
+ margin-right: 0px;
+ font: bold;
+ font-size: 11px;
+ background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
+ stop: 0 #3c3c3c, stop: 1 #444444);
+
+ color: #EEEEEE;
+}
+
+QTabBar::tab:hover {
+ background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
+ stop: 0 #3c3c3c, stop: 1 #666666);
+}
+
+QTabBar::tab:selected {
+ border: none; /* no border for a flat push button */
+ background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
+ stop: 0 #EFEFEF, stop: 1 #EEEEEE);
+ color: #3c3c3c;
+}
+
+QWidget#itemLibrarySearchInputFrame {
+ background-color: #eeeeee;
+}
+